diff options
| author | bors <bors@rust-lang.org> | 2023-05-07 17:17:58 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2023-05-07 17:17:58 +0000 |
| commit | c4190f2d3a46a59f435f7b42f58bc22b2f4d6917 (patch) | |
| tree | 2cde5425235b9d14f4659663aea154d811e9d51e /src/ci/github-actions | |
| parent | 613a5c95ae7401e08d21b8a77f53dadb1d7642d7 (diff) | |
| parent | 453c632b230c4c9bac408fa406f20e656fccc51e (diff) | |
| download | rust-c4190f2d3a46a59f435f7b42f58bc22b2f4d6917.tar.gz rust-c4190f2d3a46a59f435f7b42f58bc22b2f4d6917.zip | |
Auto merge of #111224 - jyn514:default-tidy, r=pietroalbini
Remove `tidy` key in PR CI This avoids confusing error messages when adding an `auto` job to CI (as recommended in the dev-guide: https://rustc-dev-guide.rust-lang.org/tests/ci.html#using-ci-to-test). cc https://rust-lang.zulipchat.com/#narrow/stream/182449-t-compiler.2Fhelp/topic/Do.20.60needs-profiler-support.60.20tests.20not.20run.20in.20CI.3F/near/355302998 r? `@ghost`
Diffstat (limited to 'src/ci/github-actions')
| -rw-r--r-- | src/ci/github-actions/ci.yml | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/ci/github-actions/ci.yml b/src/ci/github-actions/ci.yml index 7f2d34f8098..f81e740936b 100644 --- a/src/ci/github-actions/ci.yml +++ b/src/ci/github-actions/ci.yml @@ -298,25 +298,21 @@ jobs: env: <<: [*shared-ci-variables, *public-variables] if: github.event_name == 'pull_request' - continue-on-error: ${{ matrix.tidy }} + continue-on-error: ${{ matrix.name == 'mingw-check-tidy' }} strategy: matrix: include: - name: mingw-check <<: *job-linux-16c - tidy: false - name: mingw-check-tidy <<: *job-linux-16c - tidy: true - name: x86_64-gnu-llvm-14 <<: *job-linux-16c - tidy: false - name: x86_64-gnu-tools <<: *job-linux-16c - tidy: false auto: permissions: |
