Skip to content

Commit

Permalink
ci: add ubuntu/crun workaround to release workflow (like ci+qa)
Browse files Browse the repository at this point in the history
Thanks for the pointer, Andreas!
  • Loading branch information
natoscott committed May 14, 2024
1 parent d3b77c3 commit c270776
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,13 @@ jobs:
run: |
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
sudo cp /tmp/crun /usr/bin/crun
build/ci/ci-run.py ${{ matrix.platform }} setup
Expand Down

0 comments on commit c270776

Please sign in to comment.