Skip to content

Commit

Permalink
Update coverage conversion to be architecture agnostic (#56)
Browse files Browse the repository at this point in the history
runners switched to arm64 apparently, unclear if that was deliberate
on our part or a force of nature (GitHub). This should make it work
for any runner arch in the future as long as it's Mac OS
  • Loading branch information
finn-tbd committed Apr 30, 2024
1 parent f2d30d3 commit e4f5a88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
run: swift test --enable-code-coverage

- name: Convert the coverage data
run: llvm-cov export -format="lcov" .build/x86_64-apple-macosx/debug/Web5PackageTests.xctest/Contents/MacOS/Web5PackageTests -instr-profile .build/x86_64-apple-macosx/debug/codecov/default.profdata > info.lcov
run: llvm-cov export -format="lcov" .build/*-apple-macosx/debug/Web5PackageTests.xctest/Contents/MacOS/Web5PackageTests -instr-profile .build/*-apple-macosx/debug/codecov/default.profdata > info.lcov

- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@c16abc29c95fcf9174b58eb7e1abf4c866893bc8 # 4.1.1
Expand Down

0 comments on commit e4f5a88

Please sign in to comment.