From 5d1a32a7b6837531e5715a224098c3db331de491 Mon Sep 17 00:00:00 2001 From: Ken McDonell Date: Fri, 23 Feb 2024 20:37:00 +1100 Subject: [PATCH] .github/workflows/qa.yml: include crun "workaround" from ci.yml --- .github/workflows/qa.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/qa.yml b/.github/workflows/qa.yml index 325ee1e48a..647f8ca57e 100644 --- a/.github/workflows/qa.yml +++ b/.github/workflows/qa.yml @@ -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 + sudo cp /tmp/crun /usr/bin/crun build/ci/ci-run.py ${{ matrix.platform }} setup