-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #209 from DrylandEcology/bugfix_206
- adjustments so that the clang compiler works - set submodule googletest to specific commit - specify specific warnings in the makefile to be ignored (instead of propagated to errors) - more consistent CI across compilers on `travis`
- Loading branch information
Showing
6 changed files
with
371 additions
and
219 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
[submodule "googletest"] | ||
path = googletest | ||
url = https://github.com/google/googletest | ||
branch = master |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,13 @@ | ||
language: c | ||
language: cpp | ||
|
||
compiler: | ||
- clang | ||
- gcc | ||
|
||
script: | ||
- export CPPFLAGS=-DSWDEBUG && make cleaner bint_run | ||
- make cleaner cov test_run | ||
- make cleaner | ||
|
||
after_success: | ||
- bash <(curl -s https://codecov.io/bash) || echo "Codecov did not collect coverage reports" | ||
- make cleaner |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.