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

Foreman 3.10 Jobs/Pipelines #417

Merged
merged 1 commit into from
Feb 20, 2024
Merged
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
1 change: 1 addition & 0 deletions centos.org/jobs/foreman-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
- '3.7'
- '3.8'
- '3.9'
- '3.10'
- nightly
type:
- foreman
Expand Down
1 change: 1 addition & 0 deletions centos.org/jobs/katello-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
- '4.9'
- '4.10'
- '4.11'
- '4.12'
- 'nightly'
type:
- katello
Expand Down
8 changes: 8 additions & 0 deletions theforeman.org/pipelines/test/foreman/vars.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ def foreman_integration_versions = [
'ruby': ['2.7'],
'katello': 'master'
],
'3.10-stable': [
'ruby': ['2.7'],
'katello': 'KATELLO-4.12'
],
'3.9-stable': [
'ruby': ['2.7'],
'katello': 'KATELLO-4.11'
Expand Down Expand Up @@ -33,6 +37,10 @@ def foreman_unit_versions = [
'develop': [
'ruby': ['2.7']
],
'3.10-stable': [
'ruby': ['2.7'],
'katello': 'KATELLO-4.12'
],
'3.9-stable': [
'ruby': ['2.7'],
'katello': 'KATELLO-4.11'
Expand Down
4 changes: 4 additions & 0 deletions theforeman.org/pipelines/test/testKatello.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ def katello_versions = [
'foreman': 'develop',
'ruby': ['2.7']
],
'KATELLO-4.12': [
'foreman': '3.10-stable',
'ruby': ['2.7']
],
'KATELLO-4.11': [
'foreman': '3.9-stable',
'ruby': ['2.7']
Expand Down
43 changes: 43 additions & 0 deletions theforeman.org/pipelines/vars/foreman/3.10.groovy
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
def foreman_version = '3.10'
def git_branch = "${foreman_version}-stable"
def stage_source = 'stagingyum'

def foreman_client_distros = [
'el9',
'el8',
'el7'
]
def foreman_el_releases = [
'el9',
'el8'
]
def foreman_debian_releases = ['bullseye', 'focal']

def pipelines_deb = [
'install': [
'debian11',
'ubuntu2004'
],
'upgrade': [
'debian11',
'ubuntu2004'
]
]

def pipelines_el = [
'install': [
'centos8-stream',
'centos9-stream',
'almalinux8',
'almalinux9',
],
'upgrade': [
'centos8-stream',
'almalinux8',
]
]

def pipelines = [
'install': pipelines_deb['install'] + pipelines_el['install'],
'upgrade': pipelines_deb['upgrade'] + pipelines_el['upgrade'],
]
19 changes: 19 additions & 0 deletions theforeman.org/pipelines/vars/katello/4.12.groovy
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
def foreman_version = '3.10'
def katello_version = '4.12'
def stage_source = 'stagingyum'
def foreman_el_releases = [
'el8',
'el9'
]
def pipelines = [
'install': [
'centos8-stream',
'centos9-stream',
'almalinux8',
'almalinux9',
],
'upgrade': [
'centos8-stream',
'almalinux8',
]
]
1 change: 1 addition & 0 deletions theforeman.org/yaml/includes/foreman_versions.yaml.inc
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
- '3.7'
- '3.8'
- '3.9'
- '3.10'
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
- '3.9'
- '3.10'
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,4 @@
- '4.9'
- '4.10'
- '4.11'
- '4.12'
33 changes: 33 additions & 0 deletions theforeman.org/yaml/jobs/test_3_10_stable.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
- job:
name: test_3_10_stable
project-type: matrix
quiet-period: 2700
properties:
- github_foreman
scm:
- foreman:
branch: '3.10-stable'
triggers:
- scm_fifteen_minutes
- github
axes:
- axis:
type: user-defined
name: ruby
values:
- 2.7
- axis:
type: label-expression
name: slave
values:
- fast
builders:
- test_develop
publishers:
- gemset_cleanup
- ircbot_freenode
- archive:
artifacts: 'pkg/*,Gemfile.lock,package-lock.json'
only-if-success: false
- junit:
results: 'jenkins/reports/unit/*.xml'
1 change: 1 addition & 0 deletions theforeman.org/yaml/views/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
- '7'
- '8'
- '9'
- '10'

- view:
name: 'Foreman Nightly'
Expand Down