File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -80,6 +80,7 @@ pipeline {
8080 sh ' (cd install/ && tar czf "../OMSimulator-linux-focal-amd64-`git describe --tags --abbrev=7 --match=v*.* --exclude=*-dev | sed \' s/-/.post/\' `.tar.gz" *)'
8181
8282 archiveArtifacts artifacts : ' OMSimulator-linux-focal-amd64-*.tar.gz' , fingerprint : true
83+ stash name : ' focal-amd64-zip' , includes : " OMSimulator-linux-focal-amd64-*.tar.gz"
8384 }
8485 }
8586 stage(' linux64-asan' ) {
@@ -445,6 +446,7 @@ EXIT /b 1
445446 }
446447 steps {
447448 unstash name : ' amd64-zip' // includes: "OMSimulator-linux-amd64-*.tar.gz"
449+ unstash name : ' focal-amd64-zip' // includes: "OMSimulator-linux-focal-amd64-*.tar.gz"
448450 unstash name : ' mingw-ucrt64-zip' // includes: "OMSimulator-mingw-ucrt64-*.zip"
449451 unstash name : ' win64-zip' // includes: "OMSimulator-win64-*.zip"
450452 // unstash name: 'osx-zip' // includes: "OMSimulator-osx-*.zip"
@@ -459,6 +461,9 @@ EXIT /b 1
459461 sshTransfer(
460462 remoteDirectory : " ${ DEPLOYMENT_PREFIX} linux-amd64/" ,
461463 sourceFiles : ' OMSimulator-linux-amd64-*.tar.gz' ),
464+ sshTransfer(
465+ remoteDirectory : " ${ DEPLOYMENT_PREFIX} linux-focal-amd64/" ,
466+ sourceFiles : ' OMSimulator-linux-focal-amd64-*.tar.gz' ),
462467 sshTransfer(
463468 remoteDirectory : " ${ DEPLOYMENT_PREFIX} win-mingw-ucrt64/" ,
464469 sourceFiles : ' OMSimulator-mingw-ucrt64-*.zip' ),
You can’t perform that action at this time.
0 commit comments