Skip to content

Commit 84e2e9a

Browse files
authored
Merge branch 'master' into jmj/wix_v6
2 parents e0db0e0 + 8921965 commit 84e2e9a

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

linux/Jenkinsfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -582,6 +582,7 @@ def uploadRpmArtifacts(String DISTRO, String rpmArch, String Version) {
582582
'rpm/rhel/7',
583583
'rpm/rhel/8',
584584
'rpm/rhel/9',
585+
'rpm/rhel/10',
585586
'rpm/fedora/35',
586587
'rpm/fedora/36',
587588
'rpm/fedora/37',

linux_new/Jenkinsfile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ def rhel_distros = [
4040
'rpm/rhel/7',
4141
'rpm/rhel/8',
4242
'rpm/rhel/9',
43+
'rpm/rhel/10',
4344
'rpm/fedora/35',
4445
'rpm/fedora/36',
4546
'rpm/fedora/37',
@@ -802,7 +803,7 @@ stage('Build & Archive Package') {
802803
} finally {
803804
def basePattern = '**/build/ospackage/*,**/build/reports/**'
804805
def archivePattern = ''
805-
806+
806807
if (DistArrayElement == 'debian' && !params.SKIP_DEBIAN) {
807808
archivePattern = "${basePattern},**/packageTest/dependencies/deb/*"
808809
archiveArtifacts artifacts: archivePattern,
@@ -811,7 +812,7 @@ stage('Build & Archive Package') {
811812
} else if (DistArrayElement == 'debian') {
812813
echo "Skipping archive for Debian as SKIP_DEBIAN is true"
813814
}
814-
815+
815816
if (DistArrayElement == 'rhel' && !params.SKIP_RHEL) {
816817
archivePattern = "${basePattern},**/packageTest/dependencies/rpm/*"
817818
archiveArtifacts artifacts: archivePattern,
@@ -820,7 +821,7 @@ stage('Build & Archive Package') {
820821
} else if (DistArrayElement == 'rhel') {
821822
echo "Skipping archive for RHEL as SKIP_RHEL is true"
822823
}
823-
824+
824825
if (DistArrayElement == 'suse' && !params.SKIP_SUSE) {
825826
archivePattern = "${basePattern},**/packageTest/dependencies/rpm/*"
826827
archiveArtifacts artifacts: archivePattern,
@@ -829,7 +830,7 @@ stage('Build & Archive Package') {
829830
} else if (DistArrayElement == 'suse') {
830831
echo "Skipping archive for SUSE as SKIP_SUSE is true"
831832
}
832-
833+
833834
if (DistArrayElement == 'alpine' && !params.SKIP_ALPINE) {
834835
archivePattern = "${basePattern},**/packageTest/dependencies/apk/*"
835836
archiveArtifacts artifacts: archivePattern,

0 commit comments

Comments
 (0)