From 340e61990b9bf871d8a5e9b9337eaa337d3e9ddc Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Tue, 21 Oct 2025 19:45:46 +0200 Subject: [PATCH] tools: disable inspector on macOS-shared to reduce flakiness PR-URL: https://github.com/nodejs/node/pull/60320 Reviewed-By: Chengzhong Wu Reviewed-By: Joyee Cheung Reviewed-By: Marco Ippolito Reviewed-By: Yagiz Nizipli --- .github/workflows/test-shared.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test-shared.yml b/.github/workflows/test-shared.yml index 3f0491bd73..fe5ac5abb1 100644 --- a/.github/workflows/test-shared.yml +++ b/.github/workflows/test-shared.yml @@ -78,6 +78,7 @@ jobs: --arg ccache '(import {}).sccache' \ --arg devTools '[]' \ --arg benchmarkTools '[]' \ + ${{ endsWith(matrix.system, '-darwin') && '--arg extraConfigFlags ''["--without-inspector"]'' \' || '\' }} --run ' make run-ci -j4 V=1 TEST_CI_ARGS="-p actions --measure-flakiness 9 --skip-tests=$CI_SKIP_TESTS" '