Skip to content

Commit 6206d2a

Browse files
committed
Auto merge of #9070 - flip1995:ci-fix, r=xFrednet
Make sure bors success depends on metadata_collection r? `@xFrednet` Currently bors runs the `metadata_collection` but merges before the run is finished, because the bors success dummy step didn't depend on it. This also makes sure that the `metadata_collection` test is run at the same time as the other base runs to not produce overhead. changelog: none
2 parents 0cb0f76 + a131cea commit 6206d2a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/clippy_bors.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ jobs:
144144
OS: ${{ runner.os }}
145145

146146
metadata_collection:
147-
needs: base
147+
needs: changelog
148148
runs-on: ubuntu-latest
149149

150150
steps:
@@ -264,7 +264,7 @@ jobs:
264264
name: bors test finished
265265
if: github.event.pusher.name == 'bors' && success()
266266
runs-on: ubuntu-latest
267-
needs: [changelog, base, integration_build, integration]
267+
needs: [changelog, base, metadata_collection, integration_build, integration]
268268

269269
steps:
270270
- name: Mark the job as successful
@@ -274,7 +274,7 @@ jobs:
274274
name: bors test finished
275275
if: github.event.pusher.name == 'bors' && (failure() || cancelled())
276276
runs-on: ubuntu-latest
277-
needs: [changelog, base, integration_build, integration]
277+
needs: [changelog, base, metadata_collection, integration_build, integration]
278278

279279
steps:
280280
- name: Mark the job as a failure

0 commit comments

Comments
 (0)