Skip to content
Snippets Groups Projects
Commit 2907949c authored by Moritz Angermann's avatar Moritz Angermann
Browse files

[ci] Default values for GITLAB_CI_BRANCH, and IGNORE_PERF_FAILURES

parent 069abe27
No related branches found
No related tags found
No related merge requests found
......@@ -571,12 +571,12 @@ fi
# Ignore performance improvements in @marge-bot batches.
# See #19562.
if [ "$GITLAB_CI_BRANCH" == "wip/marge_bot_batch_merge_job" ]; then
if [ -z "$IGNORE_PERF_FAILURES" ]; then
if [ "${GITLAB_CI_BRANCH:-}" == "wip/marge_bot_batch_merge_job" ]; then
if [ -z "${IGNORE_PERF_FAILURES:-}" ]; then
IGNORE_PERF_FAILURES="decreases"
fi
fi
if [ -n "$IGNORE_PERF_FAILURES" ]; then
if [ -n "${IGNORE_PERF_FAILURES:-}" ]; then
RUNTEST_ARGS="--ignore-perf-failures=$IGNORE_PERF_FAILURES"
fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment