Skip to content

Commit

Permalink
Fix CI cache names
Browse files Browse the repository at this point in the history
  • Loading branch information
ranocha authored Mar 25, 2024
1 parent 2113ffb commit 8ab284e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
# - uses: coverallsapp/github-action@master
# with:
# github-token: ${{ secrets.GITHUB_TOKEN }}
# flag-name: run-${{ matrix.version }}-${{ github.run_id }}
# flag-name: run-${{ matrix.os }}-${{ matrix.version }}-${{ github.run_id }}
# parallel: true
# path-to-lcov: ./lcov.info
# Instead, we use a more tedious approach:
Expand All @@ -58,11 +58,11 @@ jobs:
# - Upload only the merged coverage report to Coveralls
- shell: bash
run: |
cp ./lcov.info ./lcov-${{ matrix.version }}-${{ github.run_id }}.info
cp ./lcov.info ./lcov-${{ matrix.os }}-${{ matrix.version }}-${{ github.run_id }}.info
- uses: actions/upload-artifact@v4
with:
name: lcov-${{ matrix.version }}-${{ github.run_id }}
path: ./lcov-${{ matrix.version }}-${{ github.run_id }}.info
name: lcov-${{ matrix.os }}-${{ matrix.version }}-${{ github.run_id }}
path: ./lcov-${{ matrix.os }}-${{ matrix.version }}-${{ github.run_id }}.info

finish:
needs: test
Expand Down

0 comments on commit 8ab284e

Please sign in to comment.