We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
calculate-job-matrix
ci.py
1 parent 64feb9b commit 55865c8Copy full SHA for 55865c8
.github/workflows/ci.yml
@@ -2,7 +2,7 @@
2
# and also on pushes to special branches (auto, try).
3
#
4
# The actual definition of the executed jobs is calculated by a Python
5
-# script located at src/ci/github-actions/calculate-job-matrix.py, which
+# script located at src/ci/github-actions/ci.py, which
6
# uses job definition data from src/ci/github-actions/jobs.yml.
7
# You should primarily modify the `jobs.yml` file if you want to modify
8
# what jobs are executed in CI.
@@ -56,7 +56,7 @@ jobs:
56
- name: Calculate the CI job matrix
57
env:
58
COMMIT_MESSAGE: ${{ github.event.head_commit.message }}
59
- run: python3 src/ci/github-actions/calculate-job-matrix.py >> $GITHUB_OUTPUT
+ run: python3 src/ci/github-actions/ci.py >> $GITHUB_OUTPUT
60
id: jobs
61
job:
62
name: ${{ matrix.name }}
src/ci/github-actions/calculate-job-matrix.py renamed to src/ci/github-actions/ci.py
0 commit comments