All checks were successful
Liang-gitea/liang-spring-service/pipeline/head This commit looks good
20 lines
348 B
Groovy
20 lines
348 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('Build') {
|
|
steps {
|
|
sh 'echo build'
|
|
}
|
|
}
|
|
stage('Test'){
|
|
steps {
|
|
sh 'echo test'
|
|
}
|
|
}
|
|
stage('Deploy') {
|
|
steps {
|
|
sh 'echo publish'
|
|
}
|
|
}
|
|
}
|
|
} |