iris_cx
1 year ago
1 changed files with 23 additions and 16 deletions
@ -1,18 +1,25 @@ |
|||||
pipeline { |
podTemplate { |
||||
agent { |
node('pod-templ-jenkins-slave-common') { |
||||
node{ |
|
||||
label 'jnlp-slave' |
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" |
||||
|
|
||||
|
stage('Run shell') { |
||||
|
git branch: 'dev', credentialsId: 'gitea-builder', url: "${CODE_ADDR}" |
||||
|
|
||||
|
container('image-builder') { |
||||
|
sh''' |
||||
|
|
||||
|
/kaniko/executor --context=${BUILD_WORKSPACE} |
||||
|
--dockerfile=./web/Dockerfile |
||||
|
--destination=${IMAGE_NAME}:${IMAGE_VERSION} |
||||
|
--cache=false --cleanup |
||||
|
''' |
||||
|
} |
||||
|
|
||||
|
buildName "${IMAGE_NAME_SHORT}:${IMAGE_VERSION}" |
||||
|
buildDescription "${IMAGE_NAME}:${IMAGE_VERSION}" |
||||
|
} |
||||
} |
} |
||||
} |
|
||||
|
|
||||
stages { |
|
||||
stage('Testing hrm-web ......') { |
|
||||
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} ./web' |
|
||||
sh 'nerdctl push harbor.anxinyun.cn/pep/${JOB_NAME}:${IMAGE_VERSION}' |
|
||||
} |
|
||||
} |
|
||||
} |
|
||||
} |
} |
Loading…
Reference in new issue