From 43b35fecd8e3ccf1784bc35384460b2274d571cf Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Thu, 16 Oct 2025 14:33:43 +0200 Subject: [PATCH] tools: disable inspector on macOS-shared to reduce flakiness --- .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 8cf5bb2419a5a2..8f7397d0888ab4 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" '