1 Star 1 Fork 0

Jenkins中文社区/custom-distribution-service

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Jenkinsfile 1.90 KB
一键复制 编辑 原始数据 按行查看 历史
Sladyn Nunes 提交于 2020-06-23 13:00 . Limit to linux agents
pipeline {
agent any
stages {
stage('Checkout') {
steps{
checkout scm
}
}
stage('Spring Boot Build') {
steps {
withEnv([
"JAVA_HOME=${tool 'jdk8'}",
"PATH+MVN=${tool 'mvn'}/bin",
'PATH+JDK=$JAVA_HOME/bin',
]) {
timeout(60) {
script {
List<String> mvnOptions = ['-Dmaven.test.failure.ignore','verify']
infra.runMaven(
mvnOptions,
/*jdk*/ "8",
/*extraEnv*/ null,
/*settingsFile*/ null,
/*addToolEnv*/ false
)
if (isUnix()) {
sh 'mvn --batch-mode clean install -Dmaven.test.failure.ignore=true -Denvironment=test -Prun-its'
}
else {
bat 'mvn --batch-mode clean install -Dmaven.test.failure.ignore=true -Denvironment=test -Prun-its'
}
}
}
}
}
}
stage('React Build') {
agent {
docker {
label 'linux'
image 'node:6-alpine'
}
}
steps {
sh 'npm install'
}
}
stage('Archive') {
steps {
/* Archive the test results */
junit '**/target/surefire-reports/TEST-*.xml'
archiveArtifacts artifacts: '**/target/**/*.jar'
findbugs pattern: '**/target/findbugsXml.xml'
}
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/jenkins-zh/custom-distribution-service.git
git@gitee.com:jenkins-zh/custom-distribution-service.git
jenkins-zh
custom-distribution-service
custom-distribution-service
master

搜索帮助