Skip to content

Commit

Permalink
Update runc binary to main branch from 1.1.0 for domainname test
Browse files Browse the repository at this point in the history
Signed-off-by: higuruchi <fumiya2324@gmail.com>
  • Loading branch information
higuruchi committed Jul 28, 2023
1 parent 5710749 commit 8d8e545
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/integration_tests_validation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8d8e545

Please sign in to comment.