-
Notifications
You must be signed in to change notification settings - Fork 159
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fixed read_csv() memory errors * Fixed segfaults in MSVC debug mode * Travis build changes * Fixed .travis.yml * Attempted Travis fix #2 * Fix Makefile * Fixed g++ compilation warnings * Fix linker errors * Keep forgetting stuff * Final Makefile fix (I hope) * Updated documentation
- Loading branch information
1 parent
0041749
commit bcd14c3
Showing
254 changed files
with
442 additions
and
15,939 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,6 +1,10 @@ | ||
# Build | ||
bin/ | ||
|
||
# Doxygen | ||
docs/html | ||
*.tmp | ||
|
||
# Visual Studio | ||
Debug/ | ||
Release/ | ||
|
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,22 +1,33 @@ | ||
matrix: | ||
include: | ||
- os: linux | ||
env: STD=c++11 MAIN_BUILD=true | ||
compiler: gcc | ||
addons: | ||
apt: | ||
sources: ['ubuntu-toolchain-r-test'] | ||
packages: ['g++-8', 'valgrind'] | ||
- os: linux | ||
env: STD=c++17 | ||
compiler: gcc | ||
addons: | ||
apt: | ||
sources: ['ubuntu-toolchain-r-test'] | ||
packages: ['g++-8'] | ||
#- os: linux | ||
# env: CXX=clang++ | ||
dist: trusty | ||
sudo: required | ||
language: | ||
- cpp | ||
script: | ||
- export CC=gcc-8 | ||
- export CXX=g++-8 | ||
- make test_all | ||
# - valgrind --leak-check=full ./test_csv_parser | ||
# Disable until Travis updates their version of Valgrind | ||
- make run_csv_test | ||
- if [ "$MAIN_BUILD" == "true" ]; then | ||
make code_cov; | ||
make valgrind; | ||
fi; | ||
after_success: | ||
- if [ "$CXX" == "g++-8" ]; then | ||
- if [ "$MAIN_BUILD" == "true" ]; then | ||
cd test_results; | ||
bash <(curl -s https://codecov.io/bash); | ||
fi; | ||
fi; |
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
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
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
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
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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.