We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc4e875 commit 1061a39Copy full SHA for 1061a39
.travis.yml
@@ -2,7 +2,12 @@ language: c
2
compiler:
3
- gcc
4
before_install:
5
+ - sudo apt-get update
6
- sudo apt-get install cmake valgrind
7
script:
- - mkdir build && cd build && cmake -DCMAKE_BUILD_TYPE=Debug -DXML_PARSER_VERBOSE=On .. && make && ./test-xml && valgrind --tool=memcheck --leak-check=full --track-origins=yes -v ./test-xml
8
+ - mkdir build && cd build
9
+ - cmake -DCMAKE_BUILD_TYPE=Debug -DXML_PARSER_VERBOSE=On ..
10
+ - make
11
+ - ./test-xml
12
+ - valgrind --tool=memcheck --leak-check=full --track-origins=yes -v ./test-xml
13
0 commit comments