mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-02-13 16:18:42 +00:00
Qt 5.9.4 was replaced by Qt 5.9.5 on May 16 (https://www.appveyor.com/updates/2018/05/16/), test the change to 5.9 symlink to avoid future problems.
33 lines
802 B
YAML
33 lines
802 B
YAML
version: ci.{build}
|
|
image: Visual Studio 2015
|
|
clone_depth: 1
|
|
init:
|
|
# Setup QT 5.9 - 64Bit
|
|
|
|
- set QTDIR=C:\Qt\5.9\msvc2015_64
|
|
- set PATH=%QTDIR%\bin;%PATH%
|
|
|
|
# Setup MSVC - VS 2015
|
|
|
|
- CALL "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64
|
|
|
|
# Get the libraries
|
|
|
|
- ps: Start-FileDownload 'https://github.com/Joern-R/gc-ci-libs/releases/download/0.0.2/gc-ci-libs.zip' -Filename 'c:/gc-ci-libs.zip'
|
|
- 7z x c:/gc-ci-libs.zip -oC:\libs
|
|
|
|
install:
|
|
# choco install winflexbison
|
|
- copy qwt\qwtconfig.pri.in qwt\qwtconfig.pri
|
|
- copy c:\libs\gcconfig64-Release.appveyor.pri src\gcconfig.pri
|
|
|
|
build_script:
|
|
- qmake.exe build.pro -r -spec win32-msvc
|
|
- nmake
|
|
|
|
#notifications:
|
|
#- provider: GitHubPullRequest
|
|
# on_build_success: true
|
|
# on_build_failure: true
|
|
# on_build_status_changed: true
|