From 06f0728479a0acdf4247d3fbd94515ce09af585f Mon Sep 17 00:00:00 2001 From: Ryan Richard Date: Tue, 23 Dec 2025 14:18:35 -0800 Subject: [PATCH] move manually triggered jobs earlier in main pipeline So we can manually trigger them to run in parallel with other jobs, so we don't have to wait for those other jobs to pass because they can be flaky sometimes. --- pipelines/main/pipeline.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/pipelines/main/pipeline.yml b/pipelines/main/pipeline.yml index 35aacd4d5..aa385ecd2 100644 --- a/pipelines/main/pipeline.yml +++ b/pipelines/main/pipeline.yml @@ -34,6 +34,7 @@ groups: - ready-to-release - name: int-k8s-versions jobs: + - ready-for-int # this job is auto-triggered, but show it again here to make it easy to see in the UI which versions are ready to go - run-int-k8s-versions - integration-test-1.22 - integration-test-1.23 @@ -50,6 +51,7 @@ groups: - integration-test-1.34 - name: int-misc jobs: + - ready-for-int # this job is auto-triggered, but show it again here to make it easy to see in the UI which versions are ready to go - run-int-misc - integration-test-latest-arm64 - integration-test-idps-firewalled @@ -63,6 +65,7 @@ groups: - uninstall-existing-ns-test - name: int-cloud-providers jobs: + - ready-for-int # this job is auto-triggered, but show it again here to make it easy to see in the UI which versions are ready to go - run-int-cloud-providers - integration-test-gke-rapid - integration-test-gke-stable @@ -885,7 +888,7 @@ jobs: - get: pinniped version: every passed: - - ready-for-acceptance + - ready-for-int # Repeat these from ready-for-int because we want to refer to them also in the "passed" # constraints for the other resources below, so we can be sure that the pinniped resource # version has passed these jobs *together* with the other resource versions below. @@ -918,7 +921,7 @@ jobs: - get: pinniped version: every passed: - - ready-for-acceptance + - ready-for-int # Repeat these from ready-for-int because we want to refer to them also in the "passed" # constraints for the other resources below, so we can be sure that the pinniped resource # version has passed these jobs *together* with the other resource versions below. @@ -951,7 +954,7 @@ jobs: - get: pinniped version: every passed: - - ready-for-acceptance + - ready-for-int # Repeat these from ready-for-int because we want to refer to them also in the "passed" # constraints for the other resources below, so we can be sure that the pinniped resource # version has passed these jobs *together* with the other resource versions below.