summary refs log tree commit diff
path: root/src/ci/github-actions
diff options
context:
space:
mode:
authorjyn <github@jyn.dev>2023-05-04 17:42:44 -0500
committerjyn <github@jyn.dev>2023-05-04 18:17:46 -0500
commit453c632b230c4c9bac408fa406f20e656fccc51e (patch)
tree28d52d4ae61db32ea91b5caa29192085b98c2e3f /src/ci/github-actions
parenteb7a7434215dd9d4b7cc18746ad1d0e531c25325 (diff)
downloadrust-453c632b230c4c9bac408fa406f20e656fccc51e.tar.gz
rust-453c632b230c4c9bac408fa406f20e656fccc51e.zip
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).
Diffstat (limited to 'src/ci/github-actions')
-rw-r--r--src/ci/github-actions/ci.yml6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/ci/github-actions/ci.yml b/src/ci/github-actions/ci.yml
index 5661adf6776..9d90319e93f 100644
--- a/src/ci/github-actions/ci.yml
+++ b/src/ci/github-actions/ci.yml
@@ -300,25 +300,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: