mirror of
https://github.com/gitui-org/gitui
synced 2026-05-23 08:58:21 +00:00
use locked on release builds
This commit is contained in:
parent
43fac4f12a
commit
23d6cbe0f2
1 changed files with 5 additions and 5 deletions
10
Makefile
10
Makefile
|
|
@ -50,13 +50,13 @@ build-apple-x86-debug:
|
|||
cargo build --target=x86_64-apple-darwin
|
||||
|
||||
build-apple-x86-release:
|
||||
cargo build --release --target=x86_64-apple-darwin
|
||||
cargo build --release --target=x86_64-apple-darwin --locked
|
||||
|
||||
build-linux-musl-debug:
|
||||
cargo build --target=x86_64-unknown-linux-musl
|
||||
|
||||
build-linux-musl-release:
|
||||
cargo build --release --target=x86_64-unknown-linux-musl
|
||||
cargo build --release --target=x86_64-unknown-linux-musl --locked
|
||||
|
||||
test-linux-musl:
|
||||
cargo test --workspace --target=x86_64-unknown-linux-musl
|
||||
|
|
@ -78,9 +78,9 @@ build-linux-arm-debug:
|
|||
cargo build --target=arm-unknown-linux-gnueabihf
|
||||
|
||||
build-linux-arm-release:
|
||||
cargo build --release --target=aarch64-unknown-linux-gnu
|
||||
cargo build --release --target=armv7-unknown-linux-gnueabihf
|
||||
cargo build --release --target=arm-unknown-linux-gnueabihf
|
||||
cargo build --release --target=aarch64-unknown-linux-gnu --locked
|
||||
cargo build --release --target=armv7-unknown-linux-gnueabihf --locked
|
||||
cargo build --release --target=arm-unknown-linux-gnueabihf --locked
|
||||
|
||||
test:
|
||||
cargo test --workspace
|
||||
|
|
|
|||
Loading…
Reference in a new issue