Skip to content

Commit 9fec43d

Browse files
committed
Move calculate-job-matrix.py to ci/github-actions
1 parent 9c7b1f4 commit 9fec43d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
- name: Checkout the source code
4646
uses: actions/checkout@v4
4747
- name: Calculate the CI job matrix
48-
run: python3 src/ci/scripts/calculate-job-matrix.py >> $GITHUB_OUTPUT
48+
run: python3 src/ci/github-actions/calculate-job-matrix.py >> $GITHUB_OUTPUT
4949
id: jobs
5050
pr:
5151
name: "PR - ${{ matrix.name }}"

src/ci/scripts/calculate-job-matrix.py renamed to src/ci/github-actions/calculate-job-matrix.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
import yaml
1717

18-
JOBS_YAML_PATH = Path(__file__).absolute().parent.parent / "github-actions" / "jobs.yml"
18+
JOBS_YAML_PATH = Path(__file__).absolute().parent / "jobs.yml"
1919

2020

2121
if __name__ == "__main__":

src/ci/github-actions/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ jobs:
351351
- name: Checkout the source code
352352
uses: actions/checkout@v4
353353
- name: Calculate the CI job matrix
354-
run: python3 src/ci/scripts/calculate-job-matrix.py >> $GITHUB_OUTPUT
354+
run: python3 src/ci/github-actions/calculate-job-matrix.py >> $GITHUB_OUTPUT
355355
id: jobs
356356
pr:
357357
<<: *base-ci-job

0 commit comments

Comments
 (0)