]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
ci: make the script names a bit more consistent
authorFrantisek Sumsal <frantisek@sumsal.cz>
Mon, 25 Jan 2021 14:45:36 +0000 (15:45 +0100)
committerFrantisek Sumsal <frantisek@sumsal.cz>
Mon, 25 Jan 2021 14:45:36 +0000 (15:45 +0100)
.github/workflows/build_test.sh [moved from .github/workflows/ubuntu-build-check.sh with 100% similarity]
.github/workflows/build_test.yml
.github/workflows/coverity.yml
.github/workflows/unit_tests.sh [moved from .github/workflows/ubuntu-unit-tests.sh with 100% similarity]
.github/workflows/unit_tests.yml

index c9aec779c8b5608de73e94b1ace1893ce7a443ea..e4472511c2c74ce0bfa169743a04c2f7713ec50c 100644 (file)
@@ -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
index 2c1863779f1ff32d0b37eb8e1648098db65b9101..a0eb0f01fdc2f337e7d86e6a097a03063c5c29a1 100644 (file)
@@ -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
index 9dd1c1b3cf37bf5454a2f12028d2f969795025f9..ca1e6e0c30f5102d7182121ce1feda77bfac2fe4 100644 (file)
@@ -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 }}