gluon/Jenkinsfile
2019-06-07 01:17:52 +02:00

11 lines
169 B
Groovy

pipeline {
agent any
stages {
stage('build') {
steps {
sh 'make GLUON_TARGET=ar71xx-generic'
}
}
}
}