2015-09-12 20:13:17 +03:00
|
|
|
# -*- mode: ruby -*-
|
|
|
|
# vi: set ft=ruby :
|
|
|
|
|
2015-09-30 18:42:20 +03:00
|
|
|
# Automated creation of testing environments / binaries on misc. platforms
|
2015-09-16 00:45:12 +03:00
|
|
|
|
2017-06-02 03:29:05 +03:00
|
|
|
$cpus = Integer(ENV.fetch('VMCPUS', '4')) # create VMs with that many cpus
|
|
|
|
$xdistn = Integer(ENV.fetch('XDISTN', '4')) # dispatch tests to that many pytest workers
|
|
|
|
$wmem = $xdistn * 256 # give the VM additional memory for workers [MB]
|
|
|
|
|
2017-09-04 22:33:23 +03:00
|
|
|
def packages_debianoid(user)
|
2015-09-20 23:22:40 +03:00
|
|
|
return <<-EOF
|
2018-06-27 00:27:35 +03:00
|
|
|
apt update
|
2016-03-05 22:12:28 +03:00
|
|
|
# install all the (security and other) updates
|
2018-06-27 00:27:35 +03:00
|
|
|
apt dist-upgrade -y
|
2015-09-28 01:05:52 +03:00
|
|
|
# for building borgbackup and dependencies:
|
2019-03-16 03:56:22 +03:00
|
|
|
apt install -y libssl-dev libacl1-dev liblz4-dev libzstd-dev libfuse-dev fuse pkg-config
|
2017-09-04 22:33:23 +03:00
|
|
|
usermod -a -G fuse #{user}
|
2016-09-04 04:01:29 +03:00
|
|
|
chgrp fuse /dev/fuse
|
|
|
|
chmod 666 /dev/fuse
|
2018-06-27 02:44:44 +03:00
|
|
|
apt install -y fakeroot build-essential git curl
|
2018-06-27 00:27:35 +03:00
|
|
|
apt install -y python3-dev python3-setuptools python-virtualenv python3-virtualenv
|
2015-10-03 04:10:12 +03:00
|
|
|
# for building python:
|
2018-06-27 02:44:44 +03:00
|
|
|
apt install -y zlib1g-dev libbz2-dev libncurses5-dev libreadline-dev liblzma-dev libsqlite3-dev libffi-dev
|
2015-09-12 20:13:17 +03:00
|
|
|
EOF
|
|
|
|
end
|
|
|
|
|
2017-08-01 05:46:31 +03:00
|
|
|
def packages_arch
|
|
|
|
return <<-EOF
|
2018-06-23 01:17:10 +03:00
|
|
|
echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen
|
|
|
|
locale-gen
|
|
|
|
localectl set-locale LANG=en_US.UTF-8
|
2017-08-01 05:46:31 +03:00
|
|
|
chown vagrant.vagrant /vagrant
|
2018-07-07 01:55:28 +03:00
|
|
|
pacman --sync --noconfirm --refresh python-virtualenv python-pip
|
2017-08-01 05:46:31 +03:00
|
|
|
EOF
|
|
|
|
end
|
|
|
|
|
2018-06-23 04:31:25 +03:00
|
|
|
def packages_freebsd
|
|
|
|
return <<-EOF
|
|
|
|
# in case the VM has no hostname set
|
|
|
|
hostname freebsd
|
|
|
|
# install all the (security and other) updates, base system
|
|
|
|
freebsd-update --not-running-from-cron fetch install
|
|
|
|
# for building borgbackup and dependencies:
|
2019-02-28 23:37:35 +03:00
|
|
|
pkg install -y liblz4 zstd fusefs-libs pkgconf
|
2018-07-04 03:51:04 +03:00
|
|
|
pkg install -y git bash # fakeroot causes lots of troubles on freebsd
|
2018-06-23 04:31:25 +03:00
|
|
|
# for building python:
|
|
|
|
pkg install -y sqlite3
|
|
|
|
pkg install -y py27-virtualenv # provides "virtualenv" command
|
|
|
|
pkg install -y python36 py36-virtualenv py36-pip
|
|
|
|
# make sure there is a python3 command
|
|
|
|
ln -s /usr/local/bin/python3.6 /usr/local/bin/python3
|
|
|
|
# make bash default / work:
|
|
|
|
chsh -s bash vagrant
|
|
|
|
mount -t fdescfs fdesc /dev/fd
|
|
|
|
echo 'fdesc /dev/fd fdescfs rw 0 0' >> /etc/fstab
|
|
|
|
# make FUSE work
|
|
|
|
echo 'fuse_load="YES"' >> /boot/loader.conf
|
|
|
|
echo 'vfs.usermount=1' >> /etc/sysctl.conf
|
|
|
|
kldload fuse
|
|
|
|
sysctl vfs.usermount=1
|
|
|
|
pw groupmod operator -M vagrant
|
|
|
|
# /dev/fuse has group operator
|
|
|
|
chmod 666 /dev/fuse
|
|
|
|
# install all the (security and other) updates, packages
|
|
|
|
pkg update
|
|
|
|
yes | pkg upgrade
|
2019-03-16 03:56:22 +03:00
|
|
|
echo 'export BORG_OPENSSL_PREFIX=/usr' >> ~vagrant/.bash_profile
|
2018-06-23 04:31:25 +03:00
|
|
|
EOF
|
|
|
|
end
|
|
|
|
|
2019-03-01 20:29:11 +03:00
|
|
|
def packages_openbsd
|
|
|
|
return <<-EOF
|
|
|
|
pkg_add bash
|
|
|
|
chsh -s /usr/local/bin/bash vagrant
|
|
|
|
pkg_add lz4
|
|
|
|
pkg_add zstd
|
|
|
|
pkg_add git # no fakeroot
|
|
|
|
pkg_add py3-pip
|
|
|
|
pkg_add py3-virtualenv
|
|
|
|
ln -sf /usr/local/bin/virtualenv-3 /usr/local/bin/virtualenv
|
|
|
|
EOF
|
|
|
|
end
|
|
|
|
|
2018-07-04 03:51:04 +03:00
|
|
|
def packages_darwin
|
|
|
|
return <<-EOF
|
|
|
|
# install all the (security and other) updates
|
|
|
|
sudo softwareupdate --ignore iTunesX
|
|
|
|
sudo softwareupdate --ignore iTunes
|
|
|
|
sudo softwareupdate --ignore "Install macOS High Sierra"
|
|
|
|
sudo softwareupdate --install --all
|
|
|
|
# get osxfuse 3.x release code from github:
|
2019-03-01 17:38:06 +03:00
|
|
|
curl -s -L https://github.com/osxfuse/osxfuse/releases/download/osxfuse-3.8.3/osxfuse-3.8.3.dmg >osxfuse.dmg
|
2018-07-04 03:51:04 +03:00
|
|
|
MOUNTDIR=$(echo `hdiutil mount osxfuse.dmg | tail -1 | awk '{$1="" ; print $0}'` | xargs -0 echo) \
|
2019-03-01 17:38:06 +03:00
|
|
|
&& sudo installer -pkg "${MOUNTDIR}/Extras/FUSE for macOS 3.8.3.pkg" -target /
|
2018-07-04 03:51:04 +03:00
|
|
|
sudo chown -R vagrant /usr/local # brew must be able to create stuff here
|
|
|
|
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
|
2019-03-16 03:56:22 +03:00
|
|
|
brew update > /dev/null
|
|
|
|
brew install pkg-config
|
|
|
|
brew install readline
|
2019-04-21 21:23:18 +03:00
|
|
|
brew install openssl@1.1
|
2019-03-01 17:41:52 +03:00
|
|
|
brew install zstd
|
2018-07-04 03:51:04 +03:00
|
|
|
brew install lz4
|
|
|
|
brew install xz # required for python lzma module
|
|
|
|
brew install fakeroot
|
|
|
|
brew install git
|
2019-04-21 21:23:18 +03:00
|
|
|
echo 'export PKG_CONFIG_PATH=/usr/local/opt/openssl@1.1/lib/pkgconfig' >> ~vagrant/.bash_profile
|
2018-07-04 03:51:04 +03:00
|
|
|
EOF
|
|
|
|
end
|
|
|
|
|
2015-09-28 01:05:52 +03:00
|
|
|
def install_pyenv(boxname)
|
2017-09-04 22:33:23 +03:00
|
|
|
return <<-EOF
|
2015-09-28 01:05:52 +03:00
|
|
|
curl -s -L https://raw.githubusercontent.com/yyuu/pyenv-installer/master/bin/pyenv-installer | bash
|
2017-07-30 03:01:10 +03:00
|
|
|
echo 'export PATH="$HOME/.pyenv/bin:$PATH"' >> ~/.bash_profile
|
2015-09-28 01:05:52 +03:00
|
|
|
echo 'eval "$(pyenv init -)"' >> ~/.bash_profile
|
|
|
|
echo 'eval "$(pyenv virtualenv-init -)"' >> ~/.bash_profile
|
|
|
|
echo 'export PYTHON_CONFIGURE_OPTS="--enable-shared"' >> ~/.bash_profile
|
2015-09-12 20:13:17 +03:00
|
|
|
EOF
|
|
|
|
end
|
|
|
|
|
2015-09-28 01:05:52 +03:00
|
|
|
def fix_pyenv_darwin(boxname)
|
2015-09-12 20:13:17 +03:00
|
|
|
return <<-EOF
|
2015-09-28 01:05:52 +03:00
|
|
|
echo 'export PYTHON_CONFIGURE_OPTS="--enable-framework"' >> ~/.bash_profile
|
|
|
|
EOF
|
|
|
|
end
|
2015-09-12 20:13:17 +03:00
|
|
|
|
2015-09-28 01:05:52 +03:00
|
|
|
def install_pythons(boxname)
|
|
|
|
return <<-EOF
|
|
|
|
. ~/.bash_profile
|
2019-04-21 21:23:18 +03:00
|
|
|
pyenv install 3.7.0 # tests, version supporting openssl 1.1
|
|
|
|
pyenv install 3.6.8 # binary build, tests, version supporting openssl 1.1
|
|
|
|
pyenv install 3.5.3 # tests, 3.5.3 is first to support openssl 1.1
|
2015-09-28 01:05:52 +03:00
|
|
|
pyenv rehash
|
|
|
|
EOF
|
|
|
|
end
|
2015-09-13 19:05:03 +03:00
|
|
|
|
2015-09-28 01:05:52 +03:00
|
|
|
def build_sys_venv(boxname)
|
|
|
|
return <<-EOF
|
|
|
|
. ~/.bash_profile
|
2015-09-12 20:13:17 +03:00
|
|
|
cd /vagrant/borg
|
2015-09-16 00:45:12 +03:00
|
|
|
virtualenv --python=python3 borg-env
|
2015-09-28 01:05:52 +03:00
|
|
|
EOF
|
|
|
|
end
|
|
|
|
|
|
|
|
def build_pyenv_venv(boxname)
|
|
|
|
return <<-EOF
|
|
|
|
. ~/.bash_profile
|
|
|
|
cd /vagrant/borg
|
2017-09-24 23:15:07 +03:00
|
|
|
# use the latest 3.6 release
|
2019-03-01 17:35:15 +03:00
|
|
|
pyenv global 3.6.8
|
|
|
|
pyenv virtualenv 3.6.8 borg-env
|
2015-09-28 01:05:52 +03:00
|
|
|
ln -s ~/.pyenv/versions/borg-env .
|
|
|
|
EOF
|
|
|
|
end
|
|
|
|
|
2016-11-24 06:03:54 +03:00
|
|
|
def install_borg(fuse)
|
|
|
|
script = <<-EOF
|
2015-09-28 01:05:52 +03:00
|
|
|
. ~/.bash_profile
|
|
|
|
cd /vagrant/borg
|
2015-09-12 20:13:17 +03:00
|
|
|
. borg-env/bin/activate
|
2018-12-11 02:53:43 +03:00
|
|
|
pip install -U wheel # upgrade wheel, too old for 3.5
|
2015-09-12 20:13:17 +03:00
|
|
|
cd borg
|
|
|
|
pip install -r requirements.d/development.txt
|
2017-06-02 07:12:30 +03:00
|
|
|
python setup.py clean
|
2016-06-29 02:04:24 +03:00
|
|
|
EOF
|
2016-11-24 06:03:54 +03:00
|
|
|
if fuse
|
|
|
|
script += <<-EOF
|
2017-06-24 02:24:14 +03:00
|
|
|
# by using [fuse], setup.py can handle different FUSE requirements:
|
2016-11-24 06:03:54 +03:00
|
|
|
pip install -e .[fuse]
|
|
|
|
EOF
|
|
|
|
else
|
|
|
|
script += <<-EOF
|
|
|
|
pip install -e .
|
|
|
|
# do not install llfuse into the virtualenvs built by tox:
|
|
|
|
sed -i.bak '/fuse.txt/d' tox.ini
|
|
|
|
EOF
|
|
|
|
end
|
|
|
|
return script
|
2016-06-29 02:04:24 +03:00
|
|
|
end
|
|
|
|
|
2017-01-16 10:10:08 +03:00
|
|
|
def install_pyinstaller()
|
|
|
|
return <<-EOF
|
2015-09-28 01:05:52 +03:00
|
|
|
. ~/.bash_profile
|
|
|
|
cd /vagrant/borg
|
|
|
|
. borg-env/bin/activate
|
2016-09-14 04:11:11 +03:00
|
|
|
git clone https://github.com/thomaswaldmann/pyinstaller.git
|
2015-09-28 01:05:52 +03:00
|
|
|
cd pyinstaller
|
2018-07-03 22:09:08 +03:00
|
|
|
git checkout v3.3.1
|
2017-01-16 10:10:08 +03:00
|
|
|
python setup.py install
|
2015-09-28 01:05:52 +03:00
|
|
|
EOF
|
|
|
|
end
|
|
|
|
|
|
|
|
def build_binary_with_pyinstaller(boxname)
|
|
|
|
return <<-EOF
|
|
|
|
. ~/.bash_profile
|
|
|
|
cd /vagrant/borg
|
|
|
|
. borg-env/bin/activate
|
|
|
|
cd borg
|
2016-10-02 01:43:06 +03:00
|
|
|
pyinstaller --clean --distpath=/vagrant/borg scripts/borg.exe.spec
|
2017-07-30 03:01:10 +03:00
|
|
|
echo 'export PATH="/vagrant/borg:$PATH"' >> ~/.bash_profile
|
2015-09-28 01:05:52 +03:00
|
|
|
EOF
|
|
|
|
end
|
|
|
|
|
|
|
|
def run_tests(boxname)
|
|
|
|
return <<-EOF
|
|
|
|
. ~/.bash_profile
|
|
|
|
cd /vagrant/borg/borg
|
|
|
|
. ../borg-env/bin/activate
|
2016-10-15 16:21:38 +03:00
|
|
|
if which pyenv 2> /dev/null; then
|
2015-09-28 01:05:52 +03:00
|
|
|
# for testing, use the earliest point releases of the supported python versions:
|
2019-04-21 21:23:18 +03:00
|
|
|
pyenv global 3.5.3 3.6.8 3.7.0
|
|
|
|
pyenv local 3.5.3 3.6.8 3.7.0
|
2015-09-28 01:05:52 +03:00
|
|
|
fi
|
|
|
|
# otherwise: just use the system python
|
2016-10-15 16:21:38 +03:00
|
|
|
if which fakeroot 2> /dev/null; then
|
2015-10-21 00:27:11 +03:00
|
|
|
echo "Running tox WITH fakeroot -u"
|
2017-06-03 23:02:52 +03:00
|
|
|
fakeroot -u tox --skip-missing-interpreters
|
2015-09-28 01:05:52 +03:00
|
|
|
else
|
2015-10-21 00:27:11 +03:00
|
|
|
echo "Running tox WITHOUT fakeroot -u"
|
2015-09-28 01:05:52 +03:00
|
|
|
tox --skip-missing-interpreters
|
|
|
|
fi
|
2015-09-12 20:13:17 +03:00
|
|
|
EOF
|
|
|
|
end
|
|
|
|
|
2017-09-04 22:33:23 +03:00
|
|
|
def fs_init(user)
|
2015-09-12 20:13:17 +03:00
|
|
|
return <<-EOF
|
2018-03-24 02:03:55 +03:00
|
|
|
# clean up (wrong/outdated) stuff we likely got via rsync:
|
2018-05-18 20:20:57 +03:00
|
|
|
rm -rf /vagrant/borg/borg/.tox 2> /dev/null
|
2018-06-08 10:01:25 +03:00
|
|
|
rm -rf /vagrant/borg/borg/borgbackup.egg-info 2> /dev/null
|
2018-05-18 20:20:57 +03:00
|
|
|
rm -rf /vagrant/borg/borg/__pycache__ 2> /dev/null
|
|
|
|
find /vagrant/borg/borg/src -name '__pycache__' -exec rm -rf {} \\; 2> /dev/null
|
2017-09-04 22:33:23 +03:00
|
|
|
chown -R #{user} /vagrant/borg
|
|
|
|
touch ~#{user}/.bash_profile ; chown #{user} ~#{user}/.bash_profile
|
|
|
|
echo 'export LANG=en_US.UTF-8' >> ~#{user}/.bash_profile
|
|
|
|
echo 'export LC_CTYPE=en_US.UTF-8' >> ~#{user}/.bash_profile
|
|
|
|
echo 'export XDISTN=#{$xdistn}' >> ~#{user}/.bash_profile
|
2015-09-12 20:13:17 +03:00
|
|
|
EOF
|
|
|
|
end
|
|
|
|
|
|
|
|
Vagrant.configure(2) do |config|
|
|
|
|
# use rsync to copy content to the folder
|
2016-10-17 18:37:33 +03:00
|
|
|
config.vm.synced_folder ".", "/vagrant/borg/borg", :type => "rsync", :rsync__args => ["--verbose", "--archive", "--delete", "-z"], :rsync__chown => false
|
2015-09-13 02:22:44 +03:00
|
|
|
# do not let the VM access . on the host machine via the default shared folder!
|
2015-09-12 20:13:17 +03:00
|
|
|
config.vm.synced_folder ".", "/vagrant", disabled: true
|
|
|
|
|
2015-09-13 02:22:44 +03:00
|
|
|
config.vm.provider :virtualbox do |v|
|
2015-09-13 19:05:03 +03:00
|
|
|
#v.gui = true
|
2017-06-02 03:29:05 +03:00
|
|
|
v.cpus = $cpus
|
2015-09-13 02:22:44 +03:00
|
|
|
end
|
|
|
|
|
2018-06-27 00:27:35 +03:00
|
|
|
config.vm.define "bionic64" do |b|
|
|
|
|
b.vm.box = "ubuntu/bionic64"
|
2016-03-26 16:14:15 +03:00
|
|
|
b.vm.provider :virtualbox do |v|
|
2017-06-02 03:29:05 +03:00
|
|
|
v.memory = 1024 + $wmem
|
2016-03-26 16:14:15 +03:00
|
|
|
end
|
2018-03-24 02:30:18 +03:00
|
|
|
b.vm.provision "fs init", :type => :shell, :inline => fs_init("vagrant")
|
2018-05-18 20:24:14 +03:00
|
|
|
b.vm.provision "packages debianoid", :type => :shell, :inline => packages_debianoid("vagrant")
|
2018-06-27 00:27:35 +03:00
|
|
|
b.vm.provision "build env", :type => :shell, :privileged => false, :inline => build_sys_venv("bionic64")
|
2016-11-24 06:03:54 +03:00
|
|
|
b.vm.provision "install borg", :type => :shell, :privileged => false, :inline => install_borg(true)
|
2018-06-27 00:27:35 +03:00
|
|
|
b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("bionic64")
|
2016-03-26 16:14:15 +03:00
|
|
|
end
|
|
|
|
|
2017-06-18 19:07:45 +03:00
|
|
|
config.vm.define "stretch64" do |b|
|
|
|
|
b.vm.box = "debian/stretch64"
|
|
|
|
b.vm.provider :virtualbox do |v|
|
|
|
|
v.memory = 1024 + $wmem
|
|
|
|
end
|
2017-09-04 22:33:23 +03:00
|
|
|
b.vm.provision "fs init", :type => :shell, :inline => fs_init("vagrant")
|
|
|
|
b.vm.provision "packages debianoid", :type => :shell, :inline => packages_debianoid("vagrant")
|
2018-06-27 02:44:44 +03:00
|
|
|
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")
|
2017-06-18 19:07:45 +03:00
|
|
|
b.vm.provision "install borg", :type => :shell, :privileged => false, :inline => install_borg(true)
|
2017-01-16 10:10:08 +03:00
|
|
|
b.vm.provision "install pyinstaller", :type => :shell, :privileged => false, :inline => install_pyinstaller()
|
2017-07-30 03:01:10 +03:00
|
|
|
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")
|
2017-06-12 04:29:37 +03:00
|
|
|
end
|
|
|
|
|
2017-08-01 05:46:31 +03:00
|
|
|
config.vm.define "arch64" do |b|
|
|
|
|
b.vm.box = "terrywang/archlinux"
|
|
|
|
b.vm.provider :virtualbox do |v|
|
|
|
|
v.memory = 1024 + $wmem
|
|
|
|
end
|
2017-09-04 22:33:23 +03:00
|
|
|
b.vm.provision "fs init", :type => :shell, :inline => fs_init("vagrant")
|
2017-08-01 05:46:31 +03:00
|
|
|
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
|
|
|
|
|
2018-06-23 04:31:25 +03:00
|
|
|
config.vm.define "freebsd64" do |b|
|
2019-03-02 21:58:37 +03:00
|
|
|
b.vm.box = "freebsd12-64"
|
2018-06-23 04:31:25 +03:00
|
|
|
b.vm.provider :virtualbox do |v|
|
|
|
|
v.memory = 1024 + $wmem
|
|
|
|
end
|
|
|
|
b.ssh.shell = "sh"
|
|
|
|
b.vm.provision "fs init", :type => :shell, :inline => fs_init("vagrant")
|
|
|
|
b.vm.provision "packages freebsd", :type => :shell, :inline => packages_freebsd
|
|
|
|
b.vm.provision "build env", :type => :shell, :privileged => false, :inline => build_sys_venv("freebsd64")
|
|
|
|
b.vm.provision "install borg", :type => :shell, :privileged => false, :inline => install_borg(true)
|
|
|
|
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("freebsd64")
|
|
|
|
b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("freebsd64")
|
|
|
|
end
|
|
|
|
|
2019-03-01 20:29:11 +03:00
|
|
|
config.vm.define "openbsd64" do |b|
|
|
|
|
b.vm.box = "openbsd64-64"
|
|
|
|
b.vm.provider :virtualbox do |v|
|
|
|
|
v.memory = 1024 + $wmem
|
|
|
|
end
|
|
|
|
b.ssh.shell = "sh"
|
|
|
|
b.vm.provision "fs init", :type => :shell, :inline => fs_init("vagrant")
|
|
|
|
b.vm.provision "packages openbsd", :type => :shell, :inline => packages_openbsd
|
|
|
|
b.vm.provision "build env", :type => :shell, :privileged => false, :inline => build_sys_venv("openbsd64")
|
|
|
|
b.vm.provision "install borg", :type => :shell, :privileged => false, :inline => install_borg(false)
|
|
|
|
b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("openbsd64")
|
|
|
|
end
|
|
|
|
|
2018-07-04 03:51:04 +03:00
|
|
|
config.vm.define "darwin64" do |b|
|
2019-03-01 17:44:30 +03:00
|
|
|
b.vm.box = "jhcook/macos-sierra"
|
2018-07-04 03:51:04 +03:00
|
|
|
b.vm.provider :virtualbox do |v|
|
|
|
|
v.memory = 1536 + $wmem
|
|
|
|
v.customize ['modifyvm', :id, '--ostype', 'MacOS1010_64']
|
|
|
|
v.customize ['modifyvm', :id, '--paravirtprovider', 'default']
|
|
|
|
# Adjust CPU settings according to
|
|
|
|
# https://github.com/geerlingguy/macos-virtualbox-vm
|
|
|
|
v.customize ['modifyvm', :id, '--cpuidset',
|
|
|
|
'00000001', '000306a9', '00020800', '80000201', '178bfbff']
|
|
|
|
# Disable USB variant requiring Virtualbox proprietary extension pack
|
|
|
|
v.customize ["modifyvm", :id, '--usbehci', 'off', '--usbxhci', 'off']
|
|
|
|
end
|
|
|
|
b.vm.provision "fs init", :type => :shell, :inline => fs_init("vagrant")
|
|
|
|
b.vm.provision "packages darwin", :type => :shell, :privileged => false, :inline => packages_darwin
|
|
|
|
b.vm.provision "install pyenv", :type => :shell, :privileged => false, :inline => install_pyenv("darwin64")
|
|
|
|
b.vm.provision "fix pyenv", :type => :shell, :privileged => false, :inline => fix_pyenv_darwin("darwin64")
|
|
|
|
b.vm.provision "install pythons", :type => :shell, :privileged => false, :inline => install_pythons("darwin64")
|
|
|
|
b.vm.provision "build env", :type => :shell, :privileged => false, :inline => build_pyenv_venv("darwin64")
|
|
|
|
b.vm.provision "install borg", :type => :shell, :privileged => false, :inline => install_borg(true)
|
|
|
|
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("darwin64")
|
|
|
|
b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("darwin64")
|
|
|
|
end
|
|
|
|
|
2018-12-11 02:53:43 +03:00
|
|
|
# TODO: create more VMs with python 3.5+ and openssl 1.1.
|
2017-07-30 03:01:10 +03:00
|
|
|
# See branch 1.1-maint for a better equipped Vagrantfile (but still on py34 and openssl 1.0).
|
2015-09-12 20:13:17 +03:00
|
|
|
end
|