Make CW0_DEG default in alignSensors
[betaflight.git] / .travis.sh
blobd3a2b97f33ad91212c2a4e318680527ae040f974
1 #!/bin/bash
3 REVISION=$(git rev-parse --short HEAD)
4 BRANCH=$(git rev-parse --abbrev-ref HEAD)
5 REVISION=$(git rev-parse --short HEAD)
6 LAST_COMMIT_DATE=$(git log -1 --date=short --format="%cd")
7 TARGET_FILE=obj/cleanflight_${TARGET}
8 TRAVIS_REPO_SLUG=${TRAVIS_REPO_SLUG:=$USER/undefined}
9 BUILDNAME=${BUILDNAME:=travis}
10 TRAVIS_BUILD_NUMBER=${TRAVIS_BUILD_NUMBER:=undefined}
12 CURL_BASEOPTS=(
13 "--retry" "10"
14 "--retry-max-time" "120" )
16 CURL_PUB_BASEOPTS=(
17 "--form" "revision=${REVISION}"
18 "--form" "branch=${BRANCH}"
19 "--form" "travis_build_number=${TRAVIS_BUILD_NUMBER}"
20 "--form" "last_commit_date=${LAST_COMMIT_DATE}"
21 "--form" "github_repo=${TRAVIS_REPO_SLUG}"
22 "--form" "build_name=${BUILDNAME}" )
24 # A hacky way of running the unit tests at the same time as the normal builds.
25 if [ $RUNTESTS ] ; then
26 cd ./src/test && make test
28 # A hacky way of building the docs at the same time as the normal builds.
29 elif [ $PUBLISHDOCS ] ; then
30 if [ $PUBLISH_URL ] ; then
32 # Patch Gimli to fix underscores_inside_words
33 curl -L "${CURL_BASEOPTS[@]}" https://github.com/walle/gimli/archive/v0.5.9.tar.gz | tar zxf -
35 sed -i 's/).render(/, :no_intra_emphasis => true).render(/' gimli-0.5.9/ext/github_markup.rb
37 cd gimli-0.5.9/
38 gem build gimli.gemspec && gem install gimli
39 cd ../
41 ./build_docs.sh
43 curl -k "${CURL_BASEOPTS[@]}" "${CURL_PUB_BASEOPTS[@]}" --form "manual=@docs/Manual.pdf" ${PUBLISH_URL} || true
46 elif [ $PUBLISHMETA ] ; then
47 if [ $PUBLISH_URL ] ; then
48 RECENT_COMMITS=$(git shortlog -n25)
49 curl -k "${CURL_BASEOPTS[@]}" "${CURL_PUB_BASEOPTS[@]}" --form "recent_commits=${RECENT_COMMITS}" ${PUBLISH_URL} || true
52 else
53 if [ $PUBLISH_URL ] ; then
54 make -j2
55 if [ -f ${TARGET_FILE}.bin ] ; then
56 TARGET_FILE=${TARGET_FILE}.bin
57 elif [ -f ${TARGET_FILE}.hex ] ; then
58 TARGET_FILE=${TARGET_FILE}.hex
59 else
60 echo "build artifact (hex or bin) for ${TARGET_FILE} not found, aborting";
61 exit 1
64 curl -k "${CURL_BASEOPTS[@]}" "${CURL_PUB_BASEOPTS[@]}" --form "file=@${TARGET_FILE}" ${PUBLISH_URL} || true
65 exit 0;
66 else
67 make -j2