From: Frantisek Sumsal Date: Mon, 25 Jan 2021 14:45:36 +0000 (+0100) Subject: ci: make the script names a bit more consistent X-Git-Tag: v248-rc1~255^2~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c0c6809663cecad8866032b2ffbfb93194596c67;p=thirdparty%2Fsystemd.git ci: make the script names a bit more consistent --- 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 }}