@@ -535,7 +535,7 @@ void call(Map pipeline_args) {
535535 }
536536 }
537537 } // stage('Build RPM on EL 9')
538- stage(' Build RPM on Leap 15.4 ' ) {
538+ stage(' Build RPM on Leap 15.6 ' ) {
539539 when {
540540 beforeAgent true
541541 expression { ! skipStage() && distros. contains(' leap15' ) }
@@ -555,19 +555,19 @@ void call(Map pipeline_args) {
555555 sh label : ' Build package' ,
556556 script : ''' rm -rf artifacts/leap15/
557557 mkdir -p artifacts/leap15/
558- make CHROOT_NAME="opensuse-leap-15.4 -x86_64" ''' +
558+ make CHROOT_NAME="opensuse-leap-15.6 -x86_64" ''' +
559559 ' DISTRO_VERSION=' + parseStageInfo()[' distro_version' ] + ' ' +
560560 pipeline_args. get(' make args' , ' ' ) + ' chrootbuild ' +
561561 pipeline_args. get(' add_make_targets' , ' ' )
562562 }
563563 post {
564564 success {
565- rpmlintMockResults(' opensuse-leap-15.4 -x86_64' ,
565+ rpmlintMockResults(' opensuse-leap-15.6 -x86_64' ,
566566 pipeline_args. get(' rpmlint_rpms_allow_errors' , false ),
567567 pipeline_args. get(' rpmlint_rpms_skip' , false ),
568568 pipeline_args. get(' make args' , ' ' ))
569569 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/ &&
571571 cp -r . $OLDPWD/artifacts/leap15/)\n ''' +
572572 pipeline_args. get(' add_archiving_cmds' , ' ' ). replace(' <distro>' ,
573573 ' leap15' ) +
@@ -584,7 +584,7 @@ void call(Map pipeline_args) {
584584 }
585585 unsuccessful {
586586 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
588588 ls -l $mockroot/result/
589589 cat $mockroot/result/{root,build}.log
590590 artdir=$PWD/artifacts/leap15
@@ -594,9 +594,9 @@ void call(Map pipeline_args) {
594594 }
595595 always {
596596 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' )
598598 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/' +
600600 ''' BUILD/*/; then
601601 find . -name configure -printf %h\\\\ n | \
602602 while read dir; do
@@ -613,7 +613,7 @@ void call(Map pipeline_args) {
613613 archiveArtifacts artifacts : ' artifacts/leap15/**'
614614 }
615615 }
616- } // stage('Build RPM on Leap 15')
616+ } // stage('Build RPM on Leap 15.6 ')
617617 stage(' Build DEB on Ubuntu 20.04' ) {
618618 when {
619619 beforeAgent true
0 commit comments