1
0
Fork 0
mirror of https://github.com/containers/youki synced 2024-05-10 01:26:14 +02:00
This commit is contained in:
Yashodhan Joshi 2022-03-28 19:33:54 +05:30
parent f38639c84b
commit 167bf29772
2 changed files with 6 additions and 1 deletions

View File

@ -42,7 +42,9 @@ jobs:
wget -q https://github.com/opencontainers/runc/releases/download/v1.1.0/runc.amd64
sudo mv runc.amd64 /usr/bin/runc
sudo chmod 755 /usr/bin/runc
- name: Build youki and tests
run: ./scripts/build.sh -o "$(git rev-parse --show-toplevel)"/scripts -r
- name: Validate tests on runc
run: cd scripts && ./rust_integration_tests.sh runc
run: make validate-rust-tests
- name: Validate tests on youki
run: make integration-test

View File

@ -17,5 +17,8 @@ oci-integration-test: release-build
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)