Always compile verbose when running the CI

ico
Moritz 'Morty' Strübe 2014-10-14 10:03:28 +02:00
parent 192d87fa48
commit 6670b27320
2 changed files with 8 additions and 1 deletions

View File

@ -5,7 +5,7 @@ before_script:
- WGET="travis_retry wget --continue --tries=20 --waitretry=10 --retry-connrefused --no-dns-cache --timeout 300"
- sudo apt-get -qq update
## Support building the same binary as on CI
## Support building a binary that is identical to the CI
- echo -n "Contiki will be compiled with RELSTR=" ; git --git-dir .git describe --tags --always
## Install msp430 toolchain

View File

@ -35,6 +35,13 @@ ifndef HOST_OS
endif
endif
#More debug information when running in CI
ifdef CI
ifeq ($(CI),true)
V = 1
endif
endif
usage:
@echo "make MAKETARGETS... [TARGET=(TARGET)] [savetarget] [targets]"