redis_study/Jenkinsfile
2020-09-13 20:02:47 +08:00

12 lines
151 B
Groovy

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