summaryrefslogtreecommitdiffstats
path: root/appveyor.yml
blob: d6bc12c1bb94eb00117bdf8e8e80f5c891019fc0 (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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
---
version: '{branch}-{build}'
skip_tags: true
shallow_clone: true
max_jobs: 1
image:
  - Visual Studio 2017
  - Ubuntu2004

configuration:
  - release-fastbuild
  - release
#  - debug

platform:
# Disable x86 builds since we only get one concurrent build on AppVeyor and x86
# failures will be caught by Jenkins.
#  - x86
  - x64


matrix:
  exclude:
    # Ubuntu doesn't support "release-fastbuild".
    - image: Ubuntu2004
      configuration: release-fastbuild
    # We only want "release-fastbuild" for Windows since "release" consumes too
    # much memory due to link-time code generation / whole-program optimization.
    - image: Visual Studio 2017
      configuration: release

skip_commits:
  files:
    - doc/
    - .travis.yml
    - LICENSE
    - README
    - README.md
    - CHANGELOG
    - COPYING
    - CODE_OF_CONDUCT.md

for:

########## UBUNTU SPECIFIC CONFIGURATION ##########

-
  matrix:
    only:
      - image: Ubuntu2004

  clone_folder: /home/appveyor/projects/mixxx

  cache:
    - /home/appveyor/.ccache

  install:
    - sudo apt update
    - sudo apt -y install
      ccache
      cmake
      libavcodec-dev
      libavformat-dev
      libavutil-dev
      libchromaprint-dev
      libebur128-dev
      libflac-dev
      libid3tag0-dev
      liblilv-dev
      libmad0-dev
      libmodplug-dev
      libmp3lame-dev
      libopus-dev
      libopusfile-dev
      libportmidi-dev
      libprotobuf-dev
      libqt5opengl5-dev
      libqt5sql5-sqlite
      libqt5svg5-dev
      libqt5x11extras5-dev
      librubberband-dev
      libshout3-dev
      libsndfile1-dev
      libsoundtouch-dev
      libsqlite3-dev
      libswresample-dev
      libtag1-dev
      libupower-glib-dev
      libusb-1.0-0-dev
      libwavpack-dev
      portaudio19-dev
      protobuf-compiler
      qt5-default
      qtdeclarative5-dev
      qt5keychain-dev
      qtscript5-dev
      xsltproc

  before_build:
     # Limit cache size to 100 MB
    - ccache -M 100M
    - ccache -c
    - ccache -s

  build_script:
    - export CMAKE_BUILD_PARALLEL_LEVEL="$(nproc)"
    - mkdir cmake_build
    - cd cmake_build
    # TODO: Set -DDEBUG_ASSERTIONS_FATAL=OFF before deploying CI builds as releases!!!
    - cmake
      -L
      -DCMAKE_BUILD_TYPE=Release
      -DWARNINGS_FATAL=ON
      -DDEBUG_ASSERTIONS_FATAL=ON
      -DBATTERY=ON
      -DBROADCAST=ON
      -DBULK=ON
      -DFFMPEG=ON
      -DHID=ON
      -DLILV=ON
      -DLOCALECOMPARE=ON
      -DMAD=ON
      -DMODPLUG=ON
      -DOPUS=ON
      -DQTKEYCHAIN=ON
      -DVINYLCONTROL=ON
      -DWAVPACK=ON
      ..
    - cmake --build .
    - sudo cmake --build . --target install

  test_script:
    - export CTEST_OUTPUT_ON_FAILURE=1
    - export QT_QPA_PLATFORM=offscreen
    - ctest -T test --no-compress-output
    - cmake --build . --target benchmark

  after_test:
    - xsltproc -o ctest-to-junit-results.xml ../cmake/ctest-to-junit.xsl Testing/*/Test.xml
    - curl -F 'file=@ctest-to-junit-results.xml' "https://ci.appveyor.com/api/testresults/junit/$APPVEYOR_JOB_ID"

########## END UBUNTU SPECIFIC CONFIGURATION ##########

########## WINDOWS SPECIFIC CONFIGURATION ##########

-
  matrix:
    only:
      - image: Visual Studio 2017
    fast_finish: false     # set this flag to true to immediately finish build once one of the jobs fails.

  init:
    - git config --global core.autocrlf input
# Uncomment the following line to show RDP info at beginning of job
#    - ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))

  clone_folder: c:\projects\mixxx

  cache:
    - C:\mixxx-buildserver
    - C:\Users\appveyor\clcache

  environment:
    ENVIRONMENTS_URL: https://downloads.mixxx.org/builds/buildserver/2.3.x-windows/
    ENVIRONMENTS_PATH: C:\mixxx-buildserver
    MSVC_PATH: "C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\Community"
    PATH: 'C:\Python37-x64;C:\Python37-x64\Scripts;%PATH%'
    CODESIGN_CERTIFICATE_PATH: build\certificates\windows_sectigo_codesign_certificate.pfx
    CODESIGN_CERTIFICATE_SECURE_FILE_SECRET:
      secure: 1xzNVbLop/5/ySSgZxPzyOz5cm8nVMLEIEW4x0XOJjI=
    CODESIGN_CERTIFICATE_SECURE_FILE_SALT:
      secure: tw+bg3qfia7+WQdBdXtC301Z9Dv7yQ6SwpWcFJav9YC4zwyyGztev6pAbGE93sln4VO0WRCJ+4/KTviBMPXvXQ==
    CODESIGN_CERTIFICATE_PASSWORD:
      secure: EiAsLAgrsS+N3rr71AAkXPCrxIe2vLvlOvCipnTw6pg=

  install:
    - set /P ENVIRONMENT_NAME=<build/windows/golden_environment
    - set ENVIRONMENT_NAME=%%ENVIRONMENT_NAME:PLATFORM=%platform%%%
    - set ENVIRONMENT_NAME=%%ENVIRONMENT_NAME:CONFIGURATION=%configuration%%%
    - set WINLIB_PATH=%ENVIRONMENTS_PATH%\%ENVIRONMENT_NAME%
    - IF EXIST %WINLIB_PATH% (
        echo Using cached environment %WINLIB_PATH%...
      ) else (
        mkdir %ENVIRONMENTS_PATH% &
        echo Downloading environment %ENVIRONMENT_NAME%... &&
        curl -fsS -L -o%ENVIRONMENTS_PATH%\%ENVIRONMENT_NAME%.zip %ENVIRONMENTS_URL%/%ENVIRONMENT_NAME%.zip &&
        echo Unpacking environment %ENVIRONMENT_NAME% to %ENVIRONMENTS_PATH%... &&
        7z -o%ENVIRONMENTS_PATH% x %ENVIRONMENTS_PATH%\%ENVIRONMENT_NAME%.zip || exit 1
      )
    - choco install ninja
    - python -m pip install git+https://github.com/frerich/clcache.git
    # Decrypt the code signing certificate.
    - ps: iex ((New-Object Net.WebClient).DownloadString('https://raw.githubusercontent.com/appveyor/secure-file/master/install.ps1'))
    - IF [%APPVEYOR_PULL_REQUEST_NUMBER%] == [] (
        appveyor-tools\secure-file -decrypt %CODESIGN_CERTIFICATE_PATH%.enc -secret %CODESIGN_CERTIFICATE_SECURE_FILE_SECRET% -salt %CODESIGN_CERTIFICATE_SECURE_FILE_SALT%
      ) else (
        echo "Skipping certificate decryption because we are in a pull request."
      )

  before_build:
    - FOR /D %%G IN (%WINLIB_PATH%\Qt-*) DO SET QT_PATH=%%G
    - IF "%QT_PATH%" EQU "" (
        echo QT not found on %WINLIB_PATH%
      )
    # Remove C:\Program Files\Git\usr\bin from the PATH
    - set PATH=%PATH:C:\Program Files\Git\usr\bin;=%
    - set CMAKE_BUILD_PARALLEL_LEVEL=%NUMBER_OF_CORES%
    - call "%MSVC_PATH%\VC\Auxiliary\Build\vcvarsall.bat" x64
    - cd %APPVEYOR_BUILD_FOLDER%
     # Limit cache size to 100 MB
    - clcache -M 100000000
    - clcache -c
    - clcache -s
    # Improve clcache performance
    - set CLCACHE_SERVER=1
    - set CLCACHE_HARDLINK=1
    - IF [%APPVEYOR_PULL_REQUEST_HEAD_REPO_BRANCH%] == [] (
        set "MIXXX_PACKAGE_NAME=mixxx-%APPVEYOR_REPO_BRANCH:/=-%-%APPVEYOR_REPO_COMMIT%"
      ) else (
        set "MIXXX_PACKAGE_NAME=mixxx-pr-%APPVEYOR_PULL_REQUEST_NUMBER%-%APPVEYOR_PULL_REQUEST_HEAD_REPO_BRANCH:/=-%-%APPVEYOR_REPO_COMMIT%"
      )
    - ps: Start-Process clcache-server

  build_script:
    - mkdir cmake_build
    - cd cmake_build
    # TODO: Set -DDEBUG_ASSERTIONS_FATAL=OFF before deploying CI builds as releases!!!
    - cmake
      -L
      -DCPACK_PACKAGE_FILE_NAME=%MIXXX_PACKAGE_NAME%
      -DCMAKE_BUILD_TYPE=Release
      -DCMAKE_INSTALL_PREFIX=C:\mixxx
      -DCMAKE_PREFIX_PATH=%WINLIB_PATH%;%QT_PATH%
      -DDEBUG_ASSERTIONS_FATAL=ON
      -DBATTERY=ON
      -DBROADCAST=ON
      -DBULK=ON
      -DHID=ON
      -DHSS1394=ON
      -DLOCALECOMPARE=ON
      -DMAD=ON
      -DMEDIAFOUNDATION=ON
      -DOPUS=ON
      -DQTKEYCHAIN=ON
      -DVINYLCONTROL=ON
      -DSTATIC_DEPS=ON
      -G "Ninja"
      ..
    - cmake --build .
    - cmake --build . --target install
    - IF [%APPVEYOR_PULL_REQUEST_NUMBER%] == [] (
        signtool sign /f ..\%CODESIGN_CERTIFICATE_PATH% /p %CODESIGN_CERTIFICATE_PASSWORD% *.exe
      ) else (
        echo "Skipping codesigning *.exe because we are in a pull request."
      )
    # Generate WIX installer
    - cpack -G "WIX"
    - IF [%APPVEYOR_PULL_REQUEST_NUMBER%] == [] (
        signtool sign /f ..\%CODESIGN_CERTIFICATE_PATH% /p %CODESIGN_CERTIFICATE_PASSWORD% *.msi
      ) else (
        echo "Skipping codesigning *.msi because we are in a pull request."
      )

  test_script:
    # Calling mixxx-test under bash to have standard output and use stdbuf to
    # unbuffer standard & error output
    - set CTEST_OUTPUT_ON_FAILURE=1
    - ctest -C "Release" -T test --no-compress-output
    - cmake --build . --target benchmark

  after_test:
    # Found at https://help.appveyor.com/discussions/suggestions/5298-support-ctest-xml-test-results
    - ps: |
        $ctest_xml = Get-ChildItem -Path Testing\*\Test.xml
        $ctest_to_junit_xsl = Get-ChildItem -Path ..\cmake\ctest-to-junit.xsl
        $XSLInputElement = New-Object System.Xml.Xsl.XslCompiledTransform
        $XSLInputElement.Load($ctest_to_junit_xsl)
        $XSLInputElement.Transform((Resolve-Path $ctest_xml), (Join-Path (Resolve-Path .) "ctest-to-junit-results.xml"))
        $wc = New-Object 'System.Net.WebClient'
        $wc.UploadFile("https://ci.appveyor.com/api/testresults/junit/$($env:APPVEYOR_JOB_ID)", (Resolve-Path .\ctest-to-junit-results.xml))


  artifacts:
    - path: 'cmake_build/*.exe'
    - path: 'cmake_build/*.msi'

  on_finish:
    # Uncomment the following line if you don't want the build VM to be destroyed
    # and be able to RDP on it until a special “lock” file on VM desktop is deleted
    # The RDP session is limited by overall build time (60 min).
    # - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))

########## END WINDOWS SPECIFIC CONFIGURATION ##########


on_success:
  - echo "*** SUCCESS ***"

on_failure:
  - echo "*** FAILURE ***"

on_finish:
  - echo "*** DONE ***"

deploy:
  - provider: Environment
    name: downloads.mixxx.org

notifications:
  - provider: Webhook
    url: https://mixxx.zulipchat.com/api/v1/messages
    method: POST
    content_type: application/x-www-form-urlencoded
    headers:
      Authorization:
        secure: 95cbVBcC4rogjE5VNdhuYm8cnjPF8+7SeQXySqcxAqrFZxK+/Kcn3Q2hRb2iZfUEKZ+EdCYwx7EbpZdSiZc5goAuJT+/QXXT/Ls+fzc+eSy4Sz1Ic5t2BjLhmYZLdnBL3uIVceNSb8GzYPQx0+xy7g==
    on_build_status_changed: true
    body: "type=stream&to=appveyor&subject={{projectName}} Build {{buildVersion}} {{status}}&content=Build {{buildVersion}} {{status}}{{#isPullRequest}} (PR #{{pullRequestId}}) {{/isPullRequest}}{{#failed}} :cross_mark:{{/failed}}{{#passed}} :check_mark:{{/passed}} {{buildUrl}}"