Added gchat message

This commit is contained in:
Jonathan Ervine 2020-08-12 11:40:17 +08:00
parent ee806a5159
commit 59506de582

6
Jenkinsfile vendored
View File

@ -27,9 +27,13 @@ spec:
stage('Build with Kaniko') {
git url: 'ssh://git@git.ervine.org/jonny/x86_64-alpine-sonarr.git', credentialsId: 'jenkins-to-git'
container('kaniko') {
sh '/kaniko/executor -f `pwd`/Dockerfile -c `pwd` --cache=true --destination=harbor.ervine.dev/library/x86_64/alpine/sonarr:2.0.0.5344 --destination=harbor.ervine.dev/library/x86_64/alpine/sonarr:2 --destination=harbor.ervine.dev/public/x86_64/alpine/sonarr:v2.0.0.5344 --destination=harbor.ervine.dev/public/x86_64/alpine/sonarr:v2'
sh '/kaniko/executor -f `pwd`/Dockerfile -c `pwd` --cache=true --destination=harbor.ervine.dev/public/x86_64/alpine/sonarr:v2.0.0.5344 --destination=harbor.ervine.dev/public/x86_64/alpine/sonarr:v2'
}
}
}
}
stage('Notify gchat') {
hangoutsNotify message: "Sonarr 2 on Alpine has built",token: "A2ET831pVslqXTqAx6ycu573r",threadByJob: false
}