mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-20 20:20:18 +01:00
pipeline_summary.py generates a markdown summary of the reasons why a gitlab pipeline failed. Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/32151>
10 lines
224 B
Bash
Executable file
10 lines
224 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/pipeline_message.py" "$@"
|