From 1bf47e97f97eae3900337bf9724ed61565cf5678 Mon Sep 17 00:00:00 2001 From: Jacob Dufault Date: Fri, 22 Dec 2017 09:17:16 -0800 Subject: [PATCH] Enable --test-unit and --test-index on CI --- .appveyor.yml | 2 ++ .travis.yml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.appveyor.yml b/.appveyor.yml index 6ade9fbc..abcf41e7 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -19,6 +19,8 @@ build_script: copy "build\release\bin\*" "${dir}\build\release\bin" copy -recurse "build\LLVM-4.0.0-win64\lib\clang\4.0.0\include" "${dir}\build\release\lib\LLVM-4.0.0-win64\lib\clang\4.0.0\" 7z a -tzip "C:\projects\cquery\${dir}.zip" "${dir}" + - build\release\bin\cquery --log-all-to-stderr --test-unit + - build\release\bin\cquery --log-all-to-stderr --test-index artifacts: - path: 'cquery-*.zip' diff --git a/.travis.yml b/.travis.yml index 3aa9c88b..c5e2549d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -189,6 +189,8 @@ before_script: script: - ./waf configure - ./waf build + - ./build/release/bin/cquery --log-all-to-stderr --test-unit + - ./build/release/bin/cquery --log-all-to-stderr --test-index notifications: email: false