Skip to content

Commit 2a8b310

Browse files
committed
Wait for debug build before triggering child pipeline
* Wait for debug build before triggering child pipeline Commit 0c6997a moved linux-x86_64 debug build into the parent pipeline so it runs on every MR, but the trigger debug build and test job kept its `needs: []`. Once the child pipeline started, its jobs referenced `pipeline: $PARENT_PIPELINE_ID, job: linux-x86_64 debug build` and failed with "could not retrieve the needed artifacts" if the parent build had not yet finished. Add the explicit dependency so the trigger waits, mirroring the working `trigger cuda 13 pipeline` pattern. Signed-off-by: Eric Shi <ershi@nvidia.com> Approved-by: Eric Shi <ershi@nvidia.com> See merge request omniverse/warp!2306
1 parent 1d1e18d commit 2a8b310

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.gitlab-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -772,7 +772,7 @@ trigger debug build and test pipeline:
772772
image: busybox
773773
extends:
774774
- .ipp_lnx_x86_64_cpu_micro
775-
needs: []
775+
needs: [linux-x86_64 debug build]
776776
rules:
777777
- if: $CI_PIPELINE_SOURCE == "schedule"
778778
- if: $CI_COMMIT_TAG

0 commit comments

Comments
 (0)