summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2019-12-27 15:58:33 +0100
committerChristian Poessinger <christian@poessinger.com>2019-12-27 15:58:33 +0100
commitd7411378065043bdff7f0963d7bc878653aaf2ac (patch)
treeef28074f51834f2e50302dff8c5c61b366e2d4f6
parentdc1e576b2811d93cbba4a32aebdd08d07ec85c40 (diff)
downloadmdns-repeater-d7411378065043bdff7f0963d7bc878653aaf2ac.tar.gz
mdns-repeater-d7411378065043bdff7f0963d7bc878653aaf2ac.zip
Jenkins: make pipeline branch independent
-rw-r--r--Jenkinsfile20
1 files changed, 18 insertions, 2 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
index 63a271b..ed98477 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -69,11 +69,24 @@ def projectProperties = [
properties(projectProperties)
setDescription()
+node('Docker') {
+ stage('Define Agent') {
+ script {
+ // create container name on demand
+ def branchName = getGitBranchName()
+ if (branchName == "master") {
+ branchName = "current"
+ }
+ env.DOCKER_IMAGE = "vyos/vyos-build:" + branchName
+ }
+ }
+}
+
pipeline {
agent {
docker {
- args '--sysctl net.ipv6.conf.lo.disable_ipv6=0 -e GOSU_UID=1006 -e GOSU_GID=1006'
- image 'vyos/vyos-build:current'
+ args "--sysctl net.ipv6.conf.lo.disable_ipv6=0 -e GOSU_UID=1006 -e GOSU_GID=1006"
+ image "${env.DOCKER_IMAGE}"
alwaysPull true
}
}
@@ -127,6 +140,9 @@ pipeline {
}
def VYOS_REPO_PATH = '/home/sentrium/web/dev.packages.vyos.net/public_html/repositories/' + RELEASE + '/'
+ if (getGitBranchName() == "crux")
+ VYOS_REPO_PATH += 'vyos/'
+
def SSH_OPTS = '-o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o LogLevel=ERROR'
def SSH_REMOTE = 'khagen@10.217.48.113'