From: chengli3 Date: Fri, 20 Sep 2019 03:11:28 +0000 (+0800) Subject: Add the initial Jenkinsfile for test purpose X-Git-Url: https://gerrit.akraino.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F28%2F1628%2F2;p=icn.git Add the initial Jenkinsfile for test purpose Change-Id: Iff077dd1cdc1142d9354cf86e65015e18071bba6 --- diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..b7b5c7f --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,16 @@ +pipeline { + agent any + options { + skipDefaultCheckout() + } + environment { + changeBranch = "change-${GERRIT_CHANGE_NUMBER}-${GERRIT_PATCHSET_NUMBER}" + } + stages { + stage("Build ISO Image") { + steps { + echo "refspec: ${GERRIT_REFSPEC}, branch: ${GERRIT_BRANCH}" + } + } + } +}