From d50d86a7601c79fe0da70d27b671d8203d6ce651 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Reis?= Date: Fri, 23 Mar 2018 21:31:35 +0000 Subject: [PATCH 1/2] setup,win: update inventory and fix link --- setup/ansible-inventory | 2 +- setup/windows/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup/ansible-inventory b/setup/ansible-inventory index 241f553df..b3704ea6b 100644 --- a/setup/ansible-inventory +++ b/setup/ansible-inventory @@ -133,7 +133,7 @@ node-win2016-62910.cloudapp.net 104.239.174.16 23.253.234.112 162.242.247.5 -104.239.151.28 +104.130.124.222 104.239.231.87 162.242.156.145 162.242.235.179 diff --git a/setup/windows/README.md b/setup/windows/README.md index bee5711e9..e3ff77bee 100644 --- a/setup/windows/README.md +++ b/setup/windows/README.md @@ -1,6 +1,6 @@ # Node.js Build Windows Setup for Jenkins Test Machines -See the [manual setup instructions](../../docs/non-ansible-configuration-notes.md) for how to prepare both the control and target machines to run the commands below. +See the [manual setup instructions](../../doc/non-ansible-configuration-notes.md) for how to prepare both the control and target machines to run the commands below. To test the connection to the hosts, run: From 294bd0dc62ff9c7536269aa7327a31cbef4b44cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Reis?= Date: Fri, 23 Mar 2018 21:32:29 +0000 Subject: [PATCH 2/2] setup,win: add NASM Fixes: https://github.com/nodejs/build/issues/1190 --- setup/windows/common-ansible-playbook.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/setup/windows/common-ansible-playbook.yaml b/setup/windows/common-ansible-playbook.yaml index faeb171cb..c18f7641b 100644 --- a/setup/windows/common-ansible-playbook.yaml +++ b/setup/windows/common-ansible-playbook.yaml @@ -3,6 +3,11 @@ - name: Create C:\TEMP directory win_file: path='C:\TEMP' state=directory +- name: NetWide Assembler + win_chocolatey: + name: nasm + state: latest + - name: Python | Download Python 2 MSI win_get_url: url: 'https://www.python.org/ftp/python/2.7.10/python-2.7.10.amd64.msi'