diff options
author | Dane Springmeyer <dane@mapbox.com> | 2014-05-28 21:30:09 -0700 |
---|---|---|
committer | Dane Springmeyer <dane@mapbox.com> | 2014-05-28 21:30:09 -0700 |
commit | a3cc5b4b99d6cee61d6addceb227913474c979e4 (patch) | |
tree | 504c7e204e9ca4e5b3193c03a977b7b8c7116221 /.travis.yml | |
parent | 99bd45a89b4d1a68f257d747947363fbe216ed90 (diff) | |
download | qtlocation-mapboxgl-a3cc5b4b99d6cee61d6addceb227913474c979e4.tar.gz |
[travis] make clean between builds, revert parallel builds
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index fde535c321..5209cf1688 100644 --- a/.travis.yml +++ b/.travis.yml @@ -30,9 +30,11 @@ before_script: - if [ ${CXX} = "g++" ]; then export CXX="g++-4.8" ; fi script: -- make llmr BUILDTYPE=${BUILDTYPE} -j4 -- make linux BUILDTYPE=${BUILDTYPE} -j4 -- make run-tests BUILDTYPE=${BUILDTYPE} -j4 +- make llmr BUILDTYPE=${BUILDTYPE} +- make clean +- make linux BUILDTYPE=${BUILDTYPE} +- make clean +- make run-tests BUILDTYPE=${BUILDTYPE} # TODO - port to linux #- make run-headless-test BUILDTYPE=${BUILDTYPE} |