Skip to content

Commit

Permalink
another try at fixing overlapping names in wf
Browse files Browse the repository at this point in the history
  • Loading branch information
maichmueller committed Jul 18, 2024
1 parent b517a76 commit d79f262
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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:
Expand Down

0 comments on commit d79f262

Please sign in to comment.