554bd59588
This patch adds experimental support for Cirrus CI builds. Cirrus CI has both Windows and Linux, uses google cloud and runs builds in Docker containers. This seems to be a promising combination for our needs.
16 lines
615 B
Docker
16 lines
615 B
Docker
FROM microsoft/windowsservercore:1709
|
|
|
|
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
|
|
|
|
ENV NODE_VERSION 6.12.3
|
|
|
|
RUN netsh interface ipv4 set subinterface 'vEthernet (Ethernet)' mtu=1460 store=persistent
|
|
|
|
RUN Invoke-WebRequest $('https://nodejs.org/dist/v{0}/node-v{0}-win-x64.zip' -f $env:NODE_VERSION) -OutFile 'node.zip' -UseBasicParsing ; \
|
|
Expand-Archive node.zip -DestinationPath C:\ ; \
|
|
Rename-Item -Path $('C:\node-v{0}-win-x64' -f $env:NODE_VERSION) -NewName 'C:\nodejs'
|
|
|
|
SHELL ["cmd", "/S", "/C"]
|
|
|
|
RUN setx /m PATH "%PATH%;C:\nodejs"
|