mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-01 09:34:06 +08:00
21 lines
329 B
Groovy
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'
|
|
}
|
|
} |