diff --git a/.github/actions/bootc-ubuntu-setup/action.yml b/.github/actions/bootc-ubuntu-setup/action.yml index 8e0178b71..15073595a 100644 --- a/.github/actions/bootc-ubuntu-setup/action.yml +++ b/.github/actions/bootc-ubuntu-setup/action.yml @@ -79,17 +79,15 @@ runs: GH_TOKEN: ${{ github.token }} run: | set -xeuo pipefail - export BCVK_VERSION=0.6.0 + export BCVK_VERSION=0.8.0 /bin/time -f '%E %C' sudo apt install -y libkrb5-dev pkg-config libvirt-dev genisoimage qemu-utils qemu-kvm virtiofsd libvirt-daemon-system # Something in the stack is overriding this, but we want session right now for bcvk echo LIBVIRT_DEFAULT_URI=qemu:///session >> $GITHUB_ENV td=$(mktemp -d) cd $td - # Install bcvk from PR 159 - gh run download 19640807620 --name bcvk-binary --repo bootc-dev/bcvk - target=bcvk-$(arch)-unknown-linux-gnu - tar xzf ${target}.tar.gz - sudo install -T ${target} /usr/bin/bcvk + # Install bcvk + gh run download 19682860308 --name bcvk-binary-tests --repo bootc-dev/bcvk + sudo install -T bcvk /usr/bin/bcvk cd - rm -rf "$td"