Merge branch 'master' of gitea.release11.com:R11/release11-tools into widlam/refactoring/issue#120

This commit is contained in:
2023-03-20 12:38:55 +01:00

23
Jenkinsfile vendored
View File

@@ -1,11 +1,16 @@
node('master'){
stage('git pull'){
git credentialsId: '7724c11a-2509-4aa3-9862-106aa354c5b8', url: 'ssh://_git@phabricator.release11.com/diffusion/CZOPW/czopw.git'
}
stage('build & deploy'){
sh 'cd Web/ && docker-compose --context gordon up --force-recreate --build -d'
}
pipeline {
agent any
stages {
stage('Run Tools Deployment Job') {
steps {
build(
job: '../tools-deployment',
parameters: [
string(name: 'TOOLS_BRANCH', value: "${GIT_BRANCH}")
]
)
}
}
}
}