diff options
author | Jan Janssen <medhefgo@web.de> | 2023-08-30 19:58:14 +0200 |
---|---|---|
committer | Jan Janssen <medhefgo@web.de> | 2023-09-06 10:40:51 +0200 |
commit | bc763971efa866d4cf3cc92c45d7486c9eca4e68 (patch) | |
tree | e28d0ea433176373b749bf9bdf36c1a3c5af70fb /.github | |
parent | test-network: Add test for PREF64 (diff) | |
download | systemd-bc763971efa866d4cf3cc92c45d7486c9eca4e68.tar.xz systemd-bc763971efa866d4cf3cc92c45d7486c9eca4e68.zip |
ci: Remove custom build step names
Putting build matrix details into a build step name is rather useless as
the jobs themselves already contain the needed information.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build_test.yml | 2 | ||||
-rw-r--r-- | .github/workflows/cflite_pr.yml | 4 | ||||
-rw-r--r-- | .github/workflows/cifuzz.yml | 4 | ||||
-rw-r--r-- | .github/workflows/mkosi.yml | 8 | ||||
-rw-r--r-- | .github/workflows/unit_tests.yml | 2 |
5 files changed, 10 insertions, 10 deletions
diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index 16dcd30c08..f8b0ccaf81 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -34,5 +34,5 @@ jobs: steps: - name: Repository checkout uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 - - name: ${{ format('Build check ({0}-{1}-{2}-{3})', env.COMPILER, env.COMPILER_VERSION, env.LINKER, env.CRYPTOLIB) }} + - name: Build check run: sudo -E .github/workflows/build_test.sh diff --git a/.github/workflows/cflite_pr.yml b/.github/workflows/cflite_pr.yml index a35a97f046..707ea0b6ba 100644 --- a/.github/workflows/cflite_pr.yml +++ b/.github/workflows/cflite_pr.yml @@ -23,13 +23,13 @@ jobs: matrix: sanitizer: [address, undefined, memory] steps: - - name: Build Fuzzers (${{ matrix.sanitizer }}) + - name: Build Fuzzers id: build uses: google/clusterfuzzlite/actions/build_fuzzers@v1 with: sanitizer: ${{ matrix.sanitizer }} github-token: ${{ secrets.GITHUB_TOKEN }} - - name: Run Fuzzers (${{ matrix.sanitizer }}) + - name: Run Fuzzers id: run uses: google/clusterfuzzlite/actions/run_fuzzers@v1 with: diff --git a/.github/workflows/cifuzz.yml b/.github/workflows/cifuzz.yml index a7e4d2b842..f7530b7507 100644 --- a/.github/workflows/cifuzz.yml +++ b/.github/workflows/cifuzz.yml @@ -39,7 +39,7 @@ jobs: security-events: write steps: - - name: Build Fuzzers (${{ matrix.sanitizer }}) + - name: Build Fuzzers id: build uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master with: @@ -51,7 +51,7 @@ jobs: sanitizer: ${{ matrix.sanitizer }} architecture: ${{ matrix.architecture }} output-sarif: true - - name: Run Fuzzers (${{ matrix.sanitizer }}) + - name: Run Fuzzers uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master with: oss-fuzz-project-name: 'systemd' diff --git a/.github/workflows/mkosi.yml b/.github/workflows/mkosi.yml index c353423c58..5b70c607c2 100644 --- a/.github/workflows/mkosi.yml +++ b/.github/workflows/mkosi.yml @@ -140,14 +140,14 @@ jobs: - name: Generate secure boot key run: mkosi --debug genkey - - name: Show ${{ matrix.distro }} image summary + - name: Show image summary run: mkosi summary - - name: Build ${{ matrix.distro }} + - name: Build run: mkosi --debug - - name: Boot ${{ matrix.distro }} systemd-nspawn + - name: Boot systemd-nspawn run: test "$(sudo mkosi --debug boot 1>&2; echo $?)" -eq 123 - - name: Boot ${{ matrix.distro }} QEMU + - name: Boot QEMU run: timeout -k 30 10m test "$(mkosi --debug qemu 1>&2; echo $?)" -eq 123 diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml index 051e8ec3bf..e2dd8c3da2 100644 --- a/.github/workflows/unit_tests.yml +++ b/.github/workflows/unit_tests.yml @@ -39,7 +39,7 @@ jobs: # Pass only specific env variables through sudo, to avoid having # the already existing XDG_* stuff on the "other side" sudo --preserve-env=CRYPTOLIB,GITHUB_ACTIONS,CI .github/workflows/unit_tests.sh SETUP - - name: Build & test (${{ matrix.run_phase }}-${{ matrix.cryptolib }}) + - name: Build & test run: sudo --preserve-env=CRYPTOLIB,GITHUB_ACTIONS,CI .github/workflows/unit_tests.sh RUN_${{ matrix.run_phase }} env: CRYPTOLIB: ${{ matrix.cryptolib }} |