From 039594de926eb33d44cdb32a2e7217671c86dd30 Mon Sep 17 00:00:00 2001 From: "Denis S. Soldatov aka General-Beck" Date: Wed, 12 Oct 2016 01:39:53 +0700 Subject: [PATCH] Update gitlab-ci switch to curl in win build --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 139c6bda6..dfbe6898a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -268,8 +268,8 @@ windows: - rustup default stable-x86_64-pc-windows-msvc - cargo build --release --verbose - cmd md5sum target\release\parity >> checksum - - powershell Start-FileDownload "https://github.com/ethcore/win-build/raw/master/SimpleFC.dll" -FileName nsis\SimpleFC.dll - - powershell Start-FileDownload "https://github.com/ethcore/win-build/raw/master/vc_redist.x64.exe" -FileName nsis\vc_redist.x64.exe + - cmd curl -L --url https://github.com/ethcore/win-build/raw/master/SimpleFC.dll -o nsis\SimpleFC.dll + - cmd curl -L --url https://github.com/ethcore/win-build/raw/master/vc_redist.x64.exe -o nsis\vc_redist.x64.exe - cmd signtool sign /f %keyfile% /p %certpass% target\release\parity.exe - cmd C:\NSIS\makensis.exe nsis\installer.nsi - cmd signtool sign /f %keyfile% /p %certpass% nsis\installer.exe