Skip to content

Commit 23d6cbe

Browse files
committed
use locked on release builds
1 parent 43fac4f commit 23d6cbe

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,13 @@ build-apple-x86-debug:
5050
cargo build --target=x86_64-apple-darwin
5151

5252
build-apple-x86-release:
53-
cargo build --release --target=x86_64-apple-darwin
53+
cargo build --release --target=x86_64-apple-darwin --locked
5454

5555
build-linux-musl-debug:
5656
cargo build --target=x86_64-unknown-linux-musl
5757

5858
build-linux-musl-release:
59-
cargo build --release --target=x86_64-unknown-linux-musl
59+
cargo build --release --target=x86_64-unknown-linux-musl --locked
6060

6161
test-linux-musl:
6262
cargo test --workspace --target=x86_64-unknown-linux-musl
@@ -78,9 +78,9 @@ build-linux-arm-debug:
7878
cargo build --target=arm-unknown-linux-gnueabihf
7979

8080
build-linux-arm-release:
81-
cargo build --release --target=aarch64-unknown-linux-gnu
82-
cargo build --release --target=armv7-unknown-linux-gnueabihf
83-
cargo build --release --target=arm-unknown-linux-gnueabihf
81+
cargo build --release --target=aarch64-unknown-linux-gnu --locked
82+
cargo build --release --target=armv7-unknown-linux-gnueabihf --locked
83+
cargo build --release --target=arm-unknown-linux-gnueabihf --locked
8484

8585
test:
8686
cargo test --workspace

0 commit comments

Comments
 (0)