Browse Source

更新 'jenkinsfile_api'

master
iris_cx 1 year ago
parent
commit
f0b652739f
  1. 39
      jenkinsfile_api

39
jenkinsfile_api

@ -1,18 +1,25 @@
pipeline { podTemplate {
agent { node('pod-templ-jenkins-slave-common') {
node{
label 'jnlp-slave'
}
}
stages { env.IMAGE_NAME = "${IOT_IMAGES_REGISTRY}/${IOT}/${JOB_NAME}"
stage('巡检 api ......') { env.IMAGE_NAME_SHORT = "${IOT}/${JOB_NAME}"
steps { env.CODE_ADDR = "${GIT_ADDRESS}/free-sun/Inspection.git"
buildName "#${BUILD_NUMBER} ~/smartcity/${JOB_NAME}:${IMAGE_VERSION}"
buildDescription "harbor.anxinyun.cn/smartcity/${JOB_NAME}:${IMAGE_VERSION}" stage('Run shell') {
sh 'nerdctl build -t harbor.anxinyun.cn/smartcity/${JOB_NAME}:${IMAGE_VERSION} ./api' git branch: 'master', credentialsId: 'gitea-builder', url: "${CODE_ADDR}"
sh 'nerdctl push harbor.anxinyun.cn/smartcity/${JOB_NAME}:${IMAGE_VERSION}'
} container('image-builder') {
} sh'''
} pwd
ls -al
/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