Browse Source

更新jenkinsfile

main
Julin 1 year ago
parent
commit
52663ade55
  1. 34
      code/pep-stats-report/jenkinsfile

34
code/pep-stats-report/jenkinsfile

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

Loading…
Cancel
Save