diff options
Diffstat (limited to 'libs/assimp/contrib/zip/.travis.yml')
-rw-r--r-- | libs/assimp/contrib/zip/.travis.yml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/libs/assimp/contrib/zip/.travis.yml b/libs/assimp/contrib/zip/.travis.yml new file mode 100644 index 0000000..42f84dd --- /dev/null +++ b/libs/assimp/contrib/zip/.travis.yml @@ -0,0 +1,22 @@ +language: c +addons: + apt: + packages: &1 + - lcov +# Compiler selection +compiler: + - clang + - gcc +env: + - ANALYZE=false + - ANALYZE=true +# Build steps +script: + - ./.travis.sh +after_success: + # Creating report + - cmake -DENABLE_COVERAGE=ON + - make + - make test + # Uploading report to CodeCov + - bash <(curl -s https://codecov.io/bash) |