Re. jenkinsfile
Some checks failed
BeijingMediaOfficialWebsite-ZhaoJian/BeijingMediaOfficialWebsite-ZhaoJian/pipeline/head There was a failure building this commit

This commit is contained in:
2025-12-27 09:06:24 +08:00
parent 5015aa7e6c
commit 9ce16a8110
9 changed files with 127 additions and 17 deletions

View File

@@ -1,19 +1,9 @@
pipeline {
agent any
stages {
stage('Build') {
stage('Build backend') {
steps {
bat 'echo build'
}
}
stage('Test'){
steps {
bat 'echo test'
}
}
stage('Deploy') {
steps {
bat 'echo publish'
bat '.\\backend\\mvnw.cmd -DskipTests=true package'
}
}
}