From ae6b2f6aa62c766636f2ba40f0aa7d50e00f2cf9 Mon Sep 17 00:00:00 2001 From: Xiaofeng Wang Date: Tue, 2 Dec 2025 15:04:26 +0800 Subject: [PATCH] ci: Pin bcvk to 0.8.0 Signed-off-by: Xiaofeng Wang --- .github/actions/bootc-ubuntu-setup/action.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) 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"