You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
812 B
30 lines
812 B
pipeline {
|
|
agent any
|
|
environment {
|
|
PATH = "/opt/maven3.8.8/bin:/opt/node/bin:${env.PATH}"
|
|
}
|
|
tools {
|
|
maven 'maven388'
|
|
}
|
|
stages {
|
|
stage('前端代码打包') {
|
|
steps {
|
|
sh "cd ruoyi-ui && npm install && npm run build:prod"
|
|
echo "前端代码打包完成"
|
|
}
|
|
}
|
|
stage('后端代码打包') {
|
|
steps {
|
|
sh "mvn clean package -Dmaven.test.skip=true"
|
|
echo "后端代码打包完成"
|
|
}
|
|
}
|
|
stage('构建镜像') {
|
|
steps {
|
|
sh "docker build -t ruoyi-nginx cloud/ruoyi-nginx"
|
|
echo "构建镜像完成"
|
|
sh "docker build -t ruoyi-nginx cloud/ruoyi-java"
|
|
}
|
|
}
|
|
}
|
|
} |