AnalysisSystemForRadionuclide/Jenkinsfile

21 lines
371 B
Plaintext
Raw Normal View History

2023-05-11 10:44:42 +08:00
pipeline {
agent any
stages {
stage('Build') {
steps {
2023-05-11 14:26:12 +08:00
sh 'mvn -B -DskipTests clean package'
2023-05-11 10:44:42 +08:00
}
}
stage('Test'){
steps {
sh 'echo test'
}
}
stage('Deploy') {
steps {
sh 'echo publish'
}
}
}
}