From bc1d579baa7346c003c5a42ed93fc266bfc3ffdc Mon Sep 17 00:00:00 2001 From: calebboyd Date: Wed, 24 Jun 2020 19:56:40 -0500 Subject: [PATCH] build: add more space for msbuild --- azure-pipelines.yml | 3 ++- tasks/docker.ts | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 4802ec9..54ecdbd 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -25,7 +25,7 @@ jobs: linux: imageName: 'ubuntu-16.04' mac: - imageName: 'macos-10.14' + imageName: 'macos-10.15' windows_2017: imageName: 'vs2017-win2016' windows_2015: @@ -55,6 +55,7 @@ jobs: env: GITHUB_TOKEN: $(PersonalGithubToken) NEXE_VERBOSE: $(NEXE_VERBOSE) + msbuild_args: /3G condition: not(contains(variables['Agent.JobName'], 'windows')) - powershell: | iex (new-object net.webclient).downloadstring('https://get.scoop.sh') diff --git a/tasks/docker.ts b/tasks/docker.ts index 794bffb..bc4d1bc 100644 --- a/tasks/docker.ts +++ b/tasks/docker.ts @@ -6,7 +6,7 @@ import { appendFileSync } from 'fs' function alpine(target: NexeTarget) { return ` -FROM ${target.arch === 'x64' ? '' : 'i386/'}alpine:3.4 +FROM ${target.arch === 'x64' ? '' : 'i386/'}alpine:3.12 RUN apk add --no-cache curl make gcc g++ binutils-gold python linux-headers paxctl libgcc libstdc++ git vim tar gzip wget ENV NODE_VERSION=${target.version} ENV NEXE_VERSION=latest