jenkinfile

This commit is contained in:
lemoer 2019-06-07 01:17:52 +02:00
parent b942dbf9d4
commit 2e384d4014

10
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,10 @@
pipeline {
agent any
stages {
stage('build') {
steps {
sh 'make GLUON_TARGET=ar71xx-generic'
}
}
}
}