summaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 11393e7d861068a6f2af298517fd869cb7775280 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
language: c

_macbase:
  - &macOld
    os: osx
    compiler: clang
    env:
      - HOMEBREW_NO_AUTO_UPDATE=1
      - HOMEBREW_NO_INSTALL_CLEANUP=1
    before_cache:
      - brew cleanup -s
    cache:
      directories:
        - $HOME/Library/Caches/Homebrew
  - &macNew
    <<: *macOld
    addons:
      homebrew:
        packages: ['autoconf', 'automake', 'ffmpeg', 'freetype', 'fribidi',
                   'libass', 'libtool', 'little-cms2', 'luajit', 'nasm',
                   'pkg-config', 'python']
        update: true

_mingwbase:
  - &mingw
    os: linux
    addons:
      apt:
        packages: ['autoconf', 'automake', 'pkg-config', 'gcc-mingw-w64',
                   'gcc-multilib', 'nasm', 'yasm']
    before_install: |
        # upgrade MinGW CRT to the one from Ubuntu 20.04 (required for D3D11):
        wget "http://archive.ubuntu.com/ubuntu/pool/universe/m/mingw-w64/"mingw-w64-{common,i686-dev,x86-64-dev}_7.0.0-2_all.deb
        sudo apt-get install -y ./mingw-w64-*.deb
    cache:
      directories:
        - mingw_prefix/

matrix:
  include:
    - <<: *macNew
      osx_image: xcode11.3
    - <<: *macNew
      osx_image: xcode10.1
    - <<: *macOld
      osx_image: xcode9.2
    - os: freebsd
      compiler: clang
    - os: linux
      compiler: gcc
      env: CONTAINER=registry.cirno.systems/kiwi/containers/mpv-ci:stable-deps CI_SCRIPT=ci/build-tumbleweed.sh
    - os: linux
      compiler: clang
      env: CONTAINER=registry.cirno.systems/kiwi/containers/mpv-ci:stable-deps CI_SCRIPT=ci/build-tumbleweed.sh
    - <<: *mingw
      env: CI_SCRIPT=ci/build-mingw64.sh TARGET=i686-w64-mingw32
    - <<: *mingw
      env: CI_SCRIPT=ci/build-mingw64.sh TARGET=x86_64-w64-mingw32
  allow_failures:
    - os: osx
      osx_image: xcode9.2
  fast_finish: true

dist: bionic
services:
  - docker

env:
  global:
    # Coverity token
    - secure: "H21mSRlMhk4BKS0xHZvCFGJxteCP0hRVUxTuNfM2Z9HBsyutuLEYMtViLO86VtM+Tqla3xXPzUdS4ozLwI72Ax/5ZUDXACROj73yW6QhFB5D6rLut12+FjqC7M33Qv2hl0xwgNBmR5dsm1ToP37+Wn+ecJQNvN8fkTXF+HVzOEw="
    # Travis token for mpv.io
    - secure: "nlTVLJK6kRhtXvhKCoJ3YdFGHuKaq/eHowfPw25hqRWuBOZd+HjHY5KIYjV7SxuKFDpJE4GpNcvA3Q31nsqomxpkLYgrwjg6TSazN7ZP+x85ZgV1QGFebrPfGm2n5UR5CAPAwFoeF3pZheLi4bajVzwq1fWW+x3grS188P9OZso="

branches:
  only:
    - master
    - ci
    - coverity_scan
    - /release\/.*$/

before_install:
  - if [ "$TRAVIS_COMPILER" = "clang" ]; then export CXX="clang++"; fi
  - if [ "$TRAVIS_COMPILER" = "gcc" ]; then export CXX="g++"; fi
  - if [ -n "$CONTAINER" ]; then docker pull $CONTAINER; fi
  - |
        if [ "$TRAVIS_OS_NAME" = "freebsd" ]; then
            # Requested in ci/build-freebsd.sh
            sudo pkg install -y \
                evdev-proto \
                ffmpeg \
                libplacebo \
                libxkbcommon \
                luajit \
                openal-soft \
                pkgconf \
                python3 \
                sdl2 \
                vulkan-headers \
                wayland-protocols \
                $NULL
            # Optionally auto-enabled
            sudo pkg install -y \
                alsa-lib \
                jackit \
                libXv \
                libarchive \
                libbluray \
                libcaca \
                libcdio-paranoia \
                libdvdnav \
                mujs \
                pulseaudio \
                rubberband \
                sekrit-twc-zimg \
                uchardet \
                v4l_compat \
                $NULL
        fi
  - |
        if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
            if [[ "$TRAVIS_OSX_IMAGE" == "xcode9.2" ]]; then
                brew update
                pushd "/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core"
                git checkout 55e02323812604add9a69bab8730319b9255a697
                popd
                brew install autoconf
                brew install automake
                brew install pkg-config
                brew install libtool
                brew install python
                brew install freetype
                brew install fribidi
                brew install little-cms2
                brew install luajit
                brew install libass
                brew install ffmpeg
            else
                brew link --overwrite python
            fi
        fi



script:
  - ./bootstrap.py
  - |
        if [ "$TRAVIS_OS_NAME" = "linux" ]; then
            if [ -n "$CONTAINER" ]; then
                docker run --env CC --env TARGET -v $TRAVIS_BUILD_DIR:/build $CONTAINER /bin/sh -c "cd /build && $CI_SCRIPT"
            else
                $CI_SCRIPT
            fi
        fi
  - if [ "$TRAVIS_OS_NAME" = "osx" ]; then ./ci/build-macos.sh; fi
  - if [ "$TRAVIS_OS_NAME" = "freebsd" ]; then ./ci/build-freebsd.sh; fi
after_failure: cat ./build/config.log
after_script: TOOLS/travis-rebuild-website

notifications:
  email: false
  irc:
    if: fork = false
    channels:
      - "irc.freenode.org#mpv-devel"
    on_success: change
    on_failure: always

addons:
  coverity_scan:
    project:
      name: "mpv-player/mpv"
      description: "Build submitted via Travis CI"
    notification_email: mpv-team@googlegroups.com
    build_command_prepend: "./bootstrap.py && ./waf configure"
    build_command:   "./waf build"
    branch_pattern: coverity_scan