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:
authorRobo <hop2deep@gmail.com>2022-05-19 08:34:26 +0300
committerGitHub <noreply@github.com>2022-05-19 08:34:26 +0300
commit60e199cda4988e09fd78b1eeb9dce5e9e87e8a1d (patch)
tree9ecd3e0e3fa9fb5e150c62152df4b11a2fd45483 /build/azure-pipelines
parentba2dd825803b5f95d5dcce927afc3a4882ed0f84 (diff)
chore: bump electron@17.4.4 (#149896)
Diffstat (limited to 'build/azure-pipelines')
-rw-r--r--build/azure-pipelines/linux/product-build-linux-client.yml10
-rw-r--r--build/azure-pipelines/win32/product-build-win32.yml8
2 files changed, 0 insertions, 18 deletions
diff --git a/build/azure-pipelines/linux/product-build-linux-client.yml b/build/azure-pipelines/linux/product-build-linux-client.yml
index 4e6f8f13d0e..7dba0eef378 100644
--- a/build/azure-pipelines/linux/product-build-linux-client.yml
+++ b/build/azure-pipelines/linux/product-build-linux-client.yml
@@ -122,16 +122,6 @@ steps:
- script: |
set -e
export npm_config_arch=$(NPM_ARCH)
- # node-gyp@9.0.0 shipped with node@16.15.0 starts using config.gypi
- # from the custom headers path if dist-url option was set instead of
- # using the config value from the process. Electron builds with pointer compression
- # enabled for x64 and arm64, but incorrectly ships a single copy of config.gypi
- # with v8_enable_pointer_compression option always set for all target architectures.
- # We use the force_process_config option to use the config.gypi from the
- # nodejs process executing npm for 32-bit architectures.
- if [ "$NPM_ARCH" = "armv7l" ]; then
- export npm_config_force_process_config="true"
- fi
if [ -z "$CC" ] || [ -z "$CXX" ]; then
# Download clang based on chromium revision used by vscode
diff --git a/build/azure-pipelines/win32/product-build-win32.yml b/build/azure-pipelines/win32/product-build-win32.yml
index 286283a31dc..4b746afc2a1 100644
--- a/build/azure-pipelines/win32/product-build-win32.yml
+++ b/build/azure-pipelines/win32/product-build-win32.yml
@@ -103,14 +103,6 @@ steps:
. build/azure-pipelines/win32/retry.ps1
$ErrorActionPreference = "Stop"
$env:npm_config_arch="$(VSCODE_ARCH)"
- # node-gyp@9.0.0 shipped with node@16.15.0 starts using config.gypi
- # from the custom headers path if dist-url option was set instead of
- # using the config value from the process. Electron builds with pointer compression
- # enabled for x64 and arm64, but incorrectly ships a single copy of config.gypi
- # with v8_enable_pointer_compression option always set for all target architectures.
- # We use the force_process_config option to use the config.gypi from the
- # nodejs process executing npm for 32-bit architectures.
- if ('$(VSCODE_ARCH)' -eq 'ia32') { $env:npm_config_force_process_config="true" }
$env:CHILD_CONCURRENCY="1"
retry { exec { yarn --frozen-lockfile --check-files } }
env: