All checks were successful
ci/woodpecker/push/debug Pipeline was successful
ci/woodpecker/pr/debug Pipeline was successful
ci/woodpecker/deployment/debug Pipeline was successful
ci/woodpecker/deployment/release/3 Pipeline was successful
ci/woodpecker/deployment/release/2 Pipeline was successful
ci/woodpecker/deployment/release/1 Pipeline was successful
ci/woodpecker/deployment/release/4 Pipeline was successful
ci/woodpecker/deployment/publish Pipeline was successful
24 lines
705 B
Makefile
24 lines
705 B
Makefile
.PHONY: doc all run1 run2 run3
|
|
|
|
all:
|
|
clear
|
|
cargo build \
|
|
--config 'target.x86_64-unknown-linux-gnu.linker="clang"' \
|
|
--config 'target.x86_64-unknown-linux-gnu.rustflags=["-C", "link-arg=-fuse-ld=mold"]' \
|
|
|
|
# ----
|
|
|
|
run1:
|
|
RUST_LOG=garage=debug ./target/debug/garage -c tmp/config1.toml server
|
|
run1rel:
|
|
RUST_LOG=garage=debug ./target/release/garage -c tmp/config1.toml server
|
|
|
|
run2:
|
|
RUST_LOG=garage=debug ./target/debug/garage -c tmp/config2.toml server
|
|
run2rel:
|
|
RUST_LOG=garage=debug ./target/release/garage -c tmp/config2.toml server
|
|
|
|
run3:
|
|
RUST_LOG=garage=debug ./target/debug/garage -c tmp/config3.toml server
|
|
run3rel:
|
|
RUST_LOG=garage=debug ./target/release/garage -c tmp/config3.toml server
|