1
0
mirror of https://github.com/containers/youki synced 2024-11-23 17:32:15 +01:00
youki/crates/justfile
Yashodhan 79b6450a86
Replace Makefiles with Just (#1823)
Refactored the build system using `justfile`.

* Use just in CI instead of makefiles

* Remove makefiles completely

* Increase timeout in rust validation
2023-06-05 09:24:33 -07:00

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