| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317 | # -*- mode: ruby -*-# vi: set ft=ruby :# Automated creation of testing environments / binaries on misc. platforms$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]def packages_debianoid(user)  return <<-EOF    apt update    # install all the (security and other) updates    apt dist-upgrade -y    # for building borgbackup and dependencies:    apt install -y libssl-dev libacl1-dev liblz4-dev libfuse-dev fuse pkg-config    usermod -a -G fuse #{user}    chgrp fuse /dev/fuse    chmod 666 /dev/fuse    apt install -y fakeroot build-essential git curl    apt install -y python3-dev python3-setuptools python-virtualenv python3-virtualenv    # for building python:    apt install -y zlib1g-dev libbz2-dev libncurses5-dev libreadline-dev liblzma-dev libsqlite3-dev libffi-dev  EOFenddef packages_arch  return <<-EOF    echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen    locale-gen    localectl set-locale LANG=en_US.UTF-8    chown vagrant.vagrant /vagrant    pacman --sync --noconfirm --refresh python-virtualenv python-pip  EOFenddef 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:    pkg install -y liblz4 zstd fusefs-libs pkgconf    pkg install -y git bash  # fakeroot causes lots of troubles on freebsd    # 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  EOFenddef 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:    curl -s -L https://github.com/osxfuse/osxfuse/releases/download/osxfuse-3.8.3/osxfuse-3.8.3.dmg >osxfuse.dmg    MOUNTDIR=$(echo `hdiutil mount osxfuse.dmg | tail -1 | awk '{$1="" ; print $0}'` | xargs -0 echo) \    && sudo installer -pkg "${MOUNTDIR}/Extras/FUSE for macOS 3.8.3.pkg" -target /    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)"    brew update    brew install openssl    brew install zstd    brew install lz4    brew install xz  # required for python lzma module    brew install fakeroot    brew install git    brew install pkg-config  EOFenddef install_pyenv(boxname)  return <<-EOF    curl -s -L https://raw.githubusercontent.com/yyuu/pyenv-installer/master/bin/pyenv-installer | bash    echo 'export PATH="$HOME/.pyenv/bin:$PATH"' >> ~/.bash_profile    echo 'eval "$(pyenv init -)"' >> ~/.bash_profile    echo 'eval "$(pyenv virtualenv-init -)"' >> ~/.bash_profile    echo 'export PYTHON_CONFIGURE_OPTS="--enable-shared"' >> ~/.bash_profile  EOFenddef fix_pyenv_darwin(boxname)  return <<-EOF    echo 'export PYTHON_CONFIGURE_OPTS="--enable-framework"' >> ~/.bash_profile  EOFenddef install_pythons(boxname)  return <<-EOF    . ~/.bash_profile    pyenv install 3.7.0  # tests    pyenv install 3.6.0  # tests    pyenv install 3.5.3  # tests, 3.5.3 is first to support openssl 1.1<k    pyenv install 3.6.8  # binary build, use latest 3.6.x release    pyenv rehash  EOFenddef build_sys_venv(boxname)  return <<-EOF    . ~/.bash_profile    cd /vagrant/borg    virtualenv --python=python3 borg-env  EOFenddef build_pyenv_venv(boxname)  return <<-EOF    . ~/.bash_profile    cd /vagrant/borg    # use the latest 3.6 release    pyenv global 3.6.8    pyenv virtualenv 3.6.8 borg-env    ln -s ~/.pyenv/versions/borg-env .  EOFenddef install_borg(fuse)  script = <<-EOF    . ~/.bash_profile    cd /vagrant/borg    . borg-env/bin/activate    pip install -U wheel  # upgrade wheel, too old for 3.5    cd borg    pip install -r requirements.d/development.txt    python setup.py clean  EOF  if fuse    script += <<-EOF      # by using [fuse], setup.py can handle different FUSE requirements:      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 scriptenddef install_pyinstaller()  return <<-EOF    . ~/.bash_profile    cd /vagrant/borg    . borg-env/bin/activate    git clone https://github.com/thomaswaldmann/pyinstaller.git    cd pyinstaller    git checkout v3.3.1    python setup.py install  EOFenddef build_binary_with_pyinstaller(boxname)  return <<-EOF    . ~/.bash_profile    cd /vagrant/borg    . borg-env/bin/activate    cd borg    pyinstaller --clean --distpath=/vagrant/borg scripts/borg.exe.spec    echo 'export PATH="/vagrant/borg:$PATH"' >> ~/.bash_profile  EOFenddef run_tests(boxname)  return <<-EOF    . ~/.bash_profile    cd /vagrant/borg/borg    . ../borg-env/bin/activate    if which pyenv 2> /dev/null; then      # for testing, use the earliest point releases of the supported python versions:      pyenv global 3.5.3 3.6.0 3.7.0      pyenv local 3.5.3 3.6.0 3.7.0    fi    # otherwise: just use the system python    if which fakeroot 2> /dev/null; then      echo "Running tox WITH fakeroot -u"      fakeroot -u tox --skip-missing-interpreters    else      echo "Running tox WITHOUT fakeroot -u"      tox --skip-missing-interpreters    fi  EOFenddef fs_init(user)  return <<-EOF    # clean up (wrong/outdated) stuff we likely got via rsync:    rm -rf /vagrant/borg/borg/.tox 2> /dev/null    rm -rf /vagrant/borg/borg/borgbackup.egg-info 2> /dev/null    rm -rf /vagrant/borg/borg/__pycache__ 2> /dev/null    find /vagrant/borg/borg/src -name '__pycache__' -exec rm -rf {} \\; 2> /dev/null    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  EOFendVagrant.configure(2) do |config|  # use rsync to copy content to the folder  config.vm.synced_folder ".", "/vagrant/borg/borg", :type => "rsync", :rsync__args => ["--verbose", "--archive", "--delete", "-z"], :rsync__chown => false  # do not let the VM access . on the host machine via the default shared folder!  config.vm.synced_folder ".", "/vagrant", disabled: true  config.vm.provider :virtualbox do |v|    #v.gui = true    v.cpus = $cpus  end  config.vm.define "bionic64" do |b|    b.vm.box = "ubuntu/bionic64"    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("bionic64")    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("bionic64")  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 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(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("stretch64")    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 "fs init", :type => :shell, :inline => fs_init("vagrant")    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  config.vm.define "freebsd64" do |b|    b.vm.box = "freebsd64-12"    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  config.vm.define "darwin64" do |b|    b.vm.box = "jhcook/yosemite-clitools"    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  # 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
 |