diff --git a/build/azure-pipelines/darwin/product-build-darwin.yml b/build/azure-pipelines/darwin/product-build-darwin.yml index 61425f5ee02..b376df8e3e9 100644 --- a/build/azure-pipelines/darwin/product-build-darwin.yml +++ b/build/azure-pipelines/darwin/product-build-darwin.yml @@ -19,10 +19,10 @@ steps: EOF yarn + VSCODE_MIXIN_PASSWORD="$(VSCODE_MIXIN_PASSWORD)" yarn gulp -- mixin yarn gulp -- hygiene yarn monaco-compile-check yarn strict-null-check - VSCODE_MIXIN_PASSWORD="$(VSCODE_MIXIN_PASSWORD)" yarn gulp -- mixin node build/azure-pipelines/common/installDistro.js node build/lib/builtInExtensions.js displayName: Prepare build diff --git a/build/azure-pipelines/linux/product-build-linux.yml b/build/azure-pipelines/linux/product-build-linux.yml index 6c870c6d41d..ae4ec05322c 100644 --- a/build/azure-pipelines/linux/product-build-linux.yml +++ b/build/azure-pipelines/linux/product-build-linux.yml @@ -23,10 +23,10 @@ steps: EOF CHILD_CONCURRENCY=1 yarn + VSCODE_MIXIN_PASSWORD="$(VSCODE_MIXIN_PASSWORD)" npm run gulp -- mixin npm run gulp -- hygiene npm run monaco-compile-check npm run strict-null-check - VSCODE_MIXIN_PASSWORD="$(VSCODE_MIXIN_PASSWORD)" npm run gulp -- mixin node build/azure-pipelines/common/installDistro.js node build/lib/builtInExtensions.js diff --git a/build/azure-pipelines/win32/product-build-win32.yml b/build/azure-pipelines/win32/product-build-win32.yml index 251e6dd321a..0b1e75a44be 100644 --- a/build/azure-pipelines/win32/product-build-win32.yml +++ b/build/azure-pipelines/win32/product-build-win32.yml @@ -20,10 +20,10 @@ steps: $env:CHILD_CONCURRENCY="1" $env:VSCODE_MIXIN_PASSWORD="$(VSCODE_MIXIN_PASSWORD)" exec { yarn } + exec { npm run gulp -- mixin } exec { npm run gulp -- hygiene } exec { npm run monaco-compile-check } exec { npm run strict-null-check } - exec { npm run gulp -- mixin } exec { node build/azure-pipelines/common/installDistro.js } exec { node build/lib/builtInExtensions.js }