feat: debian 11 support (#1292)

* Debian 11 Support

Run api ci test on bullseye as well

* Silan does not work for mp3 on bullseye

* Liquisoap does not fail with wma files on bullseye
This commit is contained in:
Jonas L 2021-11-09 10:21:40 +01:00 committed by GitHub
parent 452dd64970
commit 4057c88cf0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 77 additions and 49 deletions

9
Vagrantfile vendored
View file

@ -96,6 +96,15 @@ Vagrant.configure('2') do |config|
setup_libretime(os, 'debian.sh')
end
config.vm.define 'debian-bullseye' do |os|
os.vm.box = 'debian/bullseye64'
config.vm.provider 'virtualbox' do |v, override|
override.vm.box = 'bento/debian-11'
end
setup_nfs(config, 4)
setup_libretime(os, 'debian.sh')
end
config.vm.define 'debian-buster' do |os|
os.vm.box = 'debian/buster64'
config.vm.provider 'virtualbox' do |v, override|