From 0c2321b88a47a47529394f0a1ae48d8432b79645 Mon Sep 17 00:00:00 2001 From: Ali Somay Date: Thu, 28 Nov 2024 23:38:23 +0100 Subject: [PATCH] Update CI to do release builds since testing does debug builds anyway --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4ff7194..ab51217 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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/tarpaulin@v0.1 @@ -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: @@ -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