From e45ed4e162b52e263b4faebba57e89e3782ffa59 Mon Sep 17 00:00:00 2001 From: dvirtz Date: Mon, 20 Jun 2022 09:05:37 +0300 Subject: [PATCH] ci: disable mac builds due to https://github.com/nodejs/node/issues/42154 --- .github/workflows/main.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 46bdbb5..83eb622 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -9,7 +9,12 @@ jobs: build: strategy: matrix: - os: [macos-latest, ubuntu-latest, windows-latest] + os: [ + # disable mac due to https://github.com/nodejs/node/issues/42154 + # macos-latest, + ubuntu-latest, + windows-latest, + ] runs-on: ${{ matrix.os }} steps: - name: Checkout