
Show currently assigned jobs to Marge and return 0 when it's free. Useful for combination with ci_run_n_monitor.py . Signed-off-by: David Heidelberg <david.heidelberg@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/20347>
11 lines
219 B
Bash
Executable File
11 lines
219 B
Bash
Executable File
#!/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/marge_queue.py" "$@"
|