소스 검색

Improve CI configuration.

This CL fixes the following issues:
* The Travis CI had the ctest invocation followed by a ";", so non-zero
  exit codes (indicating test failures) did not cause the build to fail.
* The AppVeyor CI had the ctest invocation followed by a ";", causing an
  error on Windows, where "&" plays the role of ";" [1].

The Windows CI (AppVeyor) will still be red after this CL, as some of
the tests are failing. However, this CL is a step forward, as it gets us
from failing to start tests to running tests and recording success/error
states.

[1] https://docs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-xp/bb490954(v=technet.10)#using-multiple-commands-and-conditional-processing-symbols

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=236765633
main
costan 5 년 전
committed by Victor Costan
부모
커밋
808e59ec6a
2개의 변경된 파일2개의 추가작업 그리고 5개의 파일을 삭제
  1. +1
    -4
      .appveyor.yml
  2. +1
    -1
      .travis.yml

+ 1
- 4
.appveyor.yml 파일 보기

@ -20,9 +20,6 @@ configuration:
- RelWithDebInfo
- Debug
build:
verbosity: minimal
build_script:
- git submodule update --init --recursive
- mkdir build
@ -35,4 +32,4 @@ build_script:
- cd ..
test_script:
- cd build ; ctest --verbose ; cd ..
- cd build &&; ctest --verbose --build-config "%CONFIGURATION%" &&; cd ..

+ 1
- 1
.travis.yml 파일 보기

@ -70,7 +70,7 @@ before_script:
- cd ..
script:
- cd build ; ctest --verbose ; cd ..
- cd build &&; ctest --verbose &&; cd ..
- "if [ -f build/db_bench ] ; then build/db_bench ; fi"
- "if [ -f build/db_bench_sqlite3 ] ; then build/db_bench_sqlite3 ; fi"
- "if [ -f build/db_bench_tree_db ] ; then build/db_bench_tree_db ; fi"

불러오는 중...
취소
저장