1
0
Fork 0
mirror of https://github.com/containers/youki synced 2024-05-04 06:36:15 +02:00
youki/Makefile
utam0k 0758953fd7
Remove the build dependency from some tests.
Signed-off-by: utam0k <k0ma@utam0k.jp>
2022-05-09 21:10:14 +09:00

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)