redis_study/Jenkinsfile

12 lines
151 B
Groovy

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