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

13 lines
166 B
Groovy

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