about summary refs log tree commit diff
path: root/src/ci/github-actions/ci.yml
diff options
context:
space:
mode:
authorJakub Beránek <berykubik@gmail.com>2024-04-15 21:21:45 +0200
committerJakub Beránek <berykubik@gmail.com>2024-04-15 21:21:45 +0200
commit72104e245bf2cc4ce3e29cf28ebee95b78bcd786 (patch)
tree7ffaff41da6317a745877db7e5ccbecde28c437c /src/ci/github-actions/ci.yml
parentf15b3267519488be17623322598d91b854a71227 (diff)
downloadrust-72104e245bf2cc4ce3e29cf28ebee95b78bcd786.tar.gz
rust-72104e245bf2cc4ce3e29cf28ebee95b78bcd786.zip
Add comments
Diffstat (limited to 'src/ci/github-actions/ci.yml')
-rw-r--r--src/ci/github-actions/ci.yml2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ci/github-actions/ci.yml b/src/ci/github-actions/ci.yml
index 8f8b10ab90e..ec65b5f37bd 100644
--- a/src/ci/github-actions/ci.yml
+++ b/src/ci/github-actions/ci.yml
@@ -340,6 +340,7 @@ concurrency:
   cancel-in-progress: true
 
 jobs:
+  # The job matrix for `calculate_matrix` is defined in src/ci/github-actions/jobs.yml.
   calculate_matrix:
     name: Calculate job matrix
     runs-on: ubuntu-latest
@@ -362,6 +363,7 @@ jobs:
     continue-on-error: ${{ matrix.name == 'mingw-check-tidy' }}
     strategy:
       matrix:
+        # Check the `calculate_matrix` job to see how is the matrix defined.
         include: ${{ fromJSON(needs.calculate_matrix.outputs.jobs) }}
 
   auto: