From 084a2409b5871bd75924a81024a4df5f1cf27b6d Mon Sep 17 00:00:00 2001 From: Francesco Chemolli Date: Thu, 17 Oct 2024 22:45:20 +0100 Subject: [PATCH] standardise names and use vars to enforce it --- .github/workflows/auto.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/auto.yaml b/.github/workflows/auto.yaml index ddf1b444d43..8b250e9df0a 100644 --- a/.github/workflows/auto.yaml +++ b/.github/workflows/auto.yaml @@ -40,7 +40,7 @@ jobs: image: squidcache/buildfarm-${{ matrix.os }}:stable options: --user 1001 # uid used by worfklow runner - name: linux-distros-tests(${{ matrix.os }},${{ matrix.compiler.CC }},${{ matrix.layer.nick }}) + name: ${{ vars.GITHUB_JOB }}(${{ matrix.os }},${{ matrix.compiler.CC }},${{ matrix.layer.nick }}) env: CC: ${{ matrix.compiler.CC }} CXX: ${{ matrix.compiler.CXX }} @@ -63,9 +63,9 @@ jobs: name: build-logs-${{ matrix.os }}-${{ matrix.compiler.CC }}-${{ matrix.layer.nick }} path: btlayer-*.log - macos: + macos-test: runs-on: macos-14 - name: macos-test + name: ${{ vars.GITHUB_JOB }} steps: - name: Install prerequisite MacOS packages @@ -117,5 +117,5 @@ jobs: if: success() || failure() uses: actions/upload-artifact@v4 with: - name: build-logs-macos + name: build-logs path: btlayer-*.log