From d79f2627f96577ec2519a469dc373bd03bb1c0ca Mon Sep 17 00:00:00 2001 From: Michael Aichmueller Date: Thu, 18 Jul 2024 11:14:07 +0200 Subject: [PATCH] another try at fixing overlapping names in wf --- .github/workflows/cpp.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cpp.yml b/.github/workflows/cpp.yml index 4b0f3de..8f2a717 100644 --- a/.github/workflows/cpp.yml +++ b/.github/workflows/cpp.yml @@ -36,7 +36,7 @@ jobs: build-test-install: needs: matrix-strategy-setup - name: ${{ matrix.config.os }}_${{ matrix.config.cc }}-${{ matrix.config.compiler_version }} + name: ${{ matrix.config.os }} • ${{ matrix.config.cc }}-${{ matrix.config.compiler_version }} runs-on: ${{ matrix.config.os }} strategy: fail-fast: false @@ -196,7 +196,7 @@ jobs: - name: Run No-Regret Tests shell: bash run: > - GTEST_OUTPUT=xml:gtest-report-${{ github.job }}-${{ matrix.config.cc }}-${{ matrix.config.compiler_version }}.xml + GTEST_OUTPUT=xml:gtest-report-${{ github.job }}-${{ matrix.config.cc }}-${{ matrix.config.compiler_version }}-lib.xml GTEST_COLOR=1 ctest -R Test_nor_tests_all --test-dir ./build @@ -208,7 +208,7 @@ jobs: if: success() with: name: gtest-results - path: ./build/**/gtest-report-${{ github.job }}-${{ matrix.config.cc }}-${{ matrix.config.compiler_version }}.xml + path: ./build/**/gtest-report-${{ github.job }}-${{ matrix.config.cc }}-${{ matrix.config.compiler_version }}-lib.xml retention-days: 1 publish-gtest-results: