From 8d8e54506a4bb510de5f114272932560cf5057cf Mon Sep 17 00:00:00 2001 From: higuruchi Date: Fri, 28 Jul 2023 17:06:01 +0900 Subject: [PATCH] Update runc binary to main branch from 1.1.0 for domainname test Signed-off-by: higuruchi --- .github/workflows/integration_tests_validation.yaml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integration_tests_validation.yaml b/.github/workflows/integration_tests_validation.yaml index 8961a6406d..98558e2f87 100644 --- a/.github/workflows/integration_tests_validation.yaml +++ b/.github/workflows/integration_tests_validation.yaml @@ -41,11 +41,18 @@ jobs: uses: taiki-e/install-action@just - name: Install requirements run: sudo env PATH=$PATH just ci-prepare + - name: Download runc code + uses: actions/checkout@v3 + with: + repository: opencontainers/runc + path: runc + - name: Build runc + run: | + cd runc + make - name: Install runc 1.1.0 run: | - 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 + sudo install ./runc/runc /usr/bin/runc - name: Build run: just runtimetest rust-oci-tests-bin - name: Validate tests on runc