Skip to content

Commit

Permalink
Update CI to do release builds since testing does debug builds anyway
Browse files Browse the repository at this point in the history
  • Loading branch information
alisomay committed Nov 28, 2024
1 parent 28b0a62 commit 0c2321b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- uses: actions/checkout@v3
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: sudo apt install libasound2-dev && sudo apt install alsa-utils
- run: cargo build --verbose
- run: cargo build --verbose --release
- run: cargo test -- --nocapture

- uses: actions-rs/[email protected]
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: cargo build --verbose
- run: cargo build --verbose --release
- run: cargo test -- --nocapture

build_and_test_windows:
Expand All @@ -67,5 +67,5 @@ jobs:
steps:
- uses: actions/checkout@v3
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: cargo build --verbose
- run: cargo build --verbose --release
- run: cargo test -- --nocapture

0 comments on commit 0c2321b

Please sign in to comment.