Skip to content

Commit

Permalink
build: update CI build definitions
Browse files Browse the repository at this point in the history
  • Loading branch information
brianheineman committed Aug 8, 2024
1 parent ea524a4 commit 72f79d7
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 @@ -78,7 +78,7 @@ jobs:
cargo build --target ${{ matrix.target }}
- name: Tests
if: ${{ !startsWith(matrix.platform, 'ubuntu-') && !startsWith(matrix.platform, 'wasm32-') }}
if: ${{ !startsWith(matrix.platform, 'wasm32-') }}
env:
CARGO_TERM_COLOR: always
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
Expand All @@ -88,7 +88,7 @@ jobs:
cargo test --target ${{ matrix.target }}
- name: Tests
if: ${{ startsWith(matrix.platform, 'ubuntu-') }}
if: ${{ startsWith(matrix.platform, 'linux-') }}
env:
CARGO_TERM_COLOR: always
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
Expand All @@ -101,7 +101,7 @@ jobs:
cargo test --target ${{ matrix.target }} --workspace --all-features
- name: Produce coverage info
if: ${{ startsWith(matrix.platform, 'ubuntu-') }}
if: ${{ startsWith(matrix.platform, 'linux-') }}
run: |
grcov $(find . -name "ristretto-*.profraw" -print) \
-s . \
Expand All @@ -116,7 +116,7 @@ jobs:
-o lcov.info
- name: Upload to codecov.io
if: ${{ startsWith(matrix.platform, 'ubuntu-') }}
if: ${{ startsWith(matrix.platform, 'linux-') }}
uses: codecov/codecov-action@v4
with:
files: lcov.info
Expand Down

0 comments on commit 72f79d7

Please sign in to comment.