From 6e59651e0aaabc49254c97d11a10968638632ccc Mon Sep 17 00:00:00 2001 From: Jiawen Geng Date: Sat, 14 May 2022 04:10:18 +0000 Subject: [PATCH] build: disable windows-2022 temporarily MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/43093 Reviewed-By: Tobias Nießen Reviewed-By: Rich Trott --- .github/workflows/build-windows.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-windows.yml b/.github/workflows/build-windows.yml index d7beaee36cde94..5ab5f98739f579 100644 --- a/.github/workflows/build-windows.yml +++ b/.github/workflows/build-windows.yml @@ -30,7 +30,11 @@ env: jobs: build-windows: if: github.event.pull_request.draft == false - runs-on: windows-2019 + strategy: + matrix: + windows: [windows-2019] + fail-fast: false + runs-on: ${{ matrix.windows }} steps: - uses: actions/checkout@v3 with: