From 2a058800f3941cfa19cec41bb6cc535098a05a5c Mon Sep 17 00:00:00 2001 From: "Rob Swindell (on Debian Linux)" <rob@synchro.net> Date: Mon, 5 Feb 2024 20:16:53 -0800 Subject: [PATCH] Add a needs clause to the jsexec smoketest job jobs in the 'test' stage are supposed to run only after all jobs in the 'build' stage so I don't understand why this would be needed, but I'm getting pipeline failures with it trying to run this test before building anything. Or maybe its something else (no artifacts?). --- .gitlab-ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 376adedf87..f21edbb8e6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -27,6 +27,7 @@ smoketest-jsexec-linux: tags: [Linux] image: gcc stage: test + needs: ["sbbs-linux"] script: - cd src/sbbs3 - "*.exe.release/jsexec -r 'exit(42)'" -- GitLab