Skip to content

Commit 70ecc4f

Browse files
committed
disable test execution for catalyst
1 parent 40d1bc1 commit 70ecc4f

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/abtesting.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
test: false
8585
- os: catalyst
8686
device: localhost
87-
test: true
87+
test: false # disabled due to a permissions error on launch (OSStatus -54).
8888
env:
8989
SETUP: abtesting
9090
SPM: true

.github/workflows/analytics.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,20 +37,23 @@ jobs:
3737
include:
3838
- os: iOS
3939
device: iPhone 16
40+
test: true
4041
- os: catalyst
4142
device: localhost
43+
test: false # disabled due to a permissions error on launch (OSStatus -54).
4244
- os: tvOS
4345
device: Apple TV 4K (3rd generation) (at 1080p)
4446
scheme: AnalyticsExampleTV
47+
test: true
4548
- os: macOS
4649
device: localhost
4750
scheme: AnalyticsExampleMac
51+
test: true
4852
env:
4953
SPM: false
5054
LEGACY: false
5155
OS: ${{ matrix.os }}
5256
DEVICE: ${{ matrix.device }}
53-
TEST: true
5457
SCHEME: ${{ matrix.scheme }}
5558
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer
5659
steps:
@@ -67,6 +70,7 @@ jobs:
6770
- name: Build Swift
6871
run: ./scripts/test.sh
6972
env:
73+
TEST: ${{ matrix.test }}
7074
SWIFT_SUFFIX: ""
7175

7276
#TODO: Add `spm` job.

0 commit comments

Comments
 (0)