Skip to content

Commit

Permalink
Uncomment upload step in ci.yml (duh), and use the COVERALLS_SERVICE_…
Browse files Browse the repository at this point in the history
…NUMBER env var to add a label and identify the architecture-specific tests of coverage-reporter at Coveralls.io.
  • Loading branch information
afinetooth committed Sep 30, 2024
1 parent 5a18922 commit acb3a8c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ jobs:
run: |
binary=test/coveralls-linux-x86_64
cd coverage
$binary report --measure --base-path src/coverage_reporter/
COVERALLS_SERVICE_NUMBER=${{ GITHUB_RUN_ID }}-x86_64-test $binary report --measure --base-path src/coverage_reporter/
test-linux-aarch64:
runs-on: ubuntu-latest
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ jobs:
cd coverage
../bin/coveralls report --measure --base-path src/coverage_reporter/
# - name: Upload coverage report
# uses: actions/upload-artifact@v4
# with:
# name: coverage-report
# path: coverage/
- name: Upload coverage report
uses: actions/upload-artifact@v4
with:
name: coverage-report
path: coverage/

0 comments on commit acb3a8c

Please sign in to comment.