Skip to content

Commit 4ad371b

Browse files
Merge #6598: ci: test- tests no depend on depends-
f89e718 ci: `test-` jobs don't need `depends-` (UdjinM6) Pull request description: ## Issue being fixed or feature implemented There is no need to specify `depends-` jobs as dependencies for `test-` jobs, we don't use their output in any way. ## What was done? Drop excessive job dependencies ## How Has This Been Tested? https://github.com/UdjinM6/dash/actions/runs/13532303801 ## Breaking Changes ## Checklist: - [ ] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have added or updated relevant unit/integration/functional/e2e tests - [ ] I have made corresponding changes to the documentation - [ ] I have assigned this pull request to a milestone _(for repository code-owners and collaborators only)_ ACKs for top commit: PastaPastaPasta: utACK f89e718 Tree-SHA512: 4549d9e578371a57c51cf2c05eafafaf39ea9d3821165675eb0feb07ddfdf6639a93786f47f746c96f75bc8197706682484b9e939e3c20d557ced658230d3b91
2 parents d5e3d46 + f89e718 commit 4ad371b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ jobs:
158158
test-linux64:
159159
name: linux64-test
160160
uses: ./.github/workflows/test-src.yml
161-
needs: [container, depends-linux64, src-linux64]
161+
needs: [container, src-linux64]
162162
with:
163163
bundle-key: ${{ needs.src-linux64.outputs.key }}
164164
build-target: linux64
@@ -167,7 +167,7 @@ jobs:
167167
test-linux64_nowallet:
168168
name: linux64_nowallet-test
169169
uses: ./.github/workflows/test-src.yml
170-
needs: [container, depends-linux64_nowallet, src-linux64_nowallet]
170+
needs: [container, src-linux64_nowallet]
171171
with:
172172
bundle-key: ${{ needs.src-linux64_nowallet.outputs.key }}
173173
build-target: linux64_nowallet
@@ -176,7 +176,7 @@ jobs:
176176
test-linux64_sqlite:
177177
name: linux64_sqlite-test
178178
uses: ./.github/workflows/test-src.yml
179-
needs: [container, depends-linux64, src-linux64_sqlite]
179+
needs: [container, src-linux64_sqlite]
180180
with:
181181
bundle-key: ${{ needs.src-linux64_sqlite.outputs.key }}
182182
build-target: linux64_sqlite
@@ -185,7 +185,7 @@ jobs:
185185
test-linux64_ubsan:
186186
name: linux64_ubsan-test
187187
uses: ./.github/workflows/test-src.yml
188-
needs: [container, depends-linux64, src-linux64_ubsan]
188+
needs: [container, src-linux64_ubsan]
189189
with:
190190
bundle-key: ${{ needs.src-linux64_ubsan.outputs.key }}
191191
build-target: linux64_ubsan

0 commit comments

Comments
 (0)