'update files with ansible'

This commit is contained in:
jonny 2021-03-31 02:54:38 +00:00
parent 630d6c1be9
commit 5cf640b147

4
Jenkinsfile vendored
View File

@ -27,11 +27,11 @@ spec:
stage('Build with Kaniko') { stage('Build with Kaniko') {
git url: 'ssh://git@git.ervine.org/jonny/x86_64-alpine-wetty.git', credentialsId: 'jenkins-to-git' git url: 'ssh://git@git.ervine.org/jonny/x86_64-alpine-wetty.git', credentialsId: 'jenkins-to-git'
container('kaniko') { container('kaniko') {
sh '/kaniko/executor -f `pwd`/Dockerfile -c `pwd` --cache=true --destination=harbor.ervine.dev/public/x86_64/alpine/wetty:2.0.2' sh '/kaniko/executor -f `pwd`/Dockerfile -c `pwd` --cache=true --destination=harbor.ervine.dev/public/x86_64/alpine/wetty:2.0.3'
} }
} }
stage('Notify gchat') { stage('Notify gchat') {
hangoutsNotify message: "WeTTy 2.0.2 on Alpine Linux has built",token: "A2ET831pVslqXTqAx6ycu573r",threadByJob: false hangoutsNotify message: "WeTTy 2.0.3 on Alpine Linux has built",token: "A2ET831pVslqXTqAx6ycu573r",threadByJob: false
} }
} }
} }