[Git][ghc/ghc][wip/sjakobi/T16720] ci: Preserve testsuite arguments when forcing colors
Simon Jakobi pushed to branch wip/sjakobi/T16720 at Glasgow Haskell Compiler / GHC Commits: d3883ecb by Simon Jakobi at 2026-07-18T02:17:03+02:00 ci: Preserve testsuite arguments when forcing colors Keep RUNTEST_ARGS consistently scalar so that adding CI colors does not hide the performance-failure policy argument. Assisted-by: gpt-5 via Codex CLI - - - - - 1 changed file: - .gitlab/ci.sh Changes: ===================================== .gitlab/ci.sh ===================================== @@ -1062,7 +1062,7 @@ if [ "${CI_COMMIT_BRANCH:-}" == "master" ] && [ "${CI_PROJECT_PATH:-}" == "ghc/ fi fi if [ -n "${IGNORE_PERF_FAILURES:-}" ]; then - RUNTEST_ARGS=( "${RUNTEST_ARGS[@]:-}" "--ignore-perf-failures=$IGNORE_PERF_FAILURES" ) + RUNTEST_ARGS="${RUNTEST_ARGS:-} --ignore-perf-failures=$IGNORE_PERF_FAILURES" fi if [[ -z ${BIGNUM_BACKEND:-} ]]; then BIGNUM_BACKEND=gmp; fi View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/d3883ecb858b1d73322688307fb01cc7... -- View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/d3883ecb858b1d73322688307fb01cc7... You're receiving this email because of your account on gitlab.haskell.org. Manage all notifications: https://gitlab.haskell.org/-/profile/notifications | Help: https://gitlab.haskell.org/help
participants (1)
-
Simon Jakobi (@sjakobi2)