瀏覽代碼

Fix Travis build errors

master
Nolan Clark 9 年之前
父節點
當前提交
1061a391bd
共有 1 個檔案被更改,包括 6 行新增1 行删除
  1. +6
    -1
      .travis.yml

+ 6
- 1
.travis.yml 查看文件

@@ -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


Loading…
取消
儲存