Blame .travis.yml

Packit Service 7770af
language: cpp
Packit Service 7770af
sudo: false
Packit Service 7770af
Packit Service 7770af
Packit Service 7770af
# don't create redundant code coverage reports
Packit Service 7770af
# - AUTOTOOLS=yes COVERAGE=yes BUILD=static
Packit Service 7770af
# - AUTOTOOLS=no COVERAGE=yes BUILD=shared
Packit Service 7770af
# - AUTOTOOLS=no COVERAGE=no BUILD=static
Packit Service 7770af
Packit Service 7770af
# further speed up day by day travis-ci builds
Packit Service 7770af
# re-enable this if you change the makefiles
Packit Service 7770af
# this will still catch all coding errors!
Packit Service 7770af
# - AUTOTOOLS=yes COVERAGE=no BUILD=static
Packit Service 7770af
Packit Service 7770af
# currenty there are various issues when
Packit Service 7770af
# built with coverage, clang and autotools
Packit Service 7770af
# - AUTOTOOLS=yes COVERAGE=yes BUILD=shared
Packit Service 7770af
Packit Service 7770af
matrix:
Packit Service 7770af
  include :
Packit Service 7770af
    - os: linux
Packit Service 7770af
      compiler: gcc
Packit Service 7770af
      env: AUTOTOOLS=no COVERAGE=yes BUILD=static
Packit Service 7770af
    - os: linux
Packit Service 7770af
      compiler: g++-5
Packit Service 7770af
      env: AUTOTOOLS=yes COVERAGE=no BUILD=shared
Packit Service 7770af
      addons:
Packit Service 7770af
        apt:
Packit Service 7770af
          sources:
Packit Service 7770af
            - ubuntu-toolchain-r-test
Packit Service 7770af
          packages:
Packit Service 7770af
            - g++-5
Packit Service 7770af
    - os: linux
Packit Service 7770af
      compiler: clang++-3.7
Packit Service 7770af
      env: AUTOTOOLS=no COVERAGE=yes BUILD=static
Packit Service 7770af
      addons:
Packit Service 7770af
        apt:
Packit Service 7770af
          sources:
Packit Service 7770af
            - ubuntu-toolchain-r-test
Packit Service 7770af
            - llvm-toolchain-precise-3.7
Packit Service 7770af
          packages:
Packit Service 7770af
            - clang-3.7
Packit Service 7770af
    - os: linux
Packit Service 7770af
      compiler: clang
Packit Service 7770af
      env: AUTOTOOLS=yes COVERAGE=no BUILD=shared
Packit Service 7770af
    - os: osx
Packit Service 7770af
      compiler: clang
Packit Service 7770af
      env: AUTOTOOLS=no COVERAGE=no BUILD=shared
Packit Service 7770af
    - os: osx
Packit Service 7770af
      compiler: clang
Packit Service 7770af
      env: AUTOTOOLS=no COVERAGE=yes BUILD=static
Packit Service 7770af
    - os: osx
Packit Service 7770af
      compiler: clang
Packit Service 7770af
      env: AUTOTOOLS=yes COVERAGE=no BUILD=shared
Packit Service 7770af
Packit Service 7770af
script:
Packit Service 7770af
  - ./script/ci-build-libsass
Packit Service 7770af
  - ./script/ci-build-plugin math
Packit Service 7770af
  - ./script/ci-build-plugin glob
Packit Service 7770af
  - ./script/ci-build-plugin digest
Packit Service 7770af
  - ./script/ci-build-plugin tests
Packit Service 7770af
before_install: ./script/ci-install-deps
Packit Service 7770af
install: ./script/ci-install-compiler
Packit Service 7770af
after_success: ./script/ci-report-coverage