assimp/contrib/zip/.travis.yml

23 lines
348 B
YAML
Raw Normal View History

2017-11-27 20:48:33 +00:00
language: c
addons:
apt:
packages: &1
- lcov
2017-11-27 20:48:33 +00:00
# Compiler selection
compiler:
- clang
- gcc
env:
- ANALYZE=false
- ANALYZE=true
2017-11-27 20:48:33 +00:00
# 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)