Skip to content

Commit

Permalink
Merge pull request containerd#8930 from AkihiroSuda/rocky8.8
Browse files Browse the repository at this point in the history
  • Loading branch information
fuweid authored Aug 14, 2023
2 parents 5e051f5 + 90443f0 commit 36b8719
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -531,8 +531,7 @@ jobs:
matrix:
box:
- fedora/38-cloud-base
# v7.0.0 does not boot. v6.0.0 was not released.
- rockylinux/[email protected]
- rockylinux/[email protected]
env:
BOX: ${{ matrix.box }}

Expand Down
2 changes: 2 additions & 0 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,13 @@ Vagrant.configure("2") do |config|
v.cpus = cpus
# Needs env var VAGRANT_EXPERIMENTAL="disks"
o.vm.disk :disk, size: "#{disk_size}GB", primary: true
v.customize ["modifyvm", :id, "--firmware", "efi"]
end
config.vm.provider :libvirt do |v|
v.memory = memory
v.cpus = cpus
v.machine_virtual_size = disk_size
v.loader = "/usr/share/OVMF/OVMF_CODE.fd"
end

config.vm.synced_folder ".", "/vagrant", type: "rsync"
Expand Down
2 changes: 2 additions & 0 deletions script/resize-vagrant-root.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ if [[ "$df_line" =~ ^/dev/([a-z]+)([0-9+]) ]]; then
echo "Unknown filesystem: $df_line"
exit 1
fi
elif [[ "$df_line" =~ ^/dev/mapper/ ]]; then
echo "TODO: support device mapper: $df_line"
else
echo "Failed to parse: $df_line"
exit 1
Expand Down

0 comments on commit 36b8719

Please sign in to comment.