GitHub Actions: use Linux runners for nested virt

"Larger" runners are no longer needed for Linux with nested virt.

Replaces PR 3382

Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
This commit is contained in:
Akihiro Suda
2024-01-19 12:31:18 +09:00
parent 40c81f1874
commit f182ab2780
2 changed files with 10 additions and 4 deletions

2
hack/ci/Vagrantfile vendored
View File

@@ -8,9 +8,7 @@ Vagrant.configure("2") do |config|
# Mirrors can be found at here: https://admin.fedoraproject.org/mirrormanager/mirrors/Fedora/37/x86_64
config.vm.box = "dummy"
config.vm.box_url = "https://iad.mirror.rackspace.com/fedora/releases/37/Cloud/x86_64/images/Fedora-Cloud-Base-Vagrant-37-1.7.x86_64.vagrant-virtualbox.box"
# macOS github actions runners have 3 cores and 14 GB of ram
# assume some ram is needed for the host environment but very little CPU
# https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners
memory = 10240
cpus = 3
config.vm.provider :virtualbox do |v|