From 4cd2cfcf67b99ba216cca2e79204b78542aa988f Mon Sep 17 00:00:00 2001 From: Amaury Martiny Date: Mon, 11 Nov 2019 00:30:50 +0100 Subject: [PATCH] fix: CI install node12 for windows (#576) * fix: CI install node12 for windows * Add tag * Use n to update node * Everything works, move to win-build --- .gitlab-ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4400cfff..59ad64a4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -76,6 +76,10 @@ win-build: image: electronuserland/builder:wine <<: *branches script: + # Remove the two next lines once the Docker image gets updated to node 12 + # https://github.com/electron-userland/electron-builder/issues/4377 + - npm install -g n + - n stable - yarn install - yarn build # `win-build` is a linux machine, so it downloaded a linux parity-ethereum. -- GitLab