File tree 1 file changed +5
-3
lines changed
1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 1
1
# This file defines our primary CI workflow that runs on pull requests
2
2
# and also on pushes to special branches (auto, try).
3
3
#
4
- # The actual definition of the executed jobs is calculated by a Python
5
- # script located at src/ci/github-actions/ci.py , which
4
+ # The actual definition of the executed jobs is calculated by a
5
+ # script located at src/ci/citool , which
6
6
# uses job definition data from src/ci/github-actions/jobs.yml.
7
7
# You should primarily modify the `jobs.yml` file if you want to modify
8
8
# what jobs are executed in CI.
56
56
- name : Calculate the CI job matrix
57
57
env :
58
58
COMMIT_MESSAGE : ${{ github.event.head_commit.message }}
59
- run : python3 src/ci/github-actions/ci.py calculate-job-matrix >> $GITHUB_OUTPUT
59
+ run : |
60
+ cd src/ci/citool
61
+ cargo run calculate-job-matrix >> $GITHUB_OUTPUT
60
62
id : jobs
61
63
job :
62
64
name : ${{ matrix.full_name }}
You can’t perform that action at this time.
0 commit comments