From 3f04d4e0b830b0f6d55d2a584cde2a9235951c8a Mon Sep 17 00:00:00 2001 From: "dreamer.dead" Date: Mon, 1 Aug 2016 18:52:47 +0300 Subject: [PATCH] Use 'out' name as build dir and run all steps in one line. --- .travis.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 6117a0e..3a27ac3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,10 +9,7 @@ dist: trusty language: cpp script: - - mkdir build && cd build - - cmake -DGFLAGS_BUILD_TESTING=True .. - - make - - ctest + - mkdir out && cd out && cmake -DGFLAGS_BUILD_TESTING=True .. && make && ctest compiler: - clang