@@ -18,18 +18,18 @@ environment:
1818 - os : Visual Studio 2017
1919 VS : 15
2020 APPVEYOR_BUILD_WORKER_IMAGE : Visual Studio 2017
21- - os : Visual Studio 2015
22- VS : 14
23- APPVEYOR_BUILD_WORKER_IMAGE : Visual Studio 2015
21+ # - os: Visual Studio 2015
22+ # VS: 14
23+ # APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
2424# - os: Visual Studio 2013
2525# VS: 12
2626# APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
2727
2828# cache relative to C:\projects\visuald
2929cache :
30- - C:\projects\cache\dmd2083_0 .7z
30+ - C:\projects\cache\dmd2088_0 .7z
3131 - C:\projects\cache\cd851.zip
32- - C:\projects\cache\VisualD-v0.47.0 .exe
32+ - C:\projects\cache\VisualD-v0.50.1 .exe
3333 - C:\projects\cache\binutils-2.25.tar.gz
3434
3535# matrix:
@@ -50,10 +50,10 @@ install:
5050 # Download & extract D compiler
5151 - ps : |
5252 If ($Env:D_COMPILER -eq 'dmd') {
53- If (-not (Test-Path 'cache\dmd2083_0 .7z')) {
54- Start-FileDownload 'http://downloads.dlang.org/releases/2.x/2.083 .0/dmd.2.083 .0.windows.7z' -FileName 'cache\dmd2083_0 .7z'
53+ If (-not (Test-Path 'cache\dmd2088_0 .7z')) {
54+ Start-FileDownload 'http://downloads.dlang.org/releases/2.x/2.088 .0/dmd.2.088 .0.windows.7z' -FileName 'cache\dmd2088_0 .7z'
5555 }
56- 7z x cache\dmd2083_0 .7z > $null
56+ 7z x cache\dmd2088_0 .7z > $null
5757 Set-Item -path env:DMD -value c:\projects\dmd2\windows\bin\dmd.exe
5858 c:\projects\dmd2\windows\bin\dmd.exe --version
5959 } ElseIf ($Env:D_COMPILER -eq 'dmd-nightly') {
@@ -77,10 +77,10 @@ install:
7777 copy c:\projects\dm\bin\coffimplib.exe c:\projects\dmd2\windows\bin
7878 # Download & install Visual D
7979 - ps : |
80- If (-not (Test-Path 'cache\VisualD-v0.47.0 .exe')) {
81- Start-FileDownload 'https://github.com/dlang/visuald/releases/download/v0.47.0 /VisualD-v0.47.0 .exe' -FileName 'cache\VisualD-v0.47.0 .exe'
80+ If (-not (Test-Path 'cache\VisualD-v0.50.1 .exe')) {
81+ Start-FileDownload 'https://github.com/dlang/visuald/releases/download/v0.50.1 /VisualD-v0.50.1 .exe' -FileName 'cache\VisualD-v0.50.1 .exe'
8282 }
83- - cache\VisualD-v0.47.0 .exe /S
83+ - cache\VisualD-v0.50.1 .exe /S
8484 # configure DMD path
8585 - reg add "HKLM\SOFTWARE\DMD" /v InstallationFolder /t REG_SZ /d c:\projects /reg:32 /f
8686 # disable link dependencies monitoring, fails on AppVeyor server
@@ -104,14 +104,14 @@ before_build:
104104build_script :
105105 - cd c:\projects
106106 - cd visuald
107+ # Fetch submodules
108+ - git submodule update --init --recursive
107109 # ignore failure once, in case it needs reloading the sdk project
108110 - nmake prerequisites || nmake prerequisites
109111 # build Visual D
110112 - nmake visuald_vs
111113 # build and run Visual D unittests
112- - nmake visuald_test
113- # Fetch submodules
114- - git submodule update --init --recursive
114+ - nmake visuald_test dmdserver_test
115115 - cd ..
116116 # Clone mago/cv2pdb (need to be two levels up)
117117 - cd ..
0 commit comments