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

Add 3.9 and 4.11 jobs for branching #380

Merged
merged 1 commit into from
Nov 29, 2023
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 @@ -10,6 +10,7 @@
version:
- '3.7'
- '3.8'
- '3.9'
- nightly
type:
- foreman
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.9-stable': [
'ruby': ['2.7'],
'katello': 'KATELLO-4.11'
],
'3.8-stable': [
'ruby': ['2.7'],
'katello': 'KATELLO-4.10'
Expand Down Expand Up @@ -41,6 +45,10 @@ def foreman_unit_versions = [
'develop': [
'ruby': ['2.7']
],
'3.9-stable': [
'ruby': ['2.7'],
'katello': 'KATELLO-4.11'
],
'3.8-stable': [
'ruby': ['2.7'],
'katello': 'KATELLO-4.10'
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.11': [
'foreman': '3.9-stable',
'ruby': ['2.7']
],
'KATELLO-4.10': [
'foreman': '3.8-stable',
'ruby': ['2.7']
Expand Down
41 changes: 41 additions & 0 deletions theforeman.org/pipelines/vars/foreman/3.9.groovy
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
def foreman_version = '3.9'
def git_branch = "${foreman_version}-stable"
def stage_source = 'copr'

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

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

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

def pipelines = [
'install': pipelines_deb['install'] + pipelines_el['install'],
'upgrade': pipelines_deb['upgrade'] + pipelines_el['upgrade'],
]
16 changes: 16 additions & 0 deletions theforeman.org/pipelines/vars/katello/4.11.groovy
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
def foreman_version = '3.9'
def katello_version = '4.11'
def stage_source = 'copr'
def foreman_el_releases = [
'el8'
]
def pipelines = [
'install': [
'centos8-stream',
'almalinux8',
],
'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,2 +1,3 @@
- '3.7'
- '3.8'
- '3.9'
33 changes: 33 additions & 0 deletions theforeman.org/yaml/jobs/test_3_9_stable.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
- job:
name: test_3_9_stable
project-type: matrix
quiet-period: 2700
properties:
- github_foreman
scm:
- foreman:
branch: '3.9-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'