diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6f53980790abd..223f934d34787 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ on: jobs: windows: name: Windows - runs-on: windows-latest + runs-on: windows-2019 timeout-minutes: 60 env: CHILD_CONCURRENCY: "1" diff --git a/.github/workflows/rich-navigation.yml b/.github/workflows/rich-navigation.yml index 2afe38c5e717f..d8731f550dceb 100644 --- a/.github/workflows/rich-navigation.yml +++ b/.github/workflows/rich-navigation.yml @@ -10,7 +10,7 @@ on: jobs: richnav: - runs-on: windows-latest + runs-on: windows-2019 steps: - uses: actions/checkout@v2 diff --git a/build/azure-pipelines/darwin/product-build-darwin.yml b/build/azure-pipelines/darwin/product-build-darwin.yml index 375da9de1b775..585676c9835f6 100644 --- a/build/azure-pipelines/darwin/product-build-darwin.yml +++ b/build/azure-pipelines/darwin/product-build-darwin.yml @@ -79,6 +79,10 @@ steps: set -e export npm_config_arch=$(VSCODE_ARCH) export npm_config_node_gyp=$(which node-gyp) + # Electron <= 13 does not ship with correct config.gypi headers, + # remove this once we update to newer versions. + # Refs https://github.com/nodejs/node-gyp/pull/2497 + export npm_config_force_process_config=true for i in {1..3}; do # try 3 times, for Terrapin yarn --frozen-lockfile && break