Skip to content

Commit

Permalink
Better line grouping
Browse files Browse the repository at this point in the history
  • Loading branch information
dfed committed Oct 11, 2022
1 parent d88bb2c commit 7415f53
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,10 @@ jobs:
- name: Build and Test Framework
run: Scripts/build.swift ${{ matrix.platforms }}
- name: Export Coverage Reports
run: mkdir -p .build/artifacts && xcrun llvm-cov export -format="lcov" .build/derivedData/*/Build/Products/*/CacheAdvanceTests.xctest/**/CacheAdvanceTests -instr-profile .build/derivedData/*/Build/ProfileData/*/Coverage.profdata > .build/artifacts/CacheAdvance.lcov && xcrun llvm-cov export -format="lcov" .build/derivedData/*/Build/Products/*/CADCacheAdvanceTests.xctest/**/CADCacheAdvanceTests -instr-profile .build/derivedData/*/Build/ProfileData/*/Coverage.profdata > .build/artifacts/CADCacheAdvance.lcov
run: |
mkdir -p .build/artifacts
xcrun llvm-cov export -format="lcov" .build/derivedData/*/Build/Products/*/CacheAdvanceTests.xctest/**/CacheAdvanceTests -instr-profile .build/derivedData/*/Build/ProfileData/*/Coverage.profdata > .build/artifacts/CacheAdvance.lcov
xcrun llvm-cov export -format="lcov" .build/derivedData/*/Build/Products/*/CADCacheAdvanceTests.xctest/**/CADCacheAdvanceTests -instr-profile .build/derivedData/*/Build/ProfileData/*/Coverage.profdata > .build/artifacts/CADCacheAdvance.lcov
- name: Upload Coverage Reports
if: success()
uses: codecov/codecov-action@v3
Expand All @@ -81,7 +84,10 @@ jobs:
- name: Build and Test Framework
run: Scripts/build.swift ${{ matrix.platforms }}
- name: Export Coverage Reports
run: mkdir -p .build/artifacts && xcrun llvm-cov export -format="lcov" .build/derivedData/*/Build/Products/*/CacheAdvanceTests.xctest/**/CacheAdvanceTests -instr-profile .build/derivedData/*/Build/ProfileData/*/Coverage.profdata > .build/artifacts/CacheAdvance.lcov && xcrun llvm-cov export -format="lcov" .build/derivedData/*/Build/Products/*/CADCacheAdvanceTests.xctest/**/CADCacheAdvanceTests -instr-profile .build/derivedData/*/Build/ProfileData/*/Coverage.profdata > .build/artifacts/CADCacheAdvance.lcov
run: |
mkdir -p .build/artifacts
xcrun llvm-cov export -format="lcov" .build/derivedData/*/Build/Products/*/CacheAdvanceTests.xctest/**/CacheAdvanceTests -instr-profile .build/derivedData/*/Build/ProfileData/*/Coverage.profdata > .build/artifacts/CacheAdvance.lcov
xcrun llvm-cov export -format="lcov" .build/derivedData/*/Build/Products/*/CADCacheAdvanceTests.xctest/**/CADCacheAdvanceTests -instr-profile .build/derivedData/*/Build/ProfileData/*/Coverage.profdata > .build/artifacts/CADCacheAdvance.lcov
- name: Upload Coverage Reports
if: success()
uses: codecov/codecov-action@v3
Expand All @@ -107,7 +113,10 @@ jobs:
- name: Build and Test Framework
run: Scripts/build.swift ${{ matrix.platforms }}
- name: Export Coverage Reports
run: mkdir -p .build/artifacts && xcrun llvm-cov export -format="lcov" .build/derivedData/*/Build/Products/*/CacheAdvanceTests.xctest/**/CacheAdvanceTests -instr-profile .build/derivedData/*/Build/ProfileData/*/Coverage.profdata > .build/artifacts/CacheAdvance.lcov && xcrun llvm-cov export -format="lcov" .build/derivedData/*/Build/Products/*/CADCacheAdvanceTests.xctest/**/CADCacheAdvanceTests -instr-profile .build/derivedData/*/Build/ProfileData/*/Coverage.profdata > .build/artifacts/CADCacheAdvance.lcov
run: |
mkdir -p .build/artifacts
xcrun llvm-cov export -format="lcov" .build/derivedData/*/Build/Products/*/CacheAdvanceTests.xctest/**/CacheAdvanceTests -instr-profile .build/derivedData/*/Build/ProfileData/*/Coverage.profdata > .build/artifacts/CacheAdvance.lcov
xcrun llvm-cov export -format="lcov" .build/derivedData/*/Build/Products/*/CADCacheAdvanceTests.xctest/**/CADCacheAdvanceTests -instr-profile .build/derivedData/*/Build/ProfileData/*/Coverage.profdata > .build/artifacts/CADCacheAdvance.lcov
- name: Upload Coverage Reports
if: success()
uses: codecov/codecov-action@v3
Expand Down

0 comments on commit 7415f53

Please sign in to comment.