Add tests for Buster (ext4/btrfs)

This commit is contained in:
Jérémy Lecour 2020-04-11 08:54:01 +02:00 committed by Jérémy Lecour
parent e14ca8dff3
commit 8e780eafed
2 changed files with 4 additions and 1 deletions

View File

@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* Create a blank SSH "authorized_keys" file on jail init
* Many new tests with BATS
* Check for firewall configuration in bkcld-check
* Run the test suite on Buster (ext4/btrfs) in addition of Stretch (ext4/btrfs)
### Changed

4
Vagrantfile vendored
View File

@ -45,7 +45,9 @@ SCRIPT
nodes = [
{ :version => "stretch", :fs => "btrfs" },
{ :version => "stretch", :fs => "ext4" }
{ :version => "stretch", :fs => "ext4" },
{ :version => "buster", :fs => "btrfs" },
{ :version => "buster", :fs => "ext4" }
]
nodes.each do |i|