Skip to content

Commit 812bcaf

Browse files
authored
Update .travis.yml
fixed C++14 related error
1 parent 5bb274f commit 812bcaf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ install:
2323
- popd
2424

2525
script:
26-
- make -C $CPPUTEST_HOME/examples CPPUTEST_USE_GCOV=Y clean all_no_tests |& tee build.log ; test ${PIPESTATUS[0]} -eq 0
26+
- make -C $CPPUTEST_HOME/examples CPPUTEST_CXX_WARNINGFLAGS=-Wno-c++14-compat CPPUTEST_USE_GCOV=Y clean all_no_tests |& tee build.log ; test ${PIPESTATUS[0]} -eq 0
2727
- $CPPUTEST_HOME/examples/CppUTestExamples_tests -o junit -v
2828
- gcovr --root ./ --filter ".*/ApplicationLib/.*" -x -o coverage.xml
2929

3030
after_script:
31-
- testspace build.log{lint} [Tests]cpputest_*.xml coverage.xml
31+
- testspace build.log{lint} [Tests]cpputest_*.xml coverage.xml

0 commit comments

Comments
 (0)