From 45088161971df1aace0527b32b7d3a6bd0e2d74e Mon Sep 17 00:00:00 2001 From: Joep van Delft Date: Thu, 28 Nov 2024 17:59:45 +0100 Subject: [PATCH] Start RHCOS arch jobs earlier --- pyartcd/pyartcd/pipelines/build_rhcos.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyartcd/pyartcd/pipelines/build_rhcos.py b/pyartcd/pyartcd/pipelines/build_rhcos.py index 11d0ae146..13f1a884a 100644 --- a/pyartcd/pyartcd/pipelines/build_rhcos.py +++ b/pyartcd/pyartcd/pipelines/build_rhcos.py @@ -159,7 +159,7 @@ def stream(self): def start_build(self): """Start a new build for the given version""" # determine parameters - params = dict(STREAM=self.stream, EARLY_ARCH_JOBS="false") + params = dict(STREAM=self.stream, EARLY_ARCH_JOBS="true") if self.new_build: params["FORCE"] = "true" job_url = f"{JENKINS_BASE_URL}/job/build/buildWithParameters"