AnalysisSystemForRadionuclide/Jenkinsfile

21 lines
349 B
Plaintext
Raw Normal View History

2023-05-11 10:44:42 +08:00
pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'echo build'
}
}
stage('Test'){
steps {
sh 'echo test'
}
}
stage('Deploy') {
steps {
sh 'echo publish'
}
}
}
}