mirror of
https://github.com/containers/youki
synced 2024-11-23 09:21:57 +01:00
0758953fd7
Signed-off-by: utam0k <k0ma@utam0k.jp>
25 lines
464 B
Makefile
25 lines
464 B
Makefile
ROOT = $(shell git rev-parse --show-toplevel)
|
|
|
|
build:
|
|
./scripts/build.sh -o $(ROOT)
|
|
|
|
release-build:
|
|
./scripts/build.sh -o $(ROOT) -r
|
|
|
|
test-all: test oci-integration-test integration-test
|
|
|
|
test: build
|
|
cd crates && cargo test
|
|
|
|
oci-integration-test:
|
|
./scripts/oci_integration_tests.sh $(ROOT)
|
|
|
|
integration-test:
|
|
./scripts/rust_integration_tests.sh $(ROOT)/youki
|
|
|
|
validate-rust-tests:
|
|
./scripts/rust_integration_tests.sh runc
|
|
|
|
clean:
|
|
./scripts/clean.sh $(ROOT)
|