Skip to content

Commit 72104e2

Browse files
committed
Add comments
1 parent f15b326 commit 72104e2

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

src/ci/github-actions/ci.yml

+2
Original file line numberDiff line numberDiff line change
@@ -340,6 +340,7 @@ concurrency:
340340
cancel-in-progress: true
341341

342342
jobs:
343+
# The job matrix for `calculate_matrix` is defined in src/ci/github-actions/jobs.yml.
343344
calculate_matrix:
344345
name: Calculate job matrix
345346
runs-on: ubuntu-latest
@@ -362,6 +363,7 @@ jobs:
362363
continue-on-error: ${{ matrix.name == 'mingw-check-tidy' }}
363364
strategy:
364365
matrix:
366+
# Check the `calculate_matrix` job to see how is the matrix defined.
365367
include: ${{ fromJSON(needs.calculate_matrix.outputs.jobs) }}
366368

367369
auto:

src/ci/github-actions/jobs.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
x--expand-yaml-anchors--remove:
1+
# This file contains definitions of CI job parameters that are loaded
2+
# dynamically in CI from ci.yml.
3+
# You *do not* need to re-run `src/tools/expand-yaml-anchors` when you
4+
# modify this file.
5+
shared_defs:
26
- &base-job
37
env: { }
48

0 commit comments

Comments
 (0)