redis_study/Jenkinsfile
2020-11-22 16:19:58 +08:00

12 lines
151 B
Groovy

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