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

13 lines
167 B
Groovy

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