Skip to content

Commit 437be17

Browse files
authored
ci: remove --release flags (#187)
1 parent 678a63e commit 437be17

6 files changed

Lines changed: 24 additions & 24 deletions

File tree

.github/workflows/belt-mac.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
with:
3636
toolchain: ${{ matrix.rust }}
3737
targets: ${{ matrix.target }}
38-
- run: cargo build --no-default-features --release --target ${{ matrix.target }}
38+
- run: cargo build --no-default-features --target ${{ matrix.target }}
3939

4040
minimal-versions:
4141
# disabled until belt-block gets published
@@ -57,6 +57,6 @@ jobs:
5757
- uses: dtolnay/rust-toolchain@master
5858
with:
5959
toolchain: ${{ matrix.rust }}
60-
- run: cargo test --release --no-default-features
61-
- run: cargo test --release
62-
- run: cargo test --release --all-features
60+
- run: cargo test --no-default-features
61+
- run: cargo test
62+
- run: cargo test --all-features

.github/workflows/cbc-mac.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
with:
3737
toolchain: ${{ matrix.rust }}
3838
targets: ${{ matrix.target }}
39-
- run: cargo build --no-default-features --release --target ${{ matrix.target }}
39+
- run: cargo build --no-default-features --target ${{ matrix.target }}
4040

4141
minimal-versions:
4242
# disabled until belt-block gets published
@@ -58,6 +58,6 @@ jobs:
5858
- uses: dtolnay/rust-toolchain@master
5959
with:
6060
toolchain: ${{ matrix.rust }}
61-
- run: cargo test --release --no-default-features
62-
- run: cargo test --release
63-
- run: cargo test --release --all-features
61+
- run: cargo test --no-default-features
62+
- run: cargo test
63+
- run: cargo test --all-features

.github/workflows/cmac.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
with:
3636
toolchain: ${{ matrix.rust }}
3737
targets: ${{ matrix.target }}
38-
- run: cargo build --no-default-features --release --target ${{ matrix.target }}
38+
- run: cargo build --no-default-features --target ${{ matrix.target }}
3939

4040
minimal-versions:
4141
# disabled until belt-block gets published
@@ -57,6 +57,6 @@ jobs:
5757
- uses: dtolnay/rust-toolchain@master
5858
with:
5959
toolchain: ${{ matrix.rust }}
60-
- run: cargo test --release --no-default-features
61-
- run: cargo test --release
62-
- run: cargo test --release --all-features
60+
- run: cargo test --no-default-features
61+
- run: cargo test
62+
- run: cargo test --all-features

.github/workflows/hmac.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
with:
3737
toolchain: ${{ matrix.rust }}
3838
targets: ${{ matrix.target }}
39-
- run: cargo build --no-default-features --release --target ${{ matrix.target }}
39+
- run: cargo build --no-default-features --target ${{ matrix.target }}
4040

4141
minimal-versions:
4242
if: false # TODO: temp disabled due to unpublished prerelease dependencies
@@ -57,6 +57,6 @@ jobs:
5757
- uses: dtolnay/rust-toolchain@master
5858
with:
5959
toolchain: ${{ matrix.rust }}
60-
- run: cargo test --release --no-default-features
61-
- run: cargo test --release
62-
- run: cargo test --release --all-features
60+
- run: cargo test --no-default-features
61+
- run: cargo test
62+
- run: cargo test --all-features

.github/workflows/pmac.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
with:
3636
toolchain: ${{ matrix.rust }}
3737
targets: ${{ matrix.target }}
38-
- run: cargo build --no-default-features --release --target ${{ matrix.target }}
38+
- run: cargo build --no-default-features --target ${{ matrix.target }}
3939

4040
minimal-versions:
4141
# disabled until belt-block gets published
@@ -57,6 +57,6 @@ jobs:
5757
- uses: dtolnay/rust-toolchain@master
5858
with:
5959
toolchain: ${{ matrix.rust }}
60-
- run: cargo test --release --no-default-features
61-
- run: cargo test --release
62-
- run: cargo test --release --all-features
60+
- run: cargo test --no-default-features
61+
- run: cargo test
62+
- run: cargo test --all-features

.github/workflows/retail-mac.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
with:
3636
toolchain: ${{ matrix.rust }}
3737
targets: ${{ matrix.target }}
38-
- run: cargo build --no-default-features --release --target ${{ matrix.target }}
38+
- run: cargo build --no-default-features --target ${{ matrix.target }}
3939

4040
minimal-versions:
4141
# disabled until belt-block gets published
@@ -57,6 +57,6 @@ jobs:
5757
- uses: dtolnay/rust-toolchain@master
5858
with:
5959
toolchain: ${{ matrix.rust }}
60-
- run: cargo test --release --no-default-features
61-
- run: cargo test --release
62-
- run: cargo test --release --all-features
60+
- run: cargo test --no-default-features
61+
- run: cargo test
62+
- run: cargo test --all-features

0 commit comments

Comments
 (0)