Skip to content

Commit 4067700

Browse files
committed
Don't require the bench job to pass for a new release
cc rust-lang/rust#125493
1 parent 97d47f7 commit 4067700

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,8 @@ jobs:
282282
runs-on: ubuntu-latest
283283
timeout-minutes: 10
284284
if: ${{ github.ref == 'refs/heads/master' }}
285-
needs: [rustfmt, test, bench, dist]
285+
# FIXME add the bench job back to the dependency list once rust-lang/rust#125493 gets merged
286+
needs: [rustfmt, test, dist]
286287

287288
permissions:
288289
contents: write # for creating the dev tag and release

0 commit comments

Comments
 (0)