From 803682d9b8590d6dfd467081eb16a861ffbb1cc8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20Drwi=C4=99ga?= Date: Mon, 11 Jul 2016 10:43:02 +0200 Subject: [PATCH] Installing node on appveyor --- appveyor.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index eeee19c45..b183af550 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,5 +1,4 @@ environment: - nodejs_version: "6.3.0" matrix: - TARGET: x86_64-pc-windows-msvc cert: @@ -18,6 +17,7 @@ branches: install: - git submodule update --init --recursive + - ps: Install-Product node 6 - ps: Start-FileDownload "https://static.rust-lang.org/dist/rust-1.9.0-x86_64-pc-windows-msvc.exe" - ps: Start-FileDownload "https://github.com/ethcore/win-build/raw/master/SimpleFC.dll" -FileName nsis\SimpleFC.dll - ps: Start-FileDownload "https://github.com/ethcore/win-build/raw/master/vc_redist.x64.exe" -FileName nsis\vc_redist.x64.exe @@ -25,6 +25,8 @@ install: - SET PATH=%PATH%;C:\Program Files (x86)\Rust\bin;C:\Program Files (x86)\NSIS;C:\Program Files (x86)\Microsoft SDKs\Windows\v7.1A\Bin - rustc -V - cargo -V + - node -v + - npm -v build: off