From 7dc76a7f40f37f789ec65ddbce9ae9a8ad660f8c Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Tue, 1 Aug 2017 04:46:31 +0200 Subject: [PATCH] vagrant: add archlinux VM has python 3.6, openssl 1.1. and most of the stuff we need is preinstalled on this box. \o/ --- Vagrantfile | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/Vagrantfile b/Vagrantfile index 669c0975a..cda88c266 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -34,6 +34,14 @@ def packages_debianoid EOF end +def packages_arch + return <<-EOF + chown vagrant.vagrant /vagrant + pacman --sync --noconfirm python-virtualenv python-pip + touch ~vagrant/.bash_profile ; chown vagrant ~vagrant/.bash_profile + EOF +end + def install_pyenv(boxname) script = <<-EOF curl -s -L https://raw.githubusercontent.com/yyuu/pyenv-installer/master/bin/pyenv-installer | bash @@ -203,6 +211,17 @@ Vagrant.configure(2) do |config| b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("stretch64") end + config.vm.define "arch64" do |b| + b.vm.box = "terrywang/archlinux" + b.vm.provider :virtualbox do |v| + v.memory = 1024 + $wmem + end + b.vm.provision "packages arch", :type => :shell, :privileged => true, :inline => packages_arch + b.vm.provision "build env", :type => :shell, :privileged => false, :inline => build_sys_venv("arch64") + b.vm.provision "install borg", :type => :shell, :privileged => false, :inline => install_borg(true) + b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("arch64") + end + # TODO: create more VMs with python 3.5+ and openssl 1.1. # See branch 1.1-maint for a better equipped Vagrantfile (but still on py34 and openssl 1.0). end