Files
release11-tools-xml/Jenkinsfile
Wojciech Czop 3e7daea3ac Initial commit
2021-04-26 16:16:04 +02:00

12 lines
275 B
Groovy

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 'docker-compose --context gordon up --force-recreate --build -d'
}
}