From e2e141d4305bf7fe06e51193ba13e378b29c278a Mon Sep 17 00:00:00 2001 From: fabienfl Date: Thu, 23 Jan 2020 15:37:41 +0100 Subject: [PATCH 1/2] Do not convert LF/CRLF example data set Fix unit test on Windows. Conversion was invalidating hash comparison. --- .gitattributes | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..8de7e6b --- /dev/null +++ b/.gitattributes @@ -0,0 +1,4 @@ +*.sh eol=lf +Testing/example_data/* binary +Testing/example_data_variants/* binary +Testing/example_data/exp/* binary From e68641600cc020b60fa24a21b4585547e16c553c Mon Sep 17 00:00:00 2001 From: fabienfl Date: Thu, 23 Jan 2020 15:41:23 +0100 Subject: [PATCH 2/2] Add OSX target to travis.yml --- .travis.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 98d1df8..40805a2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,11 @@ language: cpp -compiler: - - gcc +matrix: + include: + - os: linux + compiler: gcc + - os: osx + compiler: clang script: - ./make.sh