-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
67 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,7 @@ | |
version: | ||
- '3.10' | ||
- '3.11' | ||
- '3.12' | ||
- nightly | ||
type: | ||
- foreman | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,7 @@ | |
version: | ||
- '4.12' | ||
- '4.13' | ||
- '4.14' | ||
- 'nightly' | ||
type: | ||
- katello | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
def foreman_version = '3.12' | ||
def git_branch = "${foreman_version}-stable" | ||
|
||
def foreman_client_distros = [ | ||
'el9', | ||
'el8', | ||
'el7' | ||
] | ||
def foreman_el_releases = [ | ||
'el9', | ||
'el8' | ||
] | ||
def foreman_debian_releases = ['bullseye', 'bookworm', 'focal', 'jammy'] | ||
|
||
def pipelines_deb = [ | ||
'install': [ | ||
'debian11', | ||
'ubuntu2004', | ||
'ubuntu2204' | ||
], | ||
'upgrade': [ | ||
'debian11', | ||
'ubuntu2004', | ||
'ubuntu2204' | ||
] | ||
] | ||
|
||
def pipelines_el = [ | ||
'install': [ | ||
'centos9-stream', | ||
'almalinux8', | ||
'almalinux9', | ||
], | ||
'upgrade': [ | ||
'centos9-stream', | ||
'almalinux8', | ||
'almalinux9', | ||
] | ||
] | ||
|
||
def pipelines = [ | ||
'install': pipelines_deb['install'] + pipelines_el['install'], | ||
'upgrade': pipelines_deb['upgrade'] + pipelines_el['upgrade'], | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
def foreman_version = '3.12' | ||
def katello_version = '4.14' | ||
def foreman_el_releases = [ | ||
'el8', | ||
'el9' | ||
] | ||
def pipelines = [ | ||
'install': [ | ||
'centos9-stream', | ||
'almalinux8', | ||
'almalinux9', | ||
], | ||
'upgrade': [ | ||
'centos9-stream', | ||
'almalinux8', | ||
'almalinux9', | ||
] | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
- '3.10' | ||
- '3.11' | ||
- '3.12' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
- '3.10' | ||
- '3.11' | ||
- '3.12' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,3 +20,4 @@ | |
version: | ||
- '4.12' | ||
- '4.13' | ||
- '4.14' |