Explorar el Código

Fix Travis build errors

master
Nolan Clark hace 9 años
padre
commit
1061a391bd
Se han modificado 1 ficheros con 6 adiciones y 1 borrados
  1. +6
    -1
      .travis.yml

+ 6
- 1
.travis.yml Ver fichero

@@ -2,7 +2,12 @@ language: c
compiler:
- gcc
before_install:
- sudo apt-get update
- sudo apt-get install cmake valgrind
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
- 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


Cargando…
Cancelar
Guardar