Skip to content

Commit

Permalink
Always compile verbose when running the CI
Browse files Browse the repository at this point in the history
  • Loading branch information
cmorty committed Nov 13, 2014
1 parent 192d87f commit 6670b27
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
7 changes: 7 additions & 0 deletions Makefile.include
Original file line number Diff line number Diff line change
Expand Up @@ -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]"

Expand Down

0 comments on commit 6670b27

Please sign in to comment.