Fix build ymls (#8445)

* add publish mac args

* don't use minified

* continue on error

* no fancy error handling

* don't need continue on error specifier
This commit is contained in:
Anthony Dresser
2019-11-22 17:05:56 -08:00
committed by GitHub
parent 22501a09a1
commit f0039a64a7
3 changed files with 34 additions and 8 deletions

View File

@@ -28,11 +28,9 @@ steps:
displayName: Prepare tooling
- powershell: |
. build/azure-pipelines/win32/exec.ps1
$ErrorActionPreference = "Stop"
exec { git remote add distro "https://github.com/$(VSCODE_MIXIN_REPO).git" }
exec { git fetch distro }
exec { git merge $(node -p "require('./package.json').distro") }
git remote add distro "https://github.com/$(VSCODE_MIXIN_REPO).git"
git fetch distro
git merge $(node -p "require('./package.json').distro")
displayName: Merge distro
- task: 1ESLighthouseEng.PipelineArtifactCaching.RestoreCacheV1.RestoreCache@1
@@ -72,7 +70,7 @@ steps:
- powershell: |
. build/azure-pipelines/win32/exec.ps1
$ErrorActionPreference = "Stop"
exec { yarn gulp "vscode-win32-x64-min" }
exec { yarn gulp "vscode-win32-x64" }
displayName: Build
- powershell: |