File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2222 uses : voxpupuli/gha-puppet/.github/workflows/beaker.yml@v3
2323 with :
2424 beaker_hosts : ' host1:shard.ma;host2:slave,router.a'
25- beaker_facter : ' mongodb_repo_version:MongoDB:5.0, 6.0,7.0'
25+ beaker_facter : ' mongodb_repo_version:MongoDB:6.0,7.0'
Original file line number Diff line number Diff line change @@ -4,4 +4,4 @@ appveyor.yml:
44.github/workflows/ci.yml :
55 with :
66 beaker_hosts : ' host1:shard.ma;host2:slave,router.a'
7- beaker_facter : ' mongodb_repo_version:MongoDB:5.0, 6.0,7.0'
7+ beaker_facter : ' mongodb_repo_version:MongoDB:6.0,7.0'
Original file line number Diff line number Diff line change 33def supported_version? ( platform , version )
44 return true if version . nil?
55
6- supported_versions = %w[ 5.0 6.0 7.0 ]
6+ supported_versions = %w[ 6.0 7.0 ]
77 return false unless supported_versions . include? ( version )
88
99 supported_versions . reject! do |v |
10- ( v < '6.0' && platform . start_with? ( 'el-9' ) ) ||
11- ( v > '6.0' && platform . start_with? ( 'debian-10' ) ) ||
12- ( v < '5.0' && platform . start_with? ( 'debian-11' ) ) ||
13- ( v < '7.0' && platform . start_with? ( 'debian-12' ) ) ||
14- ( v < '6.0' && platform . start_with? ( 'ubuntu-22' ) )
10+ ( v < '7.0' && platform . start_with? ( 'debian-12' ) )
1511 end
1612
1713 supported_versions . include? ( version )
You can’t perform that action at this time.
0 commit comments