mirror of
https://github.com/containers/youki
synced 2024-11-23 17:32:15 +01:00
19 lines
359 B
Makefile
19 lines
359 B
Makefile
|
ROOT = $(shell git rev-parse --show-toplevel)
|
||
|
|
||
|
build:
|
||
|
./scripts/build.sh $(ROOT)
|
||
|
|
||
|
test-all: test oci-integration-test integration-test
|
||
|
|
||
|
test: build
|
||
|
cd crates && cargo test
|
||
|
|
||
|
oci-integration-test: build
|
||
|
./scripts/oci_integration_tests.sh $(ROOT)
|
||
|
|
||
|
integration-test: build
|
||
|
./scripts/rust_integration_tests.sh $(ROOT)/youki
|
||
|
|
||
|
clean:
|
||
|
./scripts/clean.sh $(ROOT)
|