Skip to content
Snippets Groups Projects
  • Joe Donofry's avatar
    f5933b74
    Update CI Configs · f5933b74
    Joe Donofry authored
    Update .travis.yaml to have updated bintray api keys
    Update bintray-release.json to have correct casing for repo
    f5933b74
    History
    Update CI Configs
    Joe Donofry authored
    Update .travis.yaml to have updated bintray api keys
    Update bintray-release.json to have correct casing for repo
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
.travis.yml 5.22 KiB
language: cpp
sudo: required
dist: trusty
notifications:
  email: false
  webhooks:
    urls:
    - https://scalar.vector.im/api/neb/services/hooks/dHJhdmlzLWNpLyU0MHJlZF9za3klM0FvY2Vhbi5qb2Vkb25vZnJ5LmNvbS8lMjFldkFxa1BIWnVQSElHZWVuaGklM0FvY2Vhbi5qb2Vkb25vZnJ5LmNvbQ
    on_success: always
    on_failure: always
    on_start: never
matrix:
  include:
  - os: osx
    osx_image: xcode9
    compiler: clang
    env:
    - DEPLOYMENT=1
    - USE_BUNDLED_BOOST=0
    - USE_BUNDLED_CMARK=0
  - os: linux
    compiler: gcc
    env:
    - CXX_COMPILER=g++-5
    - C_COMPILER=gcc-5
    - QT_VERSION="-5.10.1"
    - QT_PKG=510
    - DEPLOYMENT=1
    - USE_BUNDLED_BOOST=1
    - USE_BUNDLED_CMARK=1
    addons:
      apt:
        sources:
        - ubuntu-toolchain-r-test
        packages:
        - g++-5
        - ninja-build
  - os: linux
    compiler: gcc
    env:
    - CXX_COMPILER=g++-8
    - C_COMPILER=gcc-8
    - QT_VERSION=571
    - QT_PKG=57
    - USE_BUNDLED_BOOST=1
    - USE_BUNDLED_CMARK=1
    addons:
      apt:
        sources:
        - ubuntu-toolchain-r-test
        packages:
        - g++-8
        - ninja-build
  - os: linux
    compiler: clang
    env:
    - CXX_COMPILER=clang++-5.0
    - C_COMPILER=clang-5.0
    - QT_VERSION=592
    - QT_PKG=59
    - USE_BUNDLED_BOOST=1
    - USE_BUNDLED_CMARK=1
    addons:
      apt:
        sources:
        - ubuntu-toolchain-r-test
        - llvm-toolchain-trusty-5.0
        packages:
        - clang-5.0
        - g++-7