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.
20 lines
517 B
20 lines
517 B
9 years ago
|
machine:
|
||
|
services:
|
||
|
- docker
|
||
|
|
||
|
checkout:
|
||
|
post:
|
||
|
- git submodule sync
|
||
|
- git submodule update --init --recursive
|
||
|
|
||
|
## Customize dependencies
|
||
|
dependencies:
|
||
|
pre:
|
||
|
- docker pull px4io/px4-dev-base
|
||
|
- docker info
|
||
|
|
||
|
test:
|
||
|
override:
|
||
|
#- sudo docker run --rm -v `pwd`:`pwd`:rw -v $HOME/.ccache:$HOME/.ccache:rw -e CCACHE_DIR=$HOME/.ccache -w=`pwd` --user=$UID -it px4io/px4-dev-base /bin/bash -c "make"
|
||
|
- docker run -v `pwd`:`pwd`:rw -w=`pwd` --user=$UID -it px4io/px4-dev-base /bin/bash -c "make"
|