From 55865c8b9522393eff4470a1da70f31e7eb415bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Ber=C3=A1nek?= Date: Sun, 29 Dec 2024 18:42:33 +0100 Subject: [PATCH] Rename CI script from `calculate-job-matrix` to `ci.py` --- .github/workflows/ci.yml | 4 ++-- src/ci/github-actions/{calculate-job-matrix.py => ci.py} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename src/ci/github-actions/{calculate-job-matrix.py => ci.py} (100%) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f0e151d25778c..bedfe72137c81 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,7 +2,7 @@ # and also on pushes to special branches (auto, try). # # The actual definition of the executed jobs is calculated by a Python -# script located at src/ci/github-actions/calculate-job-matrix.py, which +# script located at src/ci/github-actions/ci.py, which # uses job definition data from src/ci/github-actions/jobs.yml. # You should primarily modify the `jobs.yml` file if you want to modify # what jobs are executed in CI. @@ -56,7 +56,7 @@ jobs: - name: Calculate the CI job matrix env: COMMIT_MESSAGE: ${{ github.event.head_commit.message }} - run: python3 src/ci/github-actions/calculate-job-matrix.py >> $GITHUB_OUTPUT + run: python3 src/ci/github-actions/ci.py >> $GITHUB_OUTPUT id: jobs job: name: ${{ matrix.name }} diff --git a/src/ci/github-actions/calculate-job-matrix.py b/src/ci/github-actions/ci.py similarity index 100% rename from src/ci/github-actions/calculate-job-matrix.py rename to src/ci/github-actions/ci.py