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: 45b65ec40b978e5f02eed9dea0d3e2f9822291a2 (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
os: linux
dist: bionic
language: cpp
compiler: gcc

jobs:
  include:
    - arch: arm64
      env: MUMBLE_HOST=aarch64-linux-gnu
      cache:
        directories:
          - $HOME/cmake-3.17.2
    - arch: amd64
      env: MUMBLE_HOST=x86_64-linux-gnu
      addons:
        apt:
          sources:
            - sourceline: 'deb https://apt.kitware.com/ubuntu/ bionic main'
              key_url: 'https://apt.kitware.com/keys/kitware-archive-latest.asc'
          packages:
            - cmake
    - arch: amd64
      env: MUMBLE_HOST=i686-w64-mingw32
      cache:
        directories:
          - $HOME/mxe
    - arch: amd64
      env: MUMBLE_HOST=x86_64-w64-mingw32
      cache:
        directories:
          - $HOME/mxe

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

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