From c0c6809663cecad8866032b2ffbfb93194596c67 Mon Sep 17 00:00:00 2001 From: Frantisek Sumsal Date: Mon, 25 Jan 2021 15:45:36 +0100 Subject: [PATCH] ci: make the script names a bit more consistent --- .github/workflows/{ubuntu-build-check.sh => build_test.sh} | 0 .github/workflows/build_test.yml | 2 +- .github/workflows/coverity.yml | 2 +- .github/workflows/{ubuntu-unit-tests.sh => unit_tests.sh} | 0 .github/workflows/unit_tests.yml | 4 ++-- 5 files changed, 4 insertions(+), 4 deletions(-) rename .github/workflows/{ubuntu-build-check.sh => build_test.sh} (100%) rename .github/workflows/{ubuntu-unit-tests.sh => unit_tests.sh} (100%) diff --git a/.github/workflows/ubuntu-build-check.sh b/.github/workflows/build_test.sh similarity index 100% rename from .github/workflows/ubuntu-build-check.sh rename to .github/workflows/build_test.sh diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index c9aec779c8b..e4472511c2c 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -26,4 +26,4 @@ jobs: - name: Repository checkout uses: actions/checkout@v1 - name: Build check (${{ env.COMPILER }}-${{ env.COMPILER_VERSION }}) - run: sudo -E .github/workflows/ubuntu-build-check.sh + run: sudo -E .github/workflows/build_test.sh diff --git a/.github/workflows/coverity.yml b/.github/workflows/coverity.yml index 2c1863779f1..a0eb0f01fdc 100644 --- a/.github/workflows/coverity.yml +++ b/.github/workflows/coverity.yml @@ -29,7 +29,7 @@ jobs: run: tools/get-coverity.sh # Reuse the setup phase of the unit test script to avoid code duplication - name: Install build dependencies - run: sudo -E .github/workflows/ubuntu-unit-tests.sh SETUP + run: sudo -E .github/workflows/unit_tests.sh SETUP # Preconfigure with meson to prevent Coverity from capturing meson metadata - name: Preconfigure the build directory run: meson cov-build -Dman=false diff --git a/.github/workflows/ubuntu-unit-tests.sh b/.github/workflows/unit_tests.sh similarity index 100% rename from .github/workflows/ubuntu-unit-tests.sh rename to .github/workflows/unit_tests.sh diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml index 9dd1c1b3cf3..ca1e6e0c30f 100644 --- a/.github/workflows/unit_tests.yml +++ b/.github/workflows/unit_tests.yml @@ -18,6 +18,6 @@ jobs: - name: Repository checkout uses: actions/checkout@v1 - name: Install build dependencies - run: sudo -E .github/workflows/ubuntu-unit-tests.sh SETUP + run: sudo -E .github/workflows/unit_tests.sh SETUP - name: Build & test (${{ matrix.run_phase }}) - run: sudo -E .github/workflows/ubuntu-unit-tests.sh RUN_${{ matrix.run_phase }} + run: sudo -E .github/workflows/unit_tests.sh RUN_${{ matrix.run_phase }}