redis_study/Jenkinsfile

12 lines
151 B
Plaintext
Raw Permalink Normal View History

2020-11-22 16:11:37 +08:00
pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'bash build.sh'
}
}
}
}