1 Star 0 Fork 4K

wuhui/O2OA

Create your Gitee Account
Explore and code with more than 14 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
Jenkinsfile 1.35 KB
Copy Edit Raw Blame History
pipeline {
agent {label '132'}
stages {
stage('Stop Server') {
steps {
catchError(buildResult: 'SUCCESS') {
sh 'target/o2server/stop_linux.sh'
}
}
}
stage('init') {
steps {
sh 'npm install'
sh 'npm run clear_deploy'
}
}
stage('dependency') {
steps {
sh 'npm run preperation:linux'
}
}
stage('build') {
parallel {
stage('build server') {
steps {
sh 'id'
sh 'npm run build_server'
}
}
stage('build web') {
steps {
sh 'npm run build_web'
}
}
}
}
stage('deploy') {
steps {
sh 'npm run deploy:linux'
sh 'chmod 777 -R target/o2server/jvm'
sh 'chmod 777 -R target/o2server/commons'
sh 'chmod 777 target/o2server/*.sh'
}
}
stage('run') {
steps {
sh 'JENKINS_NODE_COOKIE=dontKillMe nohup target/o2server/start_linux.sh > nohup.out &'
}
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/wuhui/O2OA.git
git@gitee.com:wuhui/O2OA.git
wuhui
O2OA
O2OA
develop

Search