build: add more space for msbuild

This commit is contained in:
calebboyd
2020-06-24 19:56:40 -05:00
parent 6ffd47f1f1
commit bc1d579baa
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -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')
+1 -1
View File
@@ -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