Skip to content

Commit

Permalink
Add 3.9 and 4.11 jobs for branching
Browse files Browse the repository at this point in the history
  • Loading branch information
zjhuntin authored and pcreech committed Nov 29, 2023
1 parent 746bf7c commit 55c177c
Show file tree
Hide file tree
Showing 7 changed files with 104 additions and 0 deletions.
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'

0 comments on commit 55c177c

Please sign in to comment.