1
0
mirror of https://github.com/systemd/systemd.git synced 2025-01-11 09:18:07 +03:00

ci: make the script names a bit more consistent

This commit is contained in:
Frantisek Sumsal 2021-01-25 15:45:36 +01:00
parent 4c6eb1d77d
commit c0c6809663
5 changed files with 4 additions and 4 deletions

View 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

View 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

View 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 }}