]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
ci: Remove custom build step names
authorJan Janssen <medhefgo@web.de>
Wed, 30 Aug 2023 17:58:14 +0000 (19:58 +0200)
committerJan Janssen <medhefgo@web.de>
Wed, 6 Sep 2023 08:40:51 +0000 (10:40 +0200)
Putting build matrix details into a build step name is rather useless as
the jobs themselves already contain the needed information.

.github/workflows/build_test.yml
.github/workflows/cflite_pr.yml
.github/workflows/cifuzz.yml
.github/workflows/mkosi.yml
.github/workflows/unit_tests.yml

index 16dcd30c082a76947bd12b223eca0055c29d8d80..f8b0ccaf81dd9be8572604af3de446e331fd20f0 100644 (file)
@@ -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
index a35a97f046d0f5c74f3e091e2f58fa0b941e807d..707ea0b6ba625996e7736b38a4dbc1fc0a1bf117 100644 (file)
@@ -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:
index a7e4d2b84202ef1ffda6a3c54c690ffbb14b9103..f7530b750727f9daba18849f437f91c84f2eb9df 100644 (file)
@@ -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'
index c353423c5821eb4a9de6d98c5a72cbb424d1684e..5b70c607c26d062689b7f97a8bd9c3dd0cbdaef6 100644 (file)
@@ -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
index 051e8ec3bf66a469bbbe218af5375322ca52a814..e2dd8c3da25a69a9dda308ef0ef83fbe0be15898 100644 (file)
@@ -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 }}