Skip to content

Commit

Permalink
use newer compiler on appveyor
Browse files Browse the repository at this point in the history
  • Loading branch information
rainers committed Nov 26, 2023
1 parent e7143ad commit 64e0e5c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ environment:

# cache relative to C:\projects\visuald
cache:
- C:\projects\cache\dmd2088_0.7z
- C:\projects\cache\dmd2105_2.7z
- C:\projects\cache\cd851.zip
- C:\projects\cache\VisualD-v0.50.1.exe
- C:\projects\cache\binutils-2.25.tar.gz
Expand All @@ -52,10 +52,10 @@ install:
# Download & extract D compiler
- ps: |
If ($Env:D_COMPILER -eq 'dmd') {
If (-not (Test-Path 'cache\dmd2088_0.7z')) {
Start-FileDownload 'http://downloads.dlang.org/releases/2.x/2.088.0/dmd.2.088.0.windows.7z' -FileName 'cache\dmd2088_0.7z'
If (-not (Test-Path 'cache\dmd2105_2.7z')) {
Start-FileDownload 'http://downloads.dlang.org/releases/2.x/2.105.2/dmd.2.105.2.windows.7z' -FileName 'cache\dmd2105_2.7z'
}
7z x cache\dmd2088_0.7z > $null
7z x cache\dmd2105_2.7z > $null
Set-Item -path env:DMD -value c:\projects\dmd2\windows\bin\dmd.exe
} ElseIf ($Env:D_COMPILER -eq 'dmd-nightly') {
Start-FileDownload 'http://nightlies.dlang.org/dmd-nightly/dmd.master.windows.7z' -FileName 'dmd2.7z'
Expand Down

0 comments on commit 64e0e5c

Please sign in to comment.