From: Eric Engestrom Date: Wed, 3 May 2023 16:52:57 +0000 (+0100) Subject: bin/ci/ci_run_n_monitor: use venv wrapper X-Git-Tag: upstream/23.3.3~4664 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6e4843bb04a6a582f0d450fff3ccf42251e7e718;p=platform%2Fupstream%2Fmesa.git bin/ci/ci_run_n_monitor: use venv wrapper Signed-off-by: Eric Engestrom Part-of: --- diff --git a/bin/ci/ci_run_n_monitor.sh b/bin/ci/ci_run_n_monitor.sh new file mode 100755 index 0000000..ba6a7e3 --- /dev/null +++ b/bin/ci/ci_run_n_monitor.sh @@ -0,0 +1,10 @@ +#!/usr/bin/env bash +set -eu + +this_dir=$(dirname -- "$(readlink -f -- "${BASH_SOURCE[0]}")") +readonly this_dir + +exec \ + "$this_dir/../python-venv.sh" \ + "$this_dir/requirements.txt" \ + "$this_dir/ci_run_n_monitor.py" "$@"