Skip to content

Commit

Permalink
Simplify MSRV build
Browse files Browse the repository at this point in the history
  • Loading branch information
udoprog committed Dec 14, 2023
1 parent 8c383bb commit 6315ef3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,14 @@ jobs:
with:
toolchain: ${{matrix.rust}}
- uses: Swatinem/rust-cache@v2
- run: cargo build --all-features -p audio -p audio-core -p audio-generator -p ste
if: matrix.rust == 'stable'
- run: cargo test --all-features --all-targets -p audio -p audio-core -p audio-generator -p ste
if: matrix.rust == 'stable'
- run: cargo test --no-default-features --all-targets -p audio -p audio-core -p audio-generator
if: matrix.rust == 'stable'
- run: cargo test --all-features --doc -p audio -p audio-core -p audio-generator -p ste
if: matrix.rust == 'stable'

test-wasapi:
runs-on: windows-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ jobs:
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{matrix.rust}}
- run: cargo build --workspace --all-targets
- run: cargo build --all-features -p audio -p audio-core -p audio-generator -p ste

0 comments on commit 6315ef3

Please sign in to comment.