
ci_gantt_chart.py generates a gantt chart from a given pipeline url Signed-off-by: Helen Koike <helen.koike@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/25793>
11 lines
222 B
Bash
Executable File
11 lines
222 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/ci_gantt_chart.py" "$@"
|