mirror of
https://github.com/containers/youki
synced 2024-11-23 17:32:15 +01:00
79b6450a86
Refactored the build system using `justfile`. * Use just in CI instead of makefiles * Remove makefiles completely * Increase timeout in rust validation
15 lines
284 B
Makefile
15 lines
284 B
Makefile
|
|
# build debug version of youki
|
|
debug:
|
|
cargo build
|
|
cp ./target/debug/youki ./youki_bin
|
|
|
|
# build release version of youki
|
|
release:
|
|
cargo build --release
|
|
cp ./target/release/youki ./youki_bin
|
|
|
|
# clean the generated artifacts
|
|
clean:
|
|
rm -f ./youki_bin
|
|
cargo clean
|