@@ -30,6 +30,10 @@ cargo-fmt:
3030
3131cargo-clippy :
3232 stage : test
33+ # this is an artificial job dependency, for pipeline optimization using GitLab's DAGs
34+ needs :
35+ - job : cargo-fmt
36+ artifacts : false
3337 extends :
3438 - .docker-env
3539 - .test-refs
@@ -38,6 +42,10 @@ cargo-clippy:
3842
3943cargo-check-nixos :
4044 stage : test
45+ # this is an artificial job dependency, for pipeline optimization using GitLab's DAGs
46+ needs :
47+ - job : cargo-clippy
48+ artifacts : false
4149 extends :
4250 - .docker-env
4351 - .test-refs
@@ -117,6 +125,10 @@ cargo-check-subkey:
117125
118126cargo-check-try-runtime :
119127 stage : test
128+ # this is an artificial job dependency, for pipeline optimization using GitLab's DAGs
129+ needs :
130+ - job : cargo-check-subkey
131+ artifacts : false
120132 extends :
121133 - .docker-env
122134 - .test-refs
@@ -125,6 +137,10 @@ cargo-check-try-runtime:
125137
126138cargo-check-wasmer-sandbox :
127139 stage : test
140+ # this is an artificial job dependency, for pipeline optimization using GitLab's DAGs
141+ needs :
142+ - job : cargo-check-try-runtime
143+ artifacts : false
128144 extends :
129145 - .docker-env
130146 - .test-refs
@@ -133,6 +149,10 @@ cargo-check-wasmer-sandbox:
133149
134150test-deterministic-wasm :
135151 stage : test
152+ # this is an artificial job dependency, for pipeline optimization using GitLab's DAGs
153+ needs :
154+ - job : cargo-check-wasmer-sandbox
155+ artifacts : false
136156 extends :
137157 - .docker-env
138158 - .test-refs
@@ -217,6 +237,10 @@ test-linux-stable-int:
217237
218238check-tracing :
219239 stage : test
240+ # this is an artificial job dependency, for pipeline optimization using GitLab's DAGs
241+ needs :
242+ - job : test-linux-stable-int
243+ artifacts : false
220244 extends :
221245 - .docker-env
222246 - .test-refs
@@ -227,6 +251,10 @@ check-tracing:
227251
228252test-full-crypto-feature :
229253 stage : test
254+ # this is an artificial job dependency, for pipeline optimization using GitLab's DAGs
255+ needs :
256+ - job : check-tracing
257+ artifacts : false
230258 extends :
231259 - .docker-env
232260 - .test-refs
0 commit comments