From 964b4c2f9257c68fd9c097fe2555a6383d473784 Mon Sep 17 00:00:00 2001 From: Boris Zbarsky Date: Wed, 6 Apr 2022 09:57:14 -0400 Subject: [PATCH] Force Darwin test chip-all-clusters-app to only advertise on local interface. (#17087) Its advertising across all interfaces, and this might be the source of cross-talk with the Tests jobs and other Darwin jobs. --- .github/workflows/darwin.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/darwin.yaml b/.github/workflows/darwin.yaml index 38de448ba5146f..9635deb5a1a8ff 100644 --- a/.github/workflows/darwin.yaml +++ b/.github/workflows/darwin.yaml @@ -113,7 +113,7 @@ jobs: timeout-minutes: 15 run: | mkdir -p /tmp/darwin/framework-tests - ../../../out/debug/chip-all-clusters-app > >(tee /tmp/darwin/framework-tests/all-cluster-app.log) 2> >(tee /tmp/darwin/framework-tests/all-cluster-app-err.log >&2) & + ../../../out/debug/chip-all-clusters-app --interface-id -1 > >(tee /tmp/darwin/framework-tests/all-cluster-app.log) 2> >(tee /tmp/darwin/framework-tests/all-cluster-app-err.log >&2) & xcodebuild test -target "CHIP" -scheme "CHIP Framework Tests" -sdk macosx OTHER_CFLAGS='${inherited} -Werror -Wno-incomplete-umbrella' > >(tee /tmp/darwin/framework-tests/darwin-tests.log) 2> >(tee /tmp/darwin/framework-tests/darwin-tests-err.log >&2) working-directory: src/darwin/Framework - name: Uploading log files