mirror of https://gitlab.com/basile.b/dexed.git
fix appveyor broken
note that ldc 1.30 + matching dub is the last that can build libdexed-d. That start failing from 1.31 again.
This commit is contained in:
parent
468a3a6656
commit
63fff3f001
|
|
@ -19,14 +19,14 @@ branches:
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- ps: |
|
- ps: |
|
||||||
$LDC_URL = "https://github.com/ldc-developers/ldc/releases/download/v1.27.1/ldc2-1.27.1-windows-x64.7z"
|
$LDC_URL = "https://github.com/ldc-developers/ldc/releases/download/v1.30.0/ldc2-1.30.0-windows-x64.7z"
|
||||||
$LDC_NME = "C:\ldc.7z";
|
$LDC_NME = "C:\ldc.7z";
|
||||||
$LAZ_URL = "https://gitlab.com/basile.b/laz-bin-cache.git"
|
$LAZ_URL = "https://gitlab.com/basile.b/laz-bin-cache.git"
|
||||||
$LAZ_NME = "laz-bin-cache\lazarus-2.2.0-fpc-3.2.2-win64.exe"
|
$LAZ_NME = "laz-bin-cache\lazarus-2.2.0-fpc-3.2.2-win64.exe"
|
||||||
|
|
||||||
(new-object net.webclient).DownloadFile($LDC_URL, $LDC_NME)
|
(new-object net.webclient).DownloadFile($LDC_URL, $LDC_NME)
|
||||||
7z x $LDC_NME -o"C:\" -y -r
|
7z x $LDC_NME -o"C:\" -y -r
|
||||||
Rename-Item "C:\ldc2-1.27.1-windows-x64" "C:\ldc"
|
Rename-Item "C:\ldc2-1.30.0-windows-x64" "C:\ldc"
|
||||||
|
|
||||||
git clone $LAZ_URL --depth=1
|
git clone $LAZ_URL --depth=1
|
||||||
Start-Process -FilePath $LAZ_NME -Wait -ArgumentList "/SILENT", "/SUPPRESSMSGBOXES", "/DIR=C:\lazarus"
|
Start-Process -FilePath $LAZ_NME -Wait -ArgumentList "/SILENT", "/SUPPRESSMSGBOXES", "/DIR=C:\lazarus"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue