Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/cxong/tinydir.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.travis.yml7
1 files changed, 2 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml
index 5a42d2d..4eaef76 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -20,8 +20,5 @@ before_script:
- export CTEST_OUTPUT_ON_FAILURE=1
script:
- - cmake samples
- - make -j2
- - cmake tests
- - make -j2
- - make test
+ - mkdir build && cd build && cmake ../samples && make -j2 && cd .. && rm -rf build
+ - mkdir build && cd build && cmake ../tests && make -j2 && make test && cd .. && rm -rf build