redis_study/Jenkinsfile

12 lines
151 B
Plaintext
Raw Normal View History

2020-09-12 02:06:13 +00:00
pipeline {
agent any
stages {
stage('Build') {
steps {
2020-09-12 03:27:21 +00:00
sh 'bash build.sh'
2020-09-12 02:06:13 +00:00
}
}
}
}