mirror of https://github.com/buggins/dlangui.git
Update appveyor.yml
This commit is contained in:
parent
5b96e81d1e
commit
682d6a8301
14
appveyor.yml
14
appveyor.yml
|
@ -5,9 +5,9 @@ platform:
|
||||||
environment:
|
environment:
|
||||||
matrix:
|
matrix:
|
||||||
- DC: dmd
|
- DC: dmd
|
||||||
DVersion: 2.074.0
|
DVersion: 2.075.0
|
||||||
- DC: ldc
|
- DC: ldc
|
||||||
DVersion: 1.1.0
|
DVersion: 1.3.0
|
||||||
|
|
||||||
matrix:
|
matrix:
|
||||||
allow_failures:
|
allow_failures:
|
||||||
|
@ -48,13 +48,8 @@ install:
|
||||||
echo "finished.";
|
echo "finished.";
|
||||||
pushd c:\\;
|
pushd c:\\;
|
||||||
7z x ldc.zip > $null;
|
7z x ldc.zip > $null;
|
||||||
mv ldc2-$($version)-win$($env:Dmodel)-msvc ldc2;
|
|
||||||
popd;
|
popd;
|
||||||
}
|
}
|
||||||
Invoke-WebRequest "https://code.dlang.org/files/dub-1.1.1-windows-x86.zip" -OutFile "c:\dub.zip";
|
|
||||||
pushd c:\\;
|
|
||||||
7z x dub.zip -odub > $null;
|
|
||||||
popd;
|
|
||||||
}
|
}
|
||||||
- ps: SetUpDCompiler
|
- ps: SetUpDCompiler
|
||||||
|
|
||||||
|
@ -74,8 +69,9 @@ before_build:
|
||||||
$env:PATH += ";C:\dub";
|
$env:PATH += ";C:\dub";
|
||||||
}
|
}
|
||||||
elseif($env:DC -eq "ldc"){
|
elseif($env:DC -eq "ldc"){
|
||||||
$env:PATH += ";C:\ldc2\bin";
|
$version = $env:DVersion;
|
||||||
$env:PATH += ";C:\dub";
|
$model = $env:Dmodel;
|
||||||
|
$env:PATH += ";C:\ldc2-$($version)-win$($model)-msvc\bin";
|
||||||
$env:DC = "ldc2";
|
$env:DC = "ldc2";
|
||||||
}
|
}
|
||||||
- ps: $env:compilersetup = "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall";
|
- ps: $env:compilersetup = "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall";
|
||||||
|
|
Loading…
Reference in New Issue