20 Star 39 Fork 26

王元元 / springboot-activiti-maven

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Jenkinsfile 762 Bytes
一键复制 编辑 原始数据 按行查看 历史
王元元 提交于 2017-06-23 14:13 . init commit
node {
// uncomment these 2 lines and edit the name 'node-4.6.0' according to what you choose in configuration
// def nodeHome = tool name: 'node-4.6.0', type: 'jenkins.plugins.nodejs.tools.NodeJSInstallation'
// env.PATH = "${nodeHome}/bin:${env.PATH}"
stage('check tools') {
sh "node -v"
sh "npm -v"
sh "bower -v"
sh "gulp -v"
}
stage('checkout') {
checkout scm
}
stage('npm install') {
sh "npm install"
}
stage('clean') {
sh "./gradlew clean"
}
stage('backend tests') {
sh "./gradlew test"
}
stage('frontend tests') {
sh "gulp test"
}
stage('packaging') {
sh "./gradlew bootRepackage -Pprod -x test"
}
}
Java
1
https://gitee.com/wyy396731037/springboot-activiti-maven.git
git@gitee.com:wyy396731037/springboot-activiti-maven.git
wyy396731037
springboot-activiti-maven
springboot-activiti-maven
master

搜索帮助