From 0440d8b0ea190c88c33a008f06d2bc203f4bcece Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6nke=20Ludwig?= Date: Mon, 23 Jan 2017 09:01:17 +0100 Subject: [PATCH] Add AppVeyor (Windows) test configuration. --- appveyor.yml | 108 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 108 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..b028622 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,108 @@ +platform: x64 +environment: + matrix: + - DC: dmd + DVersion: 2.073.2 + arch: x64 + - DC: dmd + DVersion: 2.073.2 + arch: x86 + - DC: dmd + DVersion: 2.072.2 + arch: x64 + - DC: dmd + DVersion: 2.071.1 + arch: x86 + - DC: dmd + DVersion: 2.070.0 + arch: x64 + - DC: ldc + DVersion: 1.1.0-beta6 + arch: x86 + - DC: ldc + DVersion: 1.0.0 + arch: x86 + +matrix: + allow_failures: + - CONFIG: winapi + - CONFIG: libasync + +skip_tags: false +branches: + only: + - master + +install: + - ps: function SetUpDCompiler + { + if($env:DC -eq "dmd"){ + if($env:arch -eq "x86"){ + $env:DConf = "m32"; + } + elseif($env:arch -eq "x64"){ + $env:DConf = "m64"; + } + echo "downloading ..."; + $env:toolchain = "msvc"; + $version = $env:DVersion; + Invoke-WebRequest "http://downloads.dlang.org/releases/2.x/$($version)/dmd.$($version).windows.7z" -OutFile "c:\dmd.7z"; + echo "finished."; + pushd c:\\; + 7z x dmd.7z > $null; + popd; + } + elseif($env:DC -eq "ldc"){ + echo "downloading ..."; + if($env:arch -eq "x86"){ + $env:DConf = "m32"; + } + elseif($env:arch -eq "x64"){ + $env:DConf = "m64"; + } + $env:toolchain = "msvc"; + $version = $env:DVersion; + Invoke-WebRequest "https://github.com/ldc-developers/ldc/releases/download/v$($version)/ldc2-$($version)-win64-msvc.zip" -OutFile "c:\ldc.zip"; + echo "finished."; + pushd c:\\; + 7z x ldc.zip > $null; + popd; + } + } + - ps: SetUpDCompiler + - powershell -Command Invoke-WebRequest https://code.dlang.org/files/dub-1.2.0-windows-x86.zip -OutFile dub.zip + - 7z x dub.zip -odub > nul + - set PATH=%CD%\%binpath%;%CD%\dub;%PATH% + - dub --version + +before_build: + - ps: if($env:arch -eq "x86"){ + $env:compilersetupargs = "x86"; + $env:Darch = "x86"; + } + elseif($env:arch -eq "x64"){ + $env:compilersetupargs = "amd64"; + $env:Darch = "x86_64"; + } + - ps : if($env:DC -eq "dmd"){ + $env:PATH += ";C:\dmd2\windows\bin;"; + } + elseif($env:DC -eq "ldc"){ + $version = $env:DVersion; + $env:PATH += ";C:\ldc2-$($version)-win64-msvc\bin"; + $env:DC = "ldc2"; + } + - ps: $env:compilersetup = "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall"; + - '"%compilersetup%" %compilersetupargs%' + +build_script: + - echo dummy build script - dont remove me + +test_script: + - echo %PLATFORM% + - echo %Darch% + - echo %DC% + - echo %PATH% + - set CONFIG=select + - '%DC% --version' + - dub test --arch=%Darch% --compiler=%DC% --config=%CONFIG% \ No newline at end of file