Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix the missed naming changes in integration test validation CI #2629

Merged
merged 1 commit into from
Jan 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/integration_tests_validation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@ jobs:
uses: taiki-e/install-action@just
- name: Install requirements
run: sudo env PATH=$PATH just ci-prepare
- name: Install runc 1.1.0
- name: Install runc 1.1.11
run: |
wget -q https://github.com/opencontainers/runc/releases/download/v1.1.0/runc.amd64
wget -q https://github.com/opencontainers/runc/releases/download/v1.1.11/runc.amd64
sudo mv runc.amd64 /usr/bin/runc
sudo chmod 755 /usr/bin/runc
- name: Build
run: just runtimetest rust-oci-tests-bin
run: just runtimetest contest
- name: Validate tests on runc
run: just validate-rust-oci-runc
run: just validate-contest-runc
4 changes: 2 additions & 2 deletions docs/src/developer/e2e/rust_oci_test.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# rust oci tests
# Contest

This is youki's original integration to verify the behavior of the low-level container runtime.

Expand All @@ -7,7 +7,7 @@ This is youki's original integration to verify the behavior of the low-level con
# How to run

```console
just rust-oci-tests
just test-contest
```

# How to write
Expand Down
2 changes: 1 addition & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ test-contest: youki-release contest

# validate rust oci integration tests on runc
validate-contest-runc: contest
{{ cwd }}/scripts/rust_integration_tests.sh runc
{{ cwd }}/scripts/contest.sh runc

# test podman rootless works with youki
test-rootless-podman:
Expand Down