2015-09-12 17:13:17 +00:00
|
|
|
# -*- mode: ruby -*-
|
|
|
|
# vi: set ft=ruby :
|
|
|
|
|
2015-09-30 15:42:20 +00:00
|
|
|
# Automated creation of testing environments / binaries on misc. platforms
|
2015-09-15 21:45:12 +00:00
|
|
|
|
2022-11-26 18:43:36 +00:00
|
|
|
$cpus = Integer(ENV.fetch('VMCPUS', '8')) # create VMs with that many cpus
|
|
|
|
$xdistn = Integer(ENV.fetch('XDISTN', '8')) # dispatch tests to that many pytest workers
|
2017-06-02 00:29:05 +00:00
|
|
|
$wmem = $xdistn * 256 # give the VM additional memory for workers [MB]
|
|
|
|
|
2017-09-04 19:33:23 +00:00
|
|
|
def packages_debianoid(user)
|
2015-09-20 20:22:40 +00:00
|
|
|
return <<-EOF
|
2020-04-07 21:24:01 +00:00
|
|
|
export DEBIAN_FRONTEND=noninteractive
|
2019-11-27 00:32:31 +00:00
|
|
|
# this is to avoid grub asking about which device it should install to:
|
|
|
|
echo "set grub-pc/install_devices /dev/sda" | debconf-communicate
|
|
|
|
apt-get -y -qq update
|
|
|
|
apt-get -y -qq dist-upgrade
|
2015-09-27 22:05:52 +00:00
|
|
|
# for building borgbackup and dependencies:
|
2023-03-26 18:58:12 +00:00
|
|
|
apt install -y pkg-config
|
|
|
|
apt install -y libssl-dev libacl1-dev libxxhash-dev liblz4-dev libzstd-dev || true
|
2020-10-10 21:12:47 +00:00
|
|
|
apt install -y libfuse-dev fuse || true
|
|
|
|
apt install -y libfuse3-dev fuse3 || true
|
2021-05-23 20:21:44 +00:00
|
|
|
apt install -y locales || true
|
|
|
|
sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && locale-gen
|
2017-09-04 19:33:23 +00:00
|
|
|
usermod -a -G fuse #{user}
|
2016-09-04 01:01:29 +00:00
|
|
|
chgrp fuse /dev/fuse
|
|
|
|
chmod 666 /dev/fuse
|
2018-06-26 23:44:44 +00:00
|
|
|
apt install -y fakeroot build-essential git curl
|
2020-04-18 19:48:04 +00:00
|
|
|
apt install -y python3-dev python3-setuptools virtualenv
|
2015-10-03 01:10:12 +00:00
|
|
|
# for building python:
|
2018-06-26 23:44:44 +00:00
|
|
|
apt install -y zlib1g-dev libbz2-dev libncurses5-dev libreadline-dev liblzma-dev libsqlite3-dev libffi-dev
|
2015-09-12 17:13:17 +00:00
|
|
|
EOF
|
|
|
|
end
|
|
|
|
|
2018-06-23 01:31:25 +00: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:
|
2022-07-04 18:26:42 +00:00
|
|
|
pkg install -y xxhash liblz4 zstd pkgconf
|
2020-10-10 21:12:47 +00:00
|
|
|
pkg install -y fusefs-libs || true
|
|
|
|
pkg install -y fusefs-libs3 || true
|
2018-07-04 00:51:04 +00:00
|
|
|
pkg install -y git bash # fakeroot causes lots of troubles on freebsd
|
2021-09-15 21:40:00 +00:00
|
|
|
# for building python (for the tests we use pyenv built pythons):
|
2023-12-24 00:21:42 +00:00
|
|
|
pkg install -y python310 py310-sqlite3
|
2018-06-23 01:31:25 +00:00
|
|
|
# make sure there is a python3 command
|
2023-12-24 00:21:42 +00:00
|
|
|
ln -sf /usr/local/bin/python3.10 /usr/local/bin/python3
|
2022-02-25 23:13:19 +00:00
|
|
|
python3 -m ensurepip
|
|
|
|
pip3 install virtualenv
|
2018-06-23 01:31:25 +00:00
|
|
|
# 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
|
2022-03-26 21:44:18 +00:00
|
|
|
kldload fusefs
|
2018-06-23 01:31:25 +00:00
|
|
|
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 00:56:22 +00:00
|
|
|
echo 'export BORG_OPENSSL_PREFIX=/usr' >> ~vagrant/.bash_profile
|
2023-08-27 00:47:46 +00:00
|
|
|
# (re)mount / with acls
|
|
|
|
mount -o acls /
|
2018-06-23 01:31:25 +00:00
|
|
|
EOF
|
|
|
|
end
|
|
|
|
|
2019-03-01 17:29:11 +00:00
|
|
|
def packages_openbsd
|
|
|
|
return <<-EOF
|
|
|
|
pkg_add bash
|
2021-06-16 22:30:19 +00:00
|
|
|
chsh -s bash vagrant
|
2022-02-26 22:26:17 +00:00
|
|
|
pkg_add xxhash
|
2019-03-01 17:29:11 +00:00
|
|
|
pkg_add lz4
|
|
|
|
pkg_add zstd
|
|
|
|
pkg_add git # no fakeroot
|
2023-09-11 19:43:35 +00:00
|
|
|
pkg_add openssl%3.0
|
2019-03-01 17:29:11 +00:00
|
|
|
pkg_add py3-pip
|
|
|
|
pkg_add py3-virtualenv
|
|
|
|
EOF
|
|
|
|
end
|
|
|
|
|
2021-06-17 00:38:45 +00:00
|
|
|
def packages_netbsd
|
|
|
|
return <<-EOF
|
2023-04-08 18:30:40 +00:00
|
|
|
echo 'http://ftp.NetBSD.org/pub/pkgsrc/packages/NetBSD/$arch/9.3/All' > /usr/pkg/etc/pkgin/repositories.conf
|
2022-01-23 21:02:00 +00:00
|
|
|
pkgin update
|
|
|
|
pkgin -y upgrade
|
2021-06-17 00:38:45 +00:00
|
|
|
pkg_add zstd lz4 xxhash git
|
|
|
|
pkg_add bash
|
|
|
|
chsh -s bash vagrant
|
2023-04-08 18:30:40 +00:00
|
|
|
echo "export PROMPT_COMMAND=" >> ~vagrant/.bash_profile # bug in netbsd 9.3, .bash_profile broken for screen
|
|
|
|
echo "export PROMPT_COMMAND=" >> ~root/.bash_profile # bug in netbsd 9.3, .bash_profile broken for screen
|
2021-06-17 00:38:45 +00:00
|
|
|
pkg_add pkg-config
|
|
|
|
# pkg_add fuse # llfuse supports netbsd, but is still buggy.
|
|
|
|
# https://bitbucket.org/nikratio/python-llfuse/issues/70/perfuse_open-setsockopt-no-buffer-space
|
2023-12-25 19:02:08 +00:00
|
|
|
pkg_add py311-sqlite3 py311-pip py311-virtualenv py311-expat
|
|
|
|
ln -s /usr/pkg/bin/python3.11 /usr/pkg/bin/python
|
|
|
|
ln -s /usr/pkg/bin/python3.11 /usr/pkg/bin/python3
|
|
|
|
ln -s /usr/pkg/bin/pip3.11 /usr/pkg/bin/pip
|
|
|
|
ln -s /usr/pkg/bin/pip3.11 /usr/pkg/bin/pip3
|
|
|
|
ln -s /usr/pkg/bin/virtualenv-3.11 /usr/pkg/bin/virtualenv
|
|
|
|
ln -s /usr/pkg/bin/virtualenv-3.11 /usr/pkg/bin/virtualenv3
|
2021-06-17 00:38:45 +00:00
|
|
|
EOF
|
|
|
|
end
|
|
|
|
|
2024-07-03 11:57:56 +00:00
|
|
|
def packages_macos
|
2018-07-04 00:51:04 +00:00
|
|
|
return <<-EOF
|
|
|
|
# install all the (security and other) updates
|
|
|
|
sudo softwareupdate --ignore iTunesX
|
|
|
|
sudo softwareupdate --ignore iTunes
|
2020-08-16 07:12:47 +00:00
|
|
|
sudo softwareupdate --ignore Safari
|
2018-07-04 00:51:04 +00:00
|
|
|
sudo softwareupdate --ignore "Install macOS High Sierra"
|
|
|
|
sudo softwareupdate --install --all
|
2020-08-16 07:12:47 +00:00
|
|
|
which brew || CI=1 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
|
2019-03-16 00:56:22 +00:00
|
|
|
brew update > /dev/null
|
2023-12-25 22:22:00 +00:00
|
|
|
brew install pkg-config readline xxhash openssl@3.0 zstd lz4 xz
|
2022-01-22 16:41:50 +00:00
|
|
|
brew install --cask macfuse
|
2022-01-23 21:12:57 +00:00
|
|
|
# brew upgrade # upgrade everything (takes rather long)
|
2023-12-25 22:22:00 +00:00
|
|
|
echo 'export LDFLAGS=-L/usr/local/opt/openssl@3.0/lib' >> ~vagrant/.bash_profile
|
|
|
|
echo 'export CPPFLAGS=-I/usr/local/opt/openssl@3.0/include' >> ~vagrant/.bash_profile
|
|
|
|
echo 'export PKG_CONFIG_PATH=/usr/local/opt/openssl@3.0/lib/pkgconfig' >> ~vagrant/.bash_profile
|
|
|
|
echo 'export PYTHON_BUILD_HOMEBREW_OPENSSL_FORMULA=openssl@3.0' >> ~vagrant/.bash_profile
|
2018-07-04 00:51:04 +00:00
|
|
|
EOF
|
|
|
|
end
|
|
|
|
|
2019-06-17 00:37:06 +00:00
|
|
|
def packages_openindiana
|
|
|
|
return <<-EOF
|
|
|
|
# needs separate provisioning step + reboot:
|
|
|
|
#pkg update
|
2024-04-01 18:22:30 +00:00
|
|
|
pkg install gcc-13 git pkg-config libxxhash
|
2021-09-15 21:40:00 +00:00
|
|
|
ln -sf /usr/bin/python3.9 /usr/bin/python3
|
2020-09-25 00:13:43 +00:00
|
|
|
python3 -m ensurepip
|
2021-09-15 21:40:00 +00:00
|
|
|
ln -sf /usr/bin/pip3.9 /usr/bin/pip3
|
2020-09-25 00:13:43 +00:00
|
|
|
pip3 install virtualenv
|
2024-04-01 18:22:30 +00:00
|
|
|
# let borg's pkg-config find openssl:
|
|
|
|
pfexec pkg set-mediator -V 3.1 openssl
|
2019-06-17 00:37:06 +00:00
|
|
|
EOF
|
|
|
|
end
|
|
|
|
|
2015-09-27 22:05:52 +00:00
|
|
|
def install_pyenv(boxname)
|
2017-09-04 19:33:23 +00:00
|
|
|
return <<-EOF
|
2023-03-26 18:58:12 +00:00
|
|
|
echo 'export PYTHON_CONFIGURE_OPTS="${PYTHON_CONFIGURE_OPTS} --enable-shared"' >> ~/.bash_profile
|
2021-05-23 20:18:22 +00:00
|
|
|
echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.bash_profile
|
|
|
|
echo 'export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.bash_profile
|
|
|
|
. ~/.bash_profile
|
|
|
|
curl -s -L https://raw.githubusercontent.com/yyuu/pyenv-installer/master/bin/pyenv-installer | bash
|
|
|
|
echo 'eval "$(pyenv init --path)"' >> ~/.bash_profile
|
2022-01-22 16:25:54 +00:00
|
|
|
echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.bashrc
|
|
|
|
echo 'export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.bashrc
|
2021-05-23 20:18:22 +00:00
|
|
|
echo 'eval "$(pyenv init -)"' >> ~/.bashrc
|
|
|
|
echo 'eval "$(pyenv virtualenv-init -)"' >> ~/.bashrc
|
2015-09-12 17:13:17 +00:00
|
|
|
EOF
|
|
|
|
end
|
|
|
|
|
2024-07-03 11:57:56 +00:00
|
|
|
def fix_pyenv_macos(boxname)
|
2015-09-12 17:13:17 +00:00
|
|
|
return <<-EOF
|
2015-09-27 22:05:52 +00:00
|
|
|
echo 'export PYTHON_CONFIGURE_OPTS="--enable-framework"' >> ~/.bash_profile
|
|
|
|
EOF
|
|
|
|
end
|
2015-09-12 17:13:17 +00:00
|
|
|
|
2015-09-27 22:05:52 +00:00
|
|
|
def install_pythons(boxname)
|
|
|
|
return <<-EOF
|
|
|
|
. ~/.bash_profile
|
2023-03-26 18:58:12 +00:00
|
|
|
echo "PYTHON_CONFIGURE_OPTS: ${PYTHON_CONFIGURE_OPTS}"
|
2023-10-07 22:15:39 +00:00
|
|
|
pyenv install 3.12.0 # tests
|
2024-07-18 21:49:59 +00:00
|
|
|
pyenv install 3.11.9 # tests, binary build
|
2023-05-16 21:28:36 +00:00
|
|
|
pyenv install 3.10.2 # tests
|
2024-01-10 21:21:49 +00:00
|
|
|
pyenv install 3.9.4 # tests
|
2015-09-27 22:05:52 +00:00
|
|
|
pyenv rehash
|
|
|
|
EOF
|
|
|
|
end
|
2015-09-13 16:05:03 +00:00
|
|
|
|
2015-09-27 22:05:52 +00:00
|
|
|
def build_sys_venv(boxname)
|
|
|
|
return <<-EOF
|
|
|
|
. ~/.bash_profile
|
2015-09-12 17:13:17 +00:00
|
|
|
cd /vagrant/borg
|
2015-09-15 21:45:12 +00:00
|
|
|
virtualenv --python=python3 borg-env
|
2015-09-27 22:05:52 +00:00
|
|
|
EOF
|
|
|
|
end
|
|
|
|
|
|
|
|
def build_pyenv_venv(boxname)
|
|
|
|
return <<-EOF
|
|
|
|
. ~/.bash_profile
|
|
|
|
cd /vagrant/borg
|
2022-11-26 18:42:42 +00:00
|
|
|
# use the latest 3.11 release
|
2024-07-18 21:49:59 +00:00
|
|
|
pyenv global 3.11.9
|
|
|
|
pyenv virtualenv 3.11.9 borg-env
|
2015-09-27 22:05:52 +00:00
|
|
|
ln -s ~/.pyenv/versions/borg-env .
|
|
|
|
EOF
|
|
|
|
end
|
|
|
|
|
2016-11-24 03:03:54 +00:00
|
|
|
def install_borg(fuse)
|
2020-10-10 21:12:47 +00:00
|
|
|
return <<-EOF
|
2015-09-27 22:05:52 +00:00
|
|
|
. ~/.bash_profile
|
|
|
|
cd /vagrant/borg
|
2015-09-12 17:13:17 +00:00
|
|
|
. borg-env/bin/activate
|
2021-06-16 13:31:34 +00:00
|
|
|
pip install -U wheel # upgrade wheel, might be too old
|
2015-09-12 17:13:17 +00:00
|
|
|
cd borg
|
2022-02-04 20:03:28 +00:00
|
|
|
pip install -r requirements.d/development.lock.txt
|
2024-01-30 22:55:18 +00:00
|
|
|
python3 scripts/make.py clean
|
2020-10-10 21:12:47 +00:00
|
|
|
pip install -e .[#{fuse}]
|
2016-06-28 23:04:24 +00:00
|
|
|
EOF
|
|
|
|
end
|
|
|
|
|
2017-01-16 07:10:08 +00:00
|
|
|
def install_pyinstaller()
|
|
|
|
return <<-EOF
|
2015-09-27 22:05:52 +00:00
|
|
|
. ~/.bash_profile
|
|
|
|
cd /vagrant/borg
|
|
|
|
. borg-env/bin/activate
|
2024-07-18 21:48:19 +00:00
|
|
|
pip install 'pyinstaller==6.7.0'
|
2015-09-27 22:05:52 +00:00
|
|
|
EOF
|
|
|
|
end
|
|
|
|
|
|
|
|
def build_binary_with_pyinstaller(boxname)
|
|
|
|
return <<-EOF
|
|
|
|
. ~/.bash_profile
|
|
|
|
cd /vagrant/borg
|
|
|
|
. borg-env/bin/activate
|
|
|
|
cd borg
|
2016-10-01 22:43:06 +00:00
|
|
|
pyinstaller --clean --distpath=/vagrant/borg scripts/borg.exe.spec
|
2017-07-30 00:01:10 +00:00
|
|
|
echo 'export PATH="/vagrant/borg:$PATH"' >> ~/.bash_profile
|
2020-08-16 07:12:47 +00:00
|
|
|
cd .. && tar -czvf borg.tgz borg-dir
|
2015-09-27 22:05:52 +00:00
|
|
|
EOF
|
|
|
|
end
|
|
|
|
|
2020-10-19 22:17:03 +00:00
|
|
|
def run_tests(boxname, skip_env)
|
2015-09-27 22:05:52 +00:00
|
|
|
return <<-EOF
|
|
|
|
. ~/.bash_profile
|
|
|
|
cd /vagrant/borg/borg
|
|
|
|
. ../borg-env/bin/activate
|
2016-10-15 13:21:38 +00:00
|
|
|
if which pyenv 2> /dev/null; then
|
2015-09-27 22:05:52 +00:00
|
|
|
# for testing, use the earliest point releases of the supported python versions:
|
2024-07-18 21:49:59 +00:00
|
|
|
pyenv global 3.9.4 3.10.2 3.11.9 3.12.0
|
|
|
|
pyenv local 3.9.4 3.10.2 3.11.9 3.12.0
|
2015-09-27 22:05:52 +00:00
|
|
|
fi
|
|
|
|
# otherwise: just use the system python
|
2020-10-19 22:17:03 +00:00
|
|
|
# some OSes can only run specific test envs, e.g. because they miss FUSE support:
|
|
|
|
export TOX_SKIP_ENV='#{skip_env}'
|
2016-10-15 13:21:38 +00:00
|
|
|
if which fakeroot 2> /dev/null; then
|
2015-10-20 21:27:11 +00:00
|
|
|
echo "Running tox WITH fakeroot -u"
|
2020-10-10 21:12:47 +00:00
|
|
|
fakeroot -u tox --skip-missing-interpreters
|
2015-09-27 22:05:52 +00:00
|
|
|
else
|
2015-10-20 21:27:11 +00:00
|
|
|
echo "Running tox WITHOUT fakeroot -u"
|
2020-10-10 21:12:47 +00:00
|
|
|
tox --skip-missing-interpreters
|
2015-09-27 22:05:52 +00:00
|
|
|
fi
|
2015-09-12 17:13:17 +00:00
|
|
|
EOF
|
|
|
|
end
|
|
|
|
|
2017-09-04 19:33:23 +00:00
|
|
|
def fs_init(user)
|
2015-09-12 17:13:17 +00:00
|
|
|
return <<-EOF
|
2018-03-23 23:03:55 +00:00
|
|
|
# clean up (wrong/outdated) stuff we likely got via rsync:
|
2018-05-18 17:20:57 +00:00
|
|
|
rm -rf /vagrant/borg/borg/.tox 2> /dev/null
|
2018-06-08 07:01:25 +00:00
|
|
|
rm -rf /vagrant/borg/borg/borgbackup.egg-info 2> /dev/null
|
2018-05-18 17:20:57 +00: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 19:33:23 +00: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 17:13:17 +00:00
|
|
|
EOF
|
|
|
|
end
|
|
|
|
|
|
|
|
Vagrant.configure(2) do |config|
|
|
|
|
# use rsync to copy content to the folder
|
2020-08-16 07:12:47 +00:00
|
|
|
config.vm.synced_folder ".", "/vagrant/borg/borg", :type => "rsync", :rsync__args => ["--verbose", "--archive", "--delete", "--exclude", ".python-version"], :rsync__chown => false
|
2015-09-12 23:22:44 +00:00
|
|
|
# do not let the VM access . on the host machine via the default shared folder!
|
2015-09-12 17:13:17 +00:00
|
|
|
config.vm.synced_folder ".", "/vagrant", disabled: true
|
|
|
|
|
2015-09-12 23:22:44 +00:00
|
|
|
config.vm.provider :virtualbox do |v|
|
2015-09-13 16:05:03 +00:00
|
|
|
#v.gui = true
|
2017-06-02 00:29:05 +00:00
|
|
|
v.cpus = $cpus
|
2015-09-12 23:22:44 +00:00
|
|
|
end
|
|
|
|
|
2024-07-03 11:50:06 +00:00
|
|
|
config.vm.define "noble" do |b|
|
2024-04-01 18:36:06 +00:00
|
|
|
b.vm.box = "ubuntu/noble64"
|
2023-04-08 18:52:48 +00:00
|
|
|
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")
|
2024-07-03 11:50:06 +00:00
|
|
|
b.vm.provision "build env", :type => :shell, :privileged => false, :inline => build_sys_venv("noble")
|
2023-04-08 18:52:48 +00:00
|
|
|
b.vm.provision "install borg", :type => :shell, :privileged => false, :inline => install_borg("llfuse")
|
2024-07-03 11:50:06 +00:00
|
|
|
b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("noble", ".*none.*")
|
2023-04-08 18:52:48 +00:00
|
|
|
end
|
|
|
|
|
2024-07-03 11:50:06 +00:00
|
|
|
config.vm.define "jammy" do |b|
|
2022-02-22 13:27:42 +00:00
|
|
|
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")
|
2024-07-03 11:50:06 +00:00
|
|
|
b.vm.provision "build env", :type => :shell, :privileged => false, :inline => build_sys_venv("jammy")
|
2022-02-22 13:27:42 +00:00
|
|
|
b.vm.provision "install borg", :type => :shell, :privileged => false, :inline => install_borg("llfuse")
|
2024-07-03 11:50:06 +00:00
|
|
|
b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("jammy", ".*none.*")
|
2022-02-22 13:27:42 +00:00
|
|
|
end
|
|
|
|
|
2024-07-03 11:50:06 +00:00
|
|
|
config.vm.define "bookworm" do |b|
|
2023-06-10 14:51:41 +00:00
|
|
|
b.vm.box = "debian/bookworm64"
|
2023-02-26 17:05:59 +00:00
|
|
|
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")
|
2024-07-03 11:50:06 +00:00
|
|
|
b.vm.provision "install pyenv", :type => :shell, :privileged => false, :inline => install_pyenv("bookworm")
|
|
|
|
b.vm.provision "install pythons", :type => :shell, :privileged => false, :inline => install_pythons("bookworm")
|
|
|
|
b.vm.provision "build env", :type => :shell, :privileged => false, :inline => build_pyenv_venv("bookworm")
|
2023-02-26 17:05:59 +00:00
|
|
|
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()
|
2024-07-03 11:50:06 +00:00
|
|
|
b.vm.provision "build binary with pyinstaller", :type => :shell, :privileged => false, :inline => build_binary_with_pyinstaller("bookworm")
|
|
|
|
b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("bookworm", ".*none.*")
|
2023-02-26 17:05:59 +00:00
|
|
|
end
|
|
|
|
|
2024-07-03 11:50:06 +00:00
|
|
|
config.vm.define "bullseye" do |b|
|
2021-05-23 20:21:44 +00:00
|
|
|
b.vm.box = "debian/bullseye64"
|
|
|
|
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")
|
2024-07-03 11:50:06 +00:00
|
|
|
b.vm.provision "install pyenv", :type => :shell, :privileged => false, :inline => install_pyenv("bullseye")
|
|
|
|
b.vm.provision "install pythons", :type => :shell, :privileged => false, :inline => install_pythons("bullseye")
|
|
|
|
b.vm.provision "build env", :type => :shell, :privileged => false, :inline => build_pyenv_venv("bullseye")
|
2021-05-23 20:21:44 +00:00
|
|
|
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()
|
2024-07-03 11:50:06 +00:00
|
|
|
b.vm.provision "build binary with pyinstaller", :type => :shell, :privileged => false, :inline => build_binary_with_pyinstaller("bullseye")
|
|
|
|
b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("bullseye", ".*none.*")
|
2021-05-23 20:21:44 +00:00
|
|
|
end
|
|
|
|
|
2024-07-03 11:50:06 +00:00
|
|
|
config.vm.define "freebsd13" do |b|
|
2024-07-03 11:39:43 +00:00
|
|
|
b.vm.box = "generic/freebsd13"
|
|
|
|
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
|
2024-07-03 11:50:06 +00:00
|
|
|
b.vm.provision "install pyenv", :type => :shell, :privileged => false, :inline => install_pyenv("freebsd13")
|
|
|
|
b.vm.provision "install pythons", :type => :shell, :privileged => false, :inline => install_pythons("freebsd13")
|
|
|
|
b.vm.provision "build env", :type => :shell, :privileged => false, :inline => build_pyenv_venv("freebsd13")
|
2024-07-03 11:39:43 +00:00
|
|
|
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()
|
2024-07-03 11:50:06 +00:00
|
|
|
b.vm.provision "build binary with pyinstaller", :type => :shell, :privileged => false, :inline => build_binary_with_pyinstaller("freebsd13")
|
|
|
|
b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("freebsd13", ".*(fuse3|none).*")
|
2024-07-03 11:39:43 +00:00
|
|
|
end
|
|
|
|
|
2024-07-03 11:50:06 +00:00
|
|
|
config.vm.define "freebsd14" do |b|
|
2023-12-24 00:21:42 +00:00
|
|
|
b.vm.box = "generic/freebsd14"
|
2018-06-23 01:31:25 +00: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
|
2024-07-03 11:50:06 +00:00
|
|
|
b.vm.provision "install pyenv", :type => :shell, :privileged => false, :inline => install_pyenv("freebsd14")
|
|
|
|
b.vm.provision "install pythons", :type => :shell, :privileged => false, :inline => install_pythons("freebsd14")
|
|
|
|
b.vm.provision "build env", :type => :shell, :privileged => false, :inline => build_pyenv_venv("freebsd14")
|
2020-10-10 21:12:47 +00:00
|
|
|
b.vm.provision "install borg", :type => :shell, :privileged => false, :inline => install_borg("llfuse")
|
2018-06-23 01:31:25 +00:00
|
|
|
b.vm.provision "install pyinstaller", :type => :shell, :privileged => false, :inline => install_pyinstaller()
|
2024-07-03 11:50:06 +00:00
|
|
|
b.vm.provision "build binary with pyinstaller", :type => :shell, :privileged => false, :inline => build_binary_with_pyinstaller("freebsd14")
|
|
|
|
b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("freebsd14", ".*(fuse3|none).*")
|
2018-06-23 01:31:25 +00:00
|
|
|
end
|
|
|
|
|
2024-07-03 12:04:57 +00:00
|
|
|
config.vm.define "openbsd7" do |b|
|
2023-12-25 21:40:38 +00:00
|
|
|
b.vm.box = "generic/openbsd7"
|
2019-03-01 17:29:11 +00:00
|
|
|
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 openbsd", :type => :shell, :inline => packages_openbsd
|
2024-07-03 12:04:57 +00:00
|
|
|
b.vm.provision "build env", :type => :shell, :privileged => false, :inline => build_sys_venv("openbsd7")
|
2020-10-10 21:12:47 +00:00
|
|
|
b.vm.provision "install borg", :type => :shell, :privileged => false, :inline => install_borg("nofuse")
|
2024-07-03 12:04:57 +00:00
|
|
|
b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("openbsd7", ".*fuse.*")
|
2019-03-01 17:29:11 +00:00
|
|
|
end
|
|
|
|
|
2024-07-03 12:04:57 +00:00
|
|
|
config.vm.define "netbsd9" do |b|
|
2021-06-17 00:38:45 +00:00
|
|
|
b.vm.box = "generic/netbsd9"
|
|
|
|
b.vm.provider :virtualbox do |v|
|
2022-01-23 21:02:00 +00:00
|
|
|
v.memory = 4096 + $wmem # need big /tmp tmpfs in RAM!
|
2021-06-17 00:38:45 +00:00
|
|
|
end
|
|
|
|
b.vm.provision "fs init", :type => :shell, :inline => fs_init("vagrant")
|
|
|
|
b.vm.provision "packages netbsd", :type => :shell, :inline => packages_netbsd
|
2024-07-03 12:04:57 +00:00
|
|
|
b.vm.provision "build env", :type => :shell, :privileged => false, :inline => build_sys_venv("netbsd9")
|
2021-06-17 00:38:45 +00:00
|
|
|
b.vm.provision "install borg", :type => :shell, :privileged => false, :inline => install_borg(false)
|
2024-07-03 12:04:57 +00:00
|
|
|
b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("netbsd9", ".*fuse.*")
|
2021-06-17 00:38:45 +00:00
|
|
|
end
|
|
|
|
|
2024-07-03 11:57:56 +00:00
|
|
|
config.vm.define "macos1012" do |b|
|
2020-04-20 10:52:53 +00:00
|
|
|
b.vm.box = "macos-sierra"
|
2018-07-04 00:51:04 +00:00
|
|
|
b.vm.provider :virtualbox do |v|
|
2022-01-22 16:48:57 +00:00
|
|
|
v.memory = 4096 + $wmem
|
2020-08-16 07:12:47 +00:00
|
|
|
v.customize ['modifyvm', :id, '--ostype', 'MacOS_64']
|
2018-07-04 00:51:04 +00:00
|
|
|
v.customize ['modifyvm', :id, '--paravirtprovider', 'default']
|
2020-08-16 07:12:47 +00:00
|
|
|
v.customize ['modifyvm', :id, '--nested-hw-virt', 'on']
|
2018-07-04 00:51:04 +00:00
|
|
|
# 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")
|
2024-07-03 11:57:56 +00:00
|
|
|
b.vm.provision "packages macos", :type => :shell, :privileged => false, :inline => packages_macos
|
2024-07-03 12:03:26 +00:00
|
|
|
b.vm.provision "install pyenv", :type => :shell, :privileged => false, :inline => install_pyenv("macos1012")
|
|
|
|
b.vm.provision "fix pyenv", :type => :shell, :privileged => false, :inline => fix_pyenv_macos("macos1012")
|
|
|
|
b.vm.provision "install pythons", :type => :shell, :privileged => false, :inline => install_pythons("macos1012")
|
|
|
|
b.vm.provision "build env", :type => :shell, :privileged => false, :inline => build_pyenv_venv("macos1012")
|
2020-10-10 21:12:47 +00:00
|
|
|
b.vm.provision "install borg", :type => :shell, :privileged => false, :inline => install_borg("llfuse")
|
2018-07-04 00:51:04 +00:00
|
|
|
b.vm.provision "install pyinstaller", :type => :shell, :privileged => false, :inline => install_pyinstaller()
|
2024-07-03 12:03:26 +00:00
|
|
|
b.vm.provision "build binary with pyinstaller", :type => :shell, :privileged => false, :inline => build_binary_with_pyinstaller("macos1012")
|
|
|
|
b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("macos1012", ".*(fuse3|none).*")
|
2018-07-04 00:51:04 +00:00
|
|
|
end
|
|
|
|
|
2019-06-17 00:37:06 +00:00
|
|
|
# rsync on openindiana has troubles, does not set correct owner for /vagrant/borg and thus gives lots of
|
|
|
|
# permission errors. can be manually fixed in the VM by: sudo chown -R vagrant /vagrant/borg ; then rsync again.
|
2024-07-03 11:50:06 +00:00
|
|
|
config.vm.define "openindiana" do |b|
|
2024-04-01 18:22:30 +00:00
|
|
|
b.vm.box = "openindiana/hipster"
|
2019-06-17 00:37:06 +00:00
|
|
|
b.vm.provider :virtualbox do |v|
|
2022-01-22 16:50:23 +00:00
|
|
|
v.memory = 2048 + $wmem
|
2019-06-17 00:37:06 +00:00
|
|
|
end
|
|
|
|
b.vm.provision "fs init", :type => :shell, :inline => fs_init("vagrant")
|
|
|
|
b.vm.provision "packages openindiana", :type => :shell, :inline => packages_openindiana
|
2024-07-03 11:50:06 +00:00
|
|
|
b.vm.provision "build env", :type => :shell, :privileged => false, :inline => build_sys_venv("openindiana")
|
2020-10-10 21:12:47 +00:00
|
|
|
b.vm.provision "install borg", :type => :shell, :privileged => false, :inline => install_borg("nofuse")
|
2024-07-03 11:50:06 +00:00
|
|
|
b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("openindiana", ".*fuse.*")
|
2019-06-17 00:37:06 +00:00
|
|
|
end
|
2015-09-12 17:13:17 +00:00
|
|
|
end
|