mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2024-11-23 18:24:13 +08:00
bf461d856f
Generate Gantt chart and post an in thread reply to Marge's messages with it in html format. html format is used for being interactive. Signed-off-by: Helen Koike <helen.koike@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/26796>
11 lines
221 B
Bash
Executable File
11 lines
221 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_post_gantt.py" "$@"
|