diff options
| author | bjorn3 <17426603+bjorn3@users.noreply.github.com> | 2024-06-04 16:26:14 +0200 |
|---|---|---|
| committer | bjorn3 <17426603+bjorn3@users.noreply.github.com> | 2024-06-04 16:26:51 +0200 |
| commit | 406770001e8a2379e0175cecce11016a4448835a (patch) | |
| tree | 43f363daa9b09bcda7f6957cedfb0b6da9c806b2 | |
| parent | 97d47f7077d631c0eb8dac000638496a2c2a5ee2 (diff) | |
| download | rust-406770001e8a2379e0175cecce11016a4448835a.tar.gz rust-406770001e8a2379e0175cecce11016a4448835a.zip | |
Don't require the bench job to pass for a new release
cc rust-lang/rust#125493
| -rw-r--r-- | .github/workflows/main.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1f5a6513f63..a0c7ccdec0d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -282,7 +282,8 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 10 if: ${{ github.ref == 'refs/heads/master' }} - needs: [rustfmt, test, bench, dist] + # FIXME add the bench job back to the dependency list once rust-lang/rust#125493 gets merged + needs: [rustfmt, test, dist] permissions: contents: write # for creating the dev tag and release |
