PX4-Autopilot/Jenkinsfile
2017-10-27 10:47:38 -04:00

21 lines
329 B
Groovy

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'
}
}