1
0
This commit is contained in:
otya128
2016-12-06 19:55:43 +09:00
parent d5d1138607
commit 41c3fb49d1

19
appveyor.yml Normal file
View File

@@ -0,0 +1,19 @@
install:
- cd c:\projects
- ps: |
$dmdVersion = '2.072.0'
Invoke-WebRequest "http://downloads.dlang.org/releases/2.x/$dmdVersion/dmd.$dmdVersion.windows.7z" -OutFile "dmd2.7z"
7z x dmd2.7z > $null
Set-Item -path env:DMD -value c:\projects\dmd2\windows\bin\dmd.exe
c:\projects\dmd2\windows\bin\dmd.exe --version
$dubVersion = '1.1.1'
Invoke-WebRequest "https://code.dlang.org/files/dub-1.1.1-windows-x86.zip" - OutFile dub.zip
7z x dub.zip > $null
Set-Item -path env:DMD -value c:\projects\dub\dub.exe
build_script:
- cd c:\projects
- dub build
test_script:
- dub test