From 70ecc4f3468fed0916da57fb3bdba99d39b2a847 Mon Sep 17 00:00:00 2001 From: Morgan Chen Date: Wed, 15 Jan 2025 14:55:31 -0800 Subject: [PATCH] disable test execution for catalyst --- .github/workflows/abtesting.yml | 2 +- .github/workflows/analytics.yml | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/abtesting.yml b/.github/workflows/abtesting.yml index a943401c2..9099026a0 100644 --- a/.github/workflows/abtesting.yml +++ b/.github/workflows/abtesting.yml @@ -84,7 +84,7 @@ jobs: test: false - os: catalyst device: localhost - test: true + test: false # disabled due to a permissions error on launch (OSStatus -54). env: SETUP: abtesting SPM: true diff --git a/.github/workflows/analytics.yml b/.github/workflows/analytics.yml index d3178eb8c..e4593acc3 100644 --- a/.github/workflows/analytics.yml +++ b/.github/workflows/analytics.yml @@ -37,20 +37,23 @@ jobs: include: - os: iOS device: iPhone 16 + test: true - os: catalyst device: localhost + test: false # disabled due to a permissions error on launch (OSStatus -54). - os: tvOS device: Apple TV 4K (3rd generation) (at 1080p) scheme: AnalyticsExampleTV + test: true - os: macOS device: localhost scheme: AnalyticsExampleMac + test: true env: SPM: false LEGACY: false OS: ${{ matrix.os }} DEVICE: ${{ matrix.device }} - TEST: true SCHEME: ${{ matrix.scheme }} DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer steps: @@ -67,6 +70,7 @@ jobs: - name: Build Swift run: ./scripts/test.sh env: + TEST: ${{ matrix.test }} SWIFT_SUFFIX: "" #TODO: Add `spm` job.