feat: use two deploy branches for CI builds
This commit is contained in:
commit
a56f09d9ec
|
@ -1,3 +1,6 @@
|
||||||
|
#!/usr/bin/env groovy
|
||||||
|
library 'status-jenkins-lib@v1.8.8'
|
||||||
|
|
||||||
pipeline {
|
pipeline {
|
||||||
agent { label 'linux' }
|
agent { label 'linux' }
|
||||||
|
|
||||||
|
@ -13,49 +16,41 @@ pipeline {
|
||||||
environment {
|
environment {
|
||||||
GIT_COMMITTER_NAME = 'status-im-auto'
|
GIT_COMMITTER_NAME = 'status-im-auto'
|
||||||
GIT_COMMITTER_EMAIL = 'auto@status.im'
|
GIT_COMMITTER_EMAIL = 'auto@status.im'
|
||||||
PROD_SITE = 'nimbus.team'
|
|
||||||
DEV_SITE = 'dev.nimbus.team'
|
|
||||||
DEV_HOST = 'jenkins@node-01.do-ams3.sites.misc.statusim.net'
|
|
||||||
SCP_OPTS = 'StrictHostKeyChecking=no'
|
|
||||||
}
|
}
|
||||||
|
|
||||||
stages {
|
stages {
|
||||||
stage('Install') {
|
stage('Install') {
|
||||||
steps {
|
steps {
|
||||||
sh "yarn install"
|
sh 'yarn install'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
stage('Build') {
|
stage('Build') {
|
||||||
steps {
|
steps { script {
|
||||||
sh 'yarn build'
|
sh 'yarn build'
|
||||||
sh "echo ${env.PROD_SITE} > build/CNAME"
|
jenkins.genBuildMetaJSON('build/build.json')
|
||||||
}
|
} }
|
||||||
}
|
}
|
||||||
|
|
||||||
stage('Publish Prod') {
|
stage('Publish') {
|
||||||
when { expression { env.GIT_BRANCH ==~ /.*master/ } }
|
|
||||||
steps {
|
steps {
|
||||||
sshagent(credentials: ['status-im-auto-ssh']) {
|
sshagent(credentials: ['status-im-auto-ssh']) {
|
||||||
sh "ghp-import -p build"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
stage('Publish Devel') {
|
|
||||||
when { expression { env.GIT_BRANCH !=~ /.*master/ } }
|
|
||||||
steps {
|
|
||||||
sshagent(credentials: ['jenkins-ssh']) {
|
|
||||||
sh """
|
sh """
|
||||||
rsync -e 'ssh -o ${SCP_OPTS}' -r --delete build/. \
|
ghp-import \
|
||||||
${env.DEV_HOST}:/var/www/${env.DEV_SITE}/
|
-b ${deployBranch()} \
|
||||||
|
-c ${deployDomain()} \
|
||||||
|
-p build
|
||||||
"""
|
"""
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
|
}
|
||||||
post {
|
post {
|
||||||
cleanup { cleanWs() }
|
cleanup { cleanWs() }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
def isMasterBranch() { GIT_BRANCH ==~ /.*master/ }
|
||||||
|
def deployBranch() { isMasterBranch() ? 'deploy-master' : 'deploy-develop' }
|
||||||
|
def deployDomain() { isMasterBranch() ? 'nimbus.team' : 'dev.nimbus.team' }
|
||||||
|
|
Loading…
Reference in New Issue