summaryrefslogtreecommitdiff
path: root/libs/assimp/contrib/zip/.travis.yml
blob: 42f84dd250f3c2a0552fa0b38ce492e3e40ebdb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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)