mirror of
https://github.com/borgbackup/borg.git
synced 2026-02-20 00:10:35 -05:00
Merge pull request #8988 from ThomasWaldmann/vagrant-debian-testing-master
Vagrant: debian testing/trixie box (master)
This commit is contained in:
commit
332ef28c7e
3 changed files with 18 additions and 0 deletions
16
Vagrantfile
vendored
16
Vagrantfile
vendored
|
|
@ -347,6 +347,22 @@ Vagrant.configure(2) do |config|
|
|||
b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("jammy", ".*none.*")
|
||||
end
|
||||
|
||||
config.vm.define "trixie" do |b|
|
||||
b.vm.box = "debian/testing64"
|
||||
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("trixie")
|
||||
b.vm.provision "install pythons", :type => :shell, :privileged => false, :inline => install_pythons("trixie")
|
||||
b.vm.provision "build env", :type => :shell, :privileged => false, :inline => build_pyenv_venv("trixie")
|
||||
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("trixie")
|
||||
b.vm.provision "run tests", :type => :shell, :privileged => false, :inline => run_tests("trixie", ".*none.*")
|
||||
end
|
||||
|
||||
config.vm.define "bookworm32" do |b|
|
||||
b.vm.box = "generic-x32/debian12"
|
||||
b.vm.provider :virtualbox do |v|
|
||||
|
|
|
|||
|
|
@ -11,6 +11,7 @@ Download the correct files
|
|||
amd64 / x86_64 architecture
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
borg-linux-glibc241 Linux (built on Debian 13 "Trixie" with glibc 2.41)
|
||||
borg-linux-glibc236 Linux (built on Debian 12 "Bookworm" with glibc 2.36)
|
||||
borg-linux-glibc231 Linux (built on Debian 11 "Bullseye" with glibc 2.31)
|
||||
Note: you can also try them on other Linuxes with other glibc
|
||||
|
|
|
|||
|
|
@ -15,6 +15,7 @@ check_and_copy () {
|
|||
check_and_copy buster borg-linux-glibc228
|
||||
check_and_copy bullseye borg-linux-glibc231
|
||||
check_and_copy bookworm borg-linux-glibc236
|
||||
check_and_copy trixie borg-linux-glibc241
|
||||
|
||||
check_and_copy freebsd13 borg-freebsd13
|
||||
check_and_copy freebsd14 borg-freebsd14
|
||||
|
|
|
|||
Loading…
Reference in a new issue