]> git.ipfire.org Git - thirdparty/bind9.git/commit
fix: ci: Don't forward parent yaml variables to stress child pipelines
authorMichal Nowak <mnowak@isc.org>
Wed, 13 May 2026 16:41:42 +0000 (18:41 +0200)
committerMichal Nowak <mnowak@isc.org>
Wed, 13 May 2026 16:41:42 +0000 (18:41 +0200)
commitd8e196a76a9407d002d4f066fa861f0448e98638
tree7835f8e31a746cb5d352cb0fe33b86d7d20657a1
parentd9e1308363bf2bf018b8197628126282f7c2929d
parent73915b73d194c371200ea20d129e3412cf2faa6a
fix: ci: Don't forward parent yaml variables to stress child pipelines

The global RUNNER_SCRIPT_TIMEOUT: 55m in the parent pipeline was being
forwarded to the stress and tsan:stress child pipelines, where forwarded
yaml variables outrank job-level variables. That caused stress jobs with
BIND_STRESS_TESTS_RUN_TIME >= 60 to be killed at 55 minutes, regardless
of the per-job RUNNER_SCRIPT_TIMEOUT set in the generated child config.

Set forward:yaml_variables: false on both trigger jobs; the generated
configs already declare every variable they need.

Assisted-by: Claude:claude-opus-4-7
Merge branch 'mnowak/fix-stress-test-script-timeout' into 'main'

See merge request isc-projects/bind9!12012