Browse Source

- update travis.yml to also test compilation without the export part (2nd try).

Alexander Gessler 12 years ago
parent
commit
a81c10265a
1 changed files with 1 additions and 4 deletions
  1. 1 4
      .travis.yml

+ 1 - 4
.travis.yml

@@ -1,9 +1,6 @@
 before_install:
   - sudo apt-get install cmake
 
-before_script:
-  - cmake -G "Unix Makefiles" -DASSIMP_ENABLE_BOOST_WORKAROUND=YES -DASSIMP_NO_EXPORT=$TRAVIS_NO_EXPORT
-
 env:
   - TRAVIS_NO_EXPORT=YES
   - TRAVIS_NO_EXPORT=NO
@@ -14,7 +11,7 @@ compiler:
   - gcc
   - clang
 
-script: make
+script: - cmake -G "Unix Makefiles" -DASSIMP_ENABLE_BOOST_WORKAROUND=YES -DASSIMP_NO_EXPORT=$TRAVIS_NO_EXPORT && make