Skip to content

Commit

Permalink
Upgrade to Qt 5.15.2 for Windows build on Appveyor
Browse files Browse the repository at this point in the history
Since Qt 5.14.2 was removed from Appveyor images
Also fixed R version to latest 4.1 since there are issues with 4.2
[skip Travis]
  • Loading branch information
amtriathlon committed May 15, 2022
1 parent f74b5ae commit 3e5fefa
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions appveyor.yml
@@ -1,5 +1,5 @@
version: ci.{build}
image: Previous Visual Studio 2019
image: Visual Studio 2019
clone_depth: 1

environment:
Expand Down Expand Up @@ -41,8 +41,8 @@ environment:
secure: mmMksvVnfBiXufBDn2gAhQY53n0J9BokSCtDY51uU918QJ/LL4XOojtJp5tMFn8T7ugyDhNASpqZXiK55vxSD53vm+tjufpfzppKEeh93Babvc/VrndLB1X/RZCRUQTR6rka05fYl4e0eBzP1H091A==

init:
# Setup QT 5.14 - 64Bit
- set QTDIR=C:\Qt\5.14\msvc2017_64
# Setup QT 5.15 - 64Bit
- set QTDIR=C:\Qt\5.15\msvc2019_64
- set PATH=%QTDIR%\bin;%PATH%
- qmake --version

Expand Down Expand Up @@ -80,7 +80,9 @@ install:
# Get R and add to config
- ps: >-
if (-not (Test-Path 'C:\R')) {
$rurl = $(ConvertFrom-JSON $(Invoke-WebRequest https://rversions.r-pkg.org/r-release-win).Content).URL
# Lets use 4.1 until 4.2 issues are fixed
#$rurl = $(ConvertFrom-JSON $(Invoke-WebRequest https://rversions.r-pkg.org/r-release-win).Content).URL
$rurl = "https://cran.r-project.org/bin/windows/base/old/4.1.3/R-4.1.3-win.exe"
Start-FileDownload $rurl "R-win.exe"
Start-Process -FilePath .\R-win.exe -ArgumentList "/VERYSILENT /DIR=C:\R" -NoNewWindow -Wait
}
Expand Down

0 comments on commit 3e5fefa

Please sign in to comment.