summaryrefslogtreecommitdiffstats
path: root/Vagrantfile
diff options
context:
space:
mode:
authorbbx0 <39773919+bbx0@users.noreply.github.com>2023-03-26 21:01:13 +0200
committerbbx0 <39773919+bbx0@users.noreply.github.com>2023-03-26 21:01:13 +0200
commitaf66cf4010de04ce3be84e9fa3161e88af51d4bc (patch)
tree7aec4a537cd300ce924ad41720b54f51e083027a /Vagrantfile
parent57262499baecb4af5564d746c175f7dbb6018c0f (diff)
Add stretch64 VM with deps built from source
Diffstat (limited to 'Vagrantfile')
-rw-r--r--Vagrantfile17
1 files changed, 17 insertions, 0 deletions
diff --git a/Vagrantfile b/Vagrantfile
index 8b2b9de0e..a0a0db4bf 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -418,6 +418,23 @@ Vagrant.configure(2) do |config|
b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("buster64", ".*none.*")
end
+ config.vm.define "stretch64" do |b|
+ b.vm.box = "debian/stretch64"
+ 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 "install source dependencies", :type => :shell, :privileged => true, :inline => install_source_dependencies("vagrant")
+ b.vm.provision "install pyenv", :type => :shell, :privileged => false, :inline => install_pyenv("stretch64")
+ b.vm.provision "install pythons", :type => :shell, :privileged => false, :inline => install_pythons("stretch64")
+ b.vm.provision "build env", :type => :shell, :privileged => false, :inline => build_pyenv_venv("stretch64")
+ b.vm.provision "install borg", :type => :shell, :privileged => false, :inline => install_borg("llfuse")
+ b.vm.provision "install pyinstaller", :type => :shell, :privileged => false, :inline => install_pyinstaller()
+ b.vm.provision "build binary with pyinstaller", :type => :shell, :privileged => false, :inline => build_binary_with_pyinstaller("stretch64")
+ b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("stretch64", ".*none.*")
+ end
+
config.vm.define "freebsd64" do |b|
b.vm.box = "generic/freebsd13"
b.vm.provider :virtualbox do |v|