You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
329 B
21 lines
329 B
7 years ago
|
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'
|
||
|
}
|
||
|
}
|