@@ -535,7 +535,7 @@ void call(Map pipeline_args) {
535
535
}
536
536
}
537
537
} // stage('Build RPM on EL 9')
538
- stage(' Build RPM on Leap 15.4 ' ) {
538
+ stage(' Build RPM on Leap 15.6 ' ) {
539
539
when {
540
540
beforeAgent true
541
541
expression { ! skipStage() && distros. contains(' leap15' ) }
@@ -555,19 +555,19 @@ void call(Map pipeline_args) {
555
555
sh label : ' Build package' ,
556
556
script : ''' rm -rf artifacts/leap15/
557
557
mkdir -p artifacts/leap15/
558
- make CHROOT_NAME="opensuse-leap-15.4 -x86_64" ''' +
558
+ make CHROOT_NAME="opensuse-leap-15.6 -x86_64" ''' +
559
559
' DISTRO_VERSION=' + parseStageInfo()[' distro_version' ] + ' ' +
560
560
pipeline_args. get(' make args' , ' ' ) + ' chrootbuild ' +
561
561
pipeline_args. get(' add_make_targets' , ' ' )
562
562
}
563
563
post {
564
564
success {
565
- rpmlintMockResults(' opensuse-leap-15.4 -x86_64' ,
565
+ rpmlintMockResults(' opensuse-leap-15.6 -x86_64' ,
566
566
pipeline_args. get(' rpmlint_rpms_allow_errors' , false ),
567
567
pipeline_args. get(' rpmlint_rpms_skip' , false ),
568
568
pipeline_args. get(' make args' , ' ' ))
569
569
sh label : ' Collect artifacts' ,
570
- script : ''' (cd /var/lib/mock/opensuse-leap-15.4 -x86_64/result/ &&
570
+ script : ''' (cd /var/lib/mock/opensuse-leap-15.6 -x86_64/result/ &&
571
571
cp -r . $OLDPWD/artifacts/leap15/)\n ''' +
572
572
pipeline_args. get(' add_archiving_cmds' , ' ' ). replace(' <distro>' ,
573
573
' leap15' ) +
@@ -584,7 +584,7 @@ void call(Map pipeline_args) {
584
584
}
585
585
unsuccessful {
586
586
sh label : ' Build Log' ,
587
- script : ''' mockroot=/var/lib/mock/opensuse-leap-15.4 -x86_64
587
+ script : ''' mockroot=/var/lib/mock/opensuse-leap-15.6 -x86_64
588
588
ls -l $mockroot/result/
589
589
cat $mockroot/result/{root,build}.log
590
590
artdir=$PWD/artifacts/leap15
@@ -594,9 +594,9 @@ void call(Map pipeline_args) {
594
594
}
595
595
always {
596
596
scrubSecret(pipeline_args[' secret' ],
597
- ' /var/lib/mock/opensuse-leap-15.4 -x86_64/result/build.log' )
597
+ ' /var/lib/mock/opensuse-leap-15.6 -x86_64/result/build.log' )
598
598
sh label : ' Collect config.log(s)' ,
599
- script : ' (if cd /var/lib/mock/opensuse-leap-15.4 -x86_64/root/builddir/build/' +
599
+ script : ' (if cd /var/lib/mock/opensuse-leap-15.6 -x86_64/root/builddir/build/' +
600
600
''' BUILD/*/; then
601
601
find . -name configure -printf %h\\\\ n | \
602
602
while read dir; do
@@ -613,7 +613,7 @@ void call(Map pipeline_args) {
613
613
archiveArtifacts artifacts : ' artifacts/leap15/**'
614
614
}
615
615
}
616
- } // stage('Build RPM on Leap 15')
616
+ } // stage('Build RPM on Leap 15.6 ')
617
617
stage(' Build DEB on Ubuntu 20.04' ) {
618
618
when {
619
619
beforeAgent true
0 commit comments