
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>
11 lines
224 B
Bash
Executable File
11 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" "$@"
|