From a01fd5e93f58a2bf9dea4f577218b8ff7d874bbf Mon Sep 17 00:00:00 2001 From: Aman Gupta Date: Fri, 2 Oct 2015 19:02:01 -0700 Subject: [PATCH] fail CI when tests fail --- .travis.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index ae2ac4f888..664466e2bf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,21 +11,19 @@ before_script: - set -e - wget http://flatassembler.net/fasm-1.71.39.tgz - tar xvf fasm-1.71.39.tgz - - export PATH=$(pwd)/fasm:$PATH -script: - git clone --depth 1 https://github.com/nim-lang/csources.git - cd csources - sh build.sh - cd .. - sed -i -e 's,cc = gcc,cc = clang,' config/nim.cfg - - ./bin/nim c koch + - export PATH=$(pwd)/bin:$(pwd)/fasm:$PATH +script: + - nim c koch - ./koch boot - ./koch boot -d:release -after_script: - - export PATH=$(pwd)/bin:$PATH - nim e install_nimble.nims - nimble update - nimble install zip - nimble install opengl - nimble install sdl1 - - ./koch test + - ./koch test --pedantic