forked from Archive/PX4-Autopilot
initial Jenkinsfile (#8201)
This commit is contained in:
parent
44839208f7
commit
db6e2d17ce
|
@ -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'
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue