Browse Source

更新 'jenkinsfile_poms_api'

master
iris_cx 1 year ago
parent
commit
4c7b0e25d2
  1. 33
      jenkinsfile_poms_api

33
jenkinsfile_poms_api

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