b7b5c7fccca9c2c3994fb27827e48e4c5953a16a
[icn.git] / Jenkinsfile
1 pipeline {
2     agent any
3     options {
4         skipDefaultCheckout()
5     }
6     environment {
7         changeBranch = "change-${GERRIT_CHANGE_NUMBER}-${GERRIT_PATCHSET_NUMBER}"
8     }
9     stages {
10         stage("Build ISO Image") {
11             steps {
12                 echo "refspec: ${GERRIT_REFSPEC}, branch: ${GERRIT_BRANCH}"
13             }
14         }
15     }
16 }