redis_study/Jenkinsfile
2020-09-12 10:12:54 +08:00

12 lines
146 B
Groovy

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