redis_study/Jenkinsfile
2020-09-12 11:27:21 +08:00

12 lines
151 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'bash build.sh'
}
}
}
}