redis_study/Jenkinsfile

13 lines
172 B
Plaintext
Raw Normal View History

2020-09-12 02:06:13 +00:00
pipeline {
agent any
stages {
stage('Build') {
steps {
2020-09-12 02:16:19 +00:00
sh 'printenv'
2020-09-12 02:18:07 +00:00
sh 'make'
2020-09-12 02:06:13 +00:00
}
}
}
}