tile/Jenkinsfile

23 lines
375 B
Plaintext
Raw Normal View History

2024-07-18 17:57:55 +08:00
pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'echo build'
2024-07-18 19:12:11 +08:00
sh 'env'
2024-07-18 17:57:55 +08:00
}
}
stage('Test'){
steps {
sh 'echo test'
}
}
stage('Deploy') {
steps {
sh 'echo publish'
}
}
}
}