Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoão Moreno <joao.moreno@microsoft.com>2022-05-10 14:17:05 +0300
committerGitHub <noreply@github.com>2022-05-10 14:17:05 +0300
commitdcfe6b3b84665efb3b15ec4a718ee32f2101a333 (patch)
tree4d6e1a2f250ed3062bf58758889eb3acc88f9517 /build/azure-pipelines
parent934e3781652f33a3c3352d8be153c090fff1e9f1 (diff)
Generate ADMX/ADML policy declaration files from static analysis
Fixes: #148941
Diffstat (limited to 'build/azure-pipelines')
-rw-r--r--build/azure-pipelines/win32/product-build-win32.yml7
1 files changed, 7 insertions, 0 deletions
diff --git a/build/azure-pipelines/win32/product-build-win32.yml b/build/azure-pipelines/win32/product-build-win32.yml
index 78367983406..0d1c8e5cf1b 100644
--- a/build/azure-pipelines/win32/product-build-win32.yml
+++ b/build/azure-pipelines/win32/product-build-win32.yml
@@ -129,6 +129,13 @@ steps:
- powershell: |
. build/azure-pipelines/win32/exec.ps1
$ErrorActionPreference = "Stop"
+ exec { node build\lib\policies }
+ displayName: Generate Group Policy definitions
+ condition: and(succeeded(), ne(variables['VSCODE_PUBLISH'], 'false'))
+
+ - powershell: |
+ . build/azure-pipelines/win32/exec.ps1
+ $ErrorActionPreference = "Stop"
$env:VSCODE_MIXIN_PASSWORD="$(github-distro-mixin-password)"
exec { yarn gulp "vscode-win32-$(VSCODE_ARCH)-min-ci" }
echo "##vso[task.setvariable variable=CodeSigningFolderPath]$(agent.builddirectory)/VSCode-win32-$(VSCODE_ARCH)"