CI: add fedora-37, -38 to vagrant tests (#2299)
This commit is contained in:
parent
e42841cd00
commit
d4c0643122
3 changed files with 17 additions and 1 deletions
|
@ -65,7 +65,6 @@ linters:
|
|||
# - asciicheck # Simple linter to check that your code does not contain non-ASCII identifiers
|
||||
# - bidichk # Checks for dangerous unicode character sequences
|
||||
# - decorder # check declaration order and count of types, constants, variables and functions
|
||||
# - depguard # Go linter that checks if package imports are in a list of acceptable packages
|
||||
# - dupword # checks for duplicate words in the source code
|
||||
# - durationcheck # check for two durations multiplied together
|
||||
# - errcheck # Errcheck is a program for checking for unchecked errors in go programs. These unchecked errors can be critical bugs in some cases
|
||||
|
@ -125,6 +124,7 @@ linters:
|
|||
- thelper # thelper detects golang test helpers without t.Helper() call and checks the consistency of test helpers
|
||||
- wastedassign # wastedassign finds wasted assignment statements.
|
||||
- wrapcheck # Checks that errors returned from external packages are wrapped
|
||||
- depguard # Go linter that checks if package imports are in a list of acceptable packages
|
||||
|
||||
#
|
||||
# Recommended? (requires some work)
|
||||
|
|
8
test/ansible/vagrant/fedora-37/Vagrantfile
vendored
Normal file
8
test/ansible/vagrant/fedora-37/Vagrantfile
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
Vagrant.configure('2') do |config|
|
||||
config.vm.box = 'generic/fedora37'
|
||||
end
|
||||
|
||||
common = '../common'
|
||||
load common if File.exist?(common)
|
8
test/ansible/vagrant/fedora-38/Vagrantfile
vendored
Normal file
8
test/ansible/vagrant/fedora-38/Vagrantfile
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
Vagrant.configure('2') do |config|
|
||||
config.vm.box = "fedora/38-cloud-base"
|
||||
end
|
||||
|
||||
common = '../common'
|
||||
load common if File.exist?(common)
|
Loading…
Reference in a new issue