1
0
Fork 0
mirror of https://github.com/containers/youki synced 2024-05-10 01:26:14 +02:00
youki/Makefile
Yashodhan Joshi 167bf29772 Fix CI
2022-03-29 20:29:27 +05:30

25 lines
506 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: release-build
./scripts/oci_integration_tests.sh $(ROOT)
integration-test: release-build
./scripts/rust_integration_tests.sh $(ROOT)/youki
validate-rust-tests: release-build
./scripts/rust_integration_tests.sh runc
clean:
./scripts/clean.sh $(ROOT)