File tree Expand file tree Collapse file tree 1 file changed +17
-1
lines changed
Expand file tree Collapse file tree 1 file changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -5,11 +5,27 @@ pipeline {
55
66 environment {
77 VersionPrefix = ' 2.0.0'
8- VersionSuffix = ' rc.7'
8+ VersionSuffix = ' rc.7' + " + ${ BUILD_NUMBER } "
99 outputEnc = ' 65001'
1010 }
1111
1212 stages {
13+ // stage('Prepare Linux Environment') {
14+ // agent{ label 'master'}
15+ // steps{
16+ // dir('install'){
17+ // sh 'chmod +x make-dockers.sh && ./make-dockers.sh'
18+ // }
19+ // withCredentials([usernamePassword(credentialsId: 'docker-hub', passwordVariable: 'dockerpassword', usernameVariable: 'dockeruser')]) {
20+ // sh """
21+ // docker login -p $dockerpassword -u $dockeruser
22+ // docker push oscript/onescript-builder:deb
23+ // docker push oscript/onescript-builder:rpm
24+ // docker push oscript/onescript-builder:gcc
25+ // """.stripIndent()
26+ // }
27+ // }
28+ // }
1329 stage(' Build' ){
1430 parallel {
1531 stage(' Windows Build' ) {
You can’t perform that action at this time.
0 commit comments