px4-firmware/circle.yml

27 lines
736 B
YAML
Raw Normal View History

machine:
services:
- docker
checkout:
post:
# workaround for known git bug where attempting to fetch a missing commit fails early on the first try
- git submodule update --init --recursive || true
2016-06-24 21:21:46 -03:00
- git submodule sync --recursive
- git submodule deinit -f .
- git submodule update --init --recursive --force
dependencies:
pre:
2016-12-26 20:01:29 -04:00
- docker pull px4io/px4-dev-nuttx:2016-12-26
test:
override:
2016-12-26 20:01:29 -04:00
- docker run --rm -v `pwd`:`pwd`:rw -e CI=true -w=`pwd` -e LOCAL_USER_ID=$UID -it px4io/px4-dev-nuttx:2016-12-26 /bin/bash -c "make quick_check"
general:
artifacts:
- "build_px4fmu-v2_default/parameters.xml"
- "build_px4fmu-v2_default/airframes.xml"
- "build_.*/src/firmware/nuttx/.*.px4"
2016-06-25 01:25:13 -03:00