Skip to content

Commit

Permalink
.github/workflows/ci.yml: try crun workaround
Browse files Browse the repository at this point in the history
  • Loading branch information
kmcdonell committed Feb 23, 2024
1 parent 03bcf9c commit ab717b1
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,12 @@ jobs:
python3 -c 'import yaml' || pip3 install pyyaml
mkdir -p artifacts/build artifacts/test
touch artifacts/build/.keep
# crun >= 1.9.1 is required on Ubuntu 20.04.6
# this workaround came from ...
# https://github.com/kubernetes-sigs/kind/pull/3527
curl -sLo /tmp/crun https://github.com/containers/crun/releases/download/1.14.3/crun-1.14.3-linux-amd64
chmod +x /tmp/crun
cp /tmp/crun /usr/bin/crun

build/ci/ci-run.py ${{ matrix.platform }} setup

Expand Down

0 comments on commit ab717b1

Please sign in to comment.