Browse Source

更新 'jenkinsfile_web'

master
iris_cx 1 year ago
parent
commit
c0efc60a37
  1. 33
      jenkinsfile_web

33
jenkinsfile_web

@ -1,18 +1,25 @@
pipeline { podTemplate {
agent { node('pod-templ-jenkins-slave-common') {
node{
label 'jnlp-slave' env.IMAGE_NAME = "${IOT_IMAGES_REGISTRY}/${IOT}/${JOB_NAME}"
} env.IMAGE_NAME_SHORT = "${IOT}/${JOB_NAME}"
} env.CODE_ADDR = "${GIT_ADDRESS}/free-sun/Inspection.git"
stage('Run shell') {
git branch: 'dev', credentialsId: 'gitea-builder', url: "${CODE_ADDR}"
stages { container('image-builder') {
stage('巡检 web ......') { sh'''
steps { pwd
buildName "#${BUILD_NUMBER} ~/smartcity/${JOB_NAME}:${IMAGE_VERSION}" ls -al
buildDescription "harbor.anxinyun.cn/smartcity/${JOB_NAME}:${IMAGE_VERSION}"
sh 'nerdctl build -t harbor.anxinyun.cn/smartcity/${JOB_NAME}:${IMAGE_VERSION} ./web' /kaniko/executor --context=${BUILD_WORKSPACE} --dockerfile=./web/Dockerfile --destination=${IMAGE_NAME}:${IMAGE_VERSION} --cache=false --cleanup
sh 'nerdctl push harbor.anxinyun.cn/smartcity/${JOB_NAME}:${IMAGE_VERSION}'
'''
} }
buildName "${IMAGE_NAME_SHORT}:${IMAGE_VERSION}"
buildDescription "${IMAGE_NAME}:${IMAGE_VERSION}"
} }
} }
} }
Loading…
Cancel
Save