initial Jenkinsfile (#8201)

This commit is contained in:
Daniel Agar 2017-10-27 10:47:38 -04:00 committed by GitHub
parent 44839208f7
commit db6e2d17ce
1 changed files with 21 additions and 0 deletions

21
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,21 @@
pipeline {
agent {
docker {
image 'px4io/px4-dev-simulation:2017-09-26'
args '--env=CCACHE_DISABLE --env=CI'
}
}
stages {
stage('Quick Check') {
steps {
sh '''make distclean;
make posix_sitl_default;'''
}
}
}
environment {
CI = '1'
CCACHE_DISABLE = '1'
}
}