Skip to content

Commit

Permalink
update Qt on AppVeyor (Windows builds) to 5.12.5
Browse files Browse the repository at this point in the history
  • Loading branch information
anatoly-os committed Sep 17, 2019
1 parent 9a418f6 commit eb3b9ab
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ branches:
# build cache to preserve files/folders between builds
cache:
- dependencies.7z
- qt-5.12.3-msvc_64.7z # if not using AppVeyor's built-in Qt in before_build.bat
- qt-5.12.3-msvc_32.7z # if not using AppVeyor's built-in Qt in before_build.bat
- qt5125_msvc2017_64.7z # if not using AppVeyor's built-in Qt in before_build.bat
- qt5125_msvc2017_32.7z # if not using AppVeyor's built-in Qt in before_build.bat
- C:\Program Files (x86)\Jack
- C:\MuseScore\build.release\thirdparty
- C:\ccache
Expand Down
8 changes: 4 additions & 4 deletions build/appveyor/before_build.bat
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
:: set platform-dependent variables
IF "%PLATFORM%" == "x64" (
SET "QTURL=https://utils.musescore.org.s3.amazonaws.com/qt5123_msvc2017_64.7z"
SET "QTURL=https://utils.musescore.org.s3.amazonaws.com/qt5125_msvc2017_64.7z"
SET "QTDIR=%cd%\qt\msvc2017_64" & :: uncomment to use our Qt
SET "QTCACHE=qt5123_msvc2017_64.7z" & :: bump version here and .appveyor.yml to trigger cache rebuild when upgrading Qt
SET "QTCACHE=qt5125_msvc2017_64.7z" & :: bump version here and .appveyor.yml to trigger cache rebuild when upgrading Qt
:: SET "QTDIR=C:\Qt\5.12.4\msvc2017_64" & :: uncomment to use AppVeyor's Qt
SET "TARGET_PROCESSOR_BITS=64"
SET "TARGET_PROCESSOR_ARCH=x86_64"
) ELSE (
SET "QTURL=https://utils.musescore.org.s3.amazonaws.com/qt5123_msvc2017_32.7z"
SET "QTURL=https://utils.musescore.org.s3.amazonaws.com/qt5125_msvc2017_32.7z"
SET "QTDIR=%cd%\qt\msvc2017" & :: uncomment to use our Qt
SET "QTCACHE=qt5123_msvc2017_32.7z" & :: bump version here and .appveyor.yml to trigger cache rebuild when upgrading Qt
SET "QTCACHE=qt5125_msvc2017_32.7z" & :: bump version here and .appveyor.yml to trigger cache rebuild when upgrading Qt
:: SET "QTDIR=C:\Qt\5.12.4\msvc2017" & :: uncomment to use AppVeyor's Qt
SET "TARGET_PROCESSOR_BITS=32"
SET "TARGET_PROCESSOR_ARCH=x86"
Expand Down

0 comments on commit eb3b9ab

Please sign in to comment.