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

12 lines
142 B
Groovy

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