Browse Source

更新 'jenkinsfile_poms_api'

master
sunyue 1 year ago
parent
commit
a49d69a887
  1. 32
      jenkinsfile_poms_api

32
jenkinsfile_poms_api

@ -1,25 +1,21 @@
podTemplate { podTemplate {
node('pod-templ-jenkins-slave-common') { node('pod-templ-jenkins-slave-common') {
env.IMAGE_NAME = "${IOT_IMAGES_REGISTRY}/${PEP}/${JOB_NAME}" env.IMAGE_NAME = "${IOT_IMAGES_REGISTRY}/${PEP}/${JOB_NAME}"
env.IMAGE_NAME_SHORT = "${PEP}/${JOB_NAME}" env.IMAGE_NAME_SHORT = "${PEP}/${JOB_NAME}"
env.CODE_ADDR = "${GIT_ADDRESS}/free-sun/HumanResource.git" env.CODE_ADDR = "${GIT_ADDRESS}/free-sun/HumanResource.git"
stage('Run shell') { stage('Run shell') {
git branch: 'master', credentialsId: 'gitea-builder', url: "${CODE_ADDR}" git branch: 'master', credentialsId: 'gitea-builder', url: "${CODE_ADDR}"
container('image-builder') { container('image-builder') {
sh''' sh'''
/kaniko/executor --context=${BUILD_WORKSPACE} --dockerfile=./api/Dockerfile --destination=${IMAGE_NAME}:${IMAGE_VERSION} --cache=false --cleanup
'''
}
/kaniko/executor --context=${BUILD_WORKSPACE} buildName "${IMAGE_NAME_SHORT}:${IMAGE_VERSION}"
--dockerfile=./api/Dockerfile buildDescription "${IMAGE_NAME}:${IMAGE_VERSION}"
--destination=${IMAGE_NAME}:${IMAGE_VERSION} }
--cache=false --cleanup }
'''
}
buildName "${IMAGE_NAME_SHORT}:${IMAGE_VERSION}"
buildDescription "${IMAGE_NAME}:${IMAGE_VERSION}"
}
}
} }
Loading…
Cancel
Save