Skip to content

Commit

Permalink
feat(*): generate release v5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
anapolg committed Sep 5, 2019
1 parent 4e6bf78 commit 0267bdf
Showing 1 changed file with 15 additions and 14 deletions.
29 changes: 15 additions & 14 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,20 +37,21 @@ pipeline {
sh 'docker push registry.sonata-nfv.eu:5000/tng-sdk-validation'
}
}
stage('Deployment in Integration') {
steps {
echo 'Deploying in integration...'
}
}
stage('Smoke Tests') {
steps {
echo 'Performing Smoke Tests....'
}
}
stage('Publish Results') {
steps {
echo 'Publish Results...'
}
stage('Promoting release v5.0') {
when {
branch 'v5.0'
}
stages {
stage('Generating release') {
steps {
sh 'docker tag registry.sonata-nfv.eu:5000/tng-sdk-validation:latest registry.sonata-nfv.eu:5000/tng-sdk-validation:v5.0'
sh 'docker tag registry.sonata-nfv.eu:5000/tng-sdk-validation:latest sonatanfv/tng-sdk-validation:v5.0'
sh 'docker push registry.sonata-nfv.eu:5000/tng-sdk-validation:v5.0'
sh 'docker push sonatanfv/tng-sdk-validation:v5.0'
}
}
}
}

}
}

0 comments on commit 0267bdf

Please sign in to comment.