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}
14 "--retry-max-time" "120" )
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
38 gem build gimli.gemspec
&& gem
install gimli
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
53 if [ $PUBLISH_URL ] ; then
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
60 echo "build artifact (hex or bin) for ${TARGET_FILE} not found, aborting";
64 curl
-k "${CURL_BASEOPTS[@]}" "${CURL_PUB_BASEOPTS[@]}" --form "file=@${TARGET_FILE}" ${PUBLISH_URL} || true