Skip to content

Commit f6760e9

Browse files
committed
ci: install bcvk 0.9.0
Signed-off-by: Huijing Hei <hhei@redhat.com>
1 parent 0a680f1 commit f6760e9

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

.github/actions/bootc-ubuntu-setup/action.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -69,20 +69,17 @@ runs:
6969
GH_TOKEN: ${{ github.token }}
7070
run: |
7171
set -xeuo pipefail
72-
export BCVK_VERSION=0.8.0
72+
export BCVK_VERSION=0.9.0
7373
/bin/time -f '%E %C' sudo apt install -y libkrb5-dev pkg-config libvirt-dev genisoimage qemu-utils qemu-kvm virtiofsd libvirt-daemon-system python3-virt-firmware
7474
# Something in the stack is overriding this, but we want session right now for bcvk
7575
echo LIBVIRT_DEFAULT_URI=qemu:///session >> $GITHUB_ENV
7676
td=$(mktemp -d)
7777
cd $td
78-
# Install bcvk from PR 172
79-
gh run download 20107212783 --name bcvk-binary-tests --repo bootc-dev/bcvk
80-
sudo install -m 755 bcvk /usr/bin/bcvk
8178
# Install bcvk from release
82-
# target=bcvk-$(arch)-unknown-linux-gnu
83-
# /bin/time -f '%E %C' curl -LO https://github.com/bootc-dev/bcvk/releases/download/v${BCVK_VERSION}/${target}.tar.gz
84-
# tar xzf ${target}.tar.gz
85-
# sudo install -T ${target} /usr/bin/bcvk
79+
target=bcvk-$(arch)-unknown-linux-gnu
80+
/bin/time -f '%E %C' curl -LO https://github.com/bootc-dev/bcvk/releases/download/v${BCVK_VERSION}/${target}.tar.gz
81+
tar xzf ${target}.tar.gz
82+
sudo install -T ${target} /usr/bin/bcvk
8683
cd -
8784
rm -rf "$td"
8885

0 commit comments

Comments
 (0)