Merge pull request #6335 from ThomasWaldmann/vagrant-jammy

vagrant: add ubuntu "jammy" 22.04 LTS VM
This commit is contained in:
TW 2022-02-22 15:36:53 +01:00 committed by GitHub
commit 561b164540
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 13 additions and 1 deletions

14
Vagrantfile vendored
View File

@ -269,6 +269,18 @@ Vagrant.configure(2) do |config|
v.cpus = $cpus v.cpus = $cpus
end end
config.vm.define "jammy64" do |b|
b.vm.box = "ubuntu/jammy64"
b.vm.provider :virtualbox do |v|
v.memory = 1024 + $wmem
end
b.vm.provision "fs init", :type => :shell, :inline => fs_init("vagrant")
b.vm.provision "packages debianoid", :type => :shell, :inline => packages_debianoid("vagrant")
b.vm.provision "build env", :type => :shell, :privileged => false, :inline => build_sys_venv("jammy64")
b.vm.provision "install borg", :type => :shell, :privileged => false, :inline => install_borg("llfuse")
b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("jammy64", ".*none.*")
end
config.vm.define "focal64" do |b| config.vm.define "focal64" do |b|
b.vm.box = "ubuntu/focal64" b.vm.box = "ubuntu/focal64"
b.vm.provider :virtualbox do |v| b.vm.provider :virtualbox do |v|
@ -410,6 +422,6 @@ Vagrant.configure(2) do |config|
b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("openindiana64", ".*fuse.*") b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("openindiana64", ".*fuse.*")
end end
# TODO: create more VMs with python 3.8+ and openssl 1.1. # TODO: create more VMs with python 3.8+ and openssl 1.1 or 3.0.
# See branch 1.1-maint for a better equipped Vagrantfile (but still on py35 and openssl 1.0). # See branch 1.1-maint for a better equipped Vagrantfile (but still on py35 and openssl 1.0).
end end