Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions .github/actions/bootc-ubuntu-setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this part is unnecesary now.

BTW, the next run of https://github.com/bootc-dev/infra/actions/workflows/sync-common.yml should have done a PR to sync, but it failed. I'm looking at that.

In this PR you can just do it manually - update this action.yml to exactly what's in the infra repo.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OH, I know.

sudo install -T bcvk /usr/bin/bcvk
cd -
rm -rf "$td"

Expand Down
Loading