File tree Expand file tree Collapse file tree 1 file changed +5
-8
lines changed
.github/actions/bootc-ubuntu-setup Expand file tree Collapse file tree 1 file changed +5
-8
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments