redis_study/Jenkinsfile

13 lines
188 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'printenv'
sh 'make MALLOC=jemalloc'
}
}
}
}