MeterSphere/Jenkinsfile

43 lines
1.5 KiB
Plaintext
Raw Normal View History

2020-12-18 11:57:58 +08:00
pipeline {
agent {
node {
2022-02-16 23:36:31 +08:00
label 'metersphere-buildx'
2020-12-18 11:57:58 +08:00
}
}
2020-12-21 16:57:42 +08:00
options { quietPeriod(600) }
2021-01-05 17:25:24 +08:00
environment {
IMAGE_NAME = 'metersphere'
IMAGE_PREFIX = 'registry.cn-qingdao.aliyuncs.com/metersphere'
2020-12-18 11:57:58 +08:00
}
stages {
stage('Build/Test') {
steps {
configFileProvider([configFile(fileId: 'metersphere-maven', targetLocation: 'settings.xml')]) {
2022-03-17 19:40:17 +08:00
sh '''
export JAVA_HOME=/opt/jdk-11
export CLASSPATH=$JAVA_HOME/lib:$CLASSPATH
export PATH=$JAVA_HOME/bin:$PATH
java -version
./mvnw clean package --settings ./settings.xml
mkdir -p backend/target/dependency && (cd backend/target/dependency; jar -xf ../*.jar)
'''
2020-12-18 11:57:58 +08:00
}
}
}
stage('Docker build & push') {
steps {
2022-02-16 23:36:31 +08:00
sh "docker buildx build --build-arg MS_VERSION=\${TAG_NAME:-\$BRANCH_NAME}-\${GIT_COMMIT:0:8} -t ${IMAGE_PREFIX}/${IMAGE_NAME}:\${TAG_NAME:-\$BRANCH_NAME} --platform linux/amd64,linux/arm64 . --push"
2020-12-18 11:57:58 +08:00
}
}
2020-12-21 14:06:32 +08:00
}
post('Notification') {
always {
sh "echo \$WEBHOOK\n"
withCredentials([string(credentialsId: 'wechat-bot-webhook', variable: 'WEBHOOK')]) {
qyWechatNotification failSend: true, mentionedId: '', mentionedMobile: '', webhookUrl: "$WEBHOOK"
}
2022-03-15 18:09:39 +08:00
sh "./mvnw clean"
}
2020-12-18 11:57:58 +08:00
}
}