Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch to new OpenVox packages #152

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 10 additions & 34 deletions lib/puppet_metadata/aio.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,53 +12,29 @@ class AIO
BUILDS = {
# RPM-based
'RedHat' => {
'5' => 5..7,
'6' => 5..7,
'7' => 5..8,
'8' => 5..8,
'9' => 6..8,
'8' => [8],
'9' => [8],
},
'Fedora' => {
'26' => [5],
'27' => 5..6,
'28' => 5..6,
'29' => 5..6,
'30' => 5..7,
'31' => 5..7,
'32' => 6..7,
'34' => 6..7,
'36' => 7..8,
'40' => 7..8,
'36' => [8],
'40' => [8],
},
'SLES' => {
'11' => [7],
'12' => 7..8,
'15' => 7..8,
'15' => [8],
},
# deb-based
'Debian' => {
'7' => [5],
'8' => 5..6,
'9' => 5..7,
'10' => 5..8,
'11' => 6..8,
'12' => 7..8,
'11' => [8],
'12' => [8],
},
'Ubuntu' => {
'14.04' => 5..6,
'16.04' => 5..7,
'18.04' => 5..8,
'20.04' => 6..8,
'22.04' => 6..8,
'24.04' => 7..8,
'20.04' => [8],
'22.04' => [8],
'24.04' => [8],
},
}.freeze

PUPPET_RUBY_VERSIONS = {
4 => '2.1',
5 => '2.4',
6 => '2.5',
7 => '2.7',
8 => '3.2',
}.freeze

Expand Down
2 changes: 1 addition & 1 deletion lib/puppet_metadata/github_actions.rb
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def puppet_major_versions
{
name: "Puppet #{version}",
value: version,
collection: "puppet#{version}",
collection: "openvox#{version}",
}
end.compact
end
Expand Down
Loading