Welcome to mirror list, hosted at ThFree Co, Russian Federation.

.travis.yml - github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1476d5a4925d0d29e668a332470ca34b4db9a787 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
sudo: required # Required for apt-get build-dep
language: cpp
compiler: gcc

addons:
  sonarcloud:
    organization: "mumble-voip"

cache:
  directories:
    - '$HOME/.sonar/cache'

matrix:
  include:
    - os: linux
      dist: xenial
      env: MUMBLE_HOST=x86_64-linux-gnu
    - os: linux
      dist: xenial
      env: MUMBLE_HOST=x86_64-linux-gnu MUMBLE_NO_PCH=1
    - os: linux
      dist: xenial
      env: MUMBLE_HOST=i686-w64-mingw32
    - os: linux
      dist: xenial
      env: MUMBLE_HOST=x86_64-w64-mingw32
    - os: osx
      env: MUMBLE_HOST=x86_64-apple-darwin

before_install:
    - ./scripts/travis-ci/before_install.bash

script:
    - ./scripts/travis-ci/script.bash

branches:
  except:
    - # Do not build tags that we create when we upload to GitHub Releases
    - /^(?i:continuous)/