Skip to content

Commit 18bcbf7

Browse files
authored
Merge pull request #1664 from firebase/mc/catalyst
add explicit code sign identity for catalyst
2 parents 77afdfa + 70ecc4f commit 18bcbf7

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

.github/workflows/abtesting.yml

+1-1
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

+5-1
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.

scripts/test.sh

+1
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@ fi
112112
flags+=(
113113
CODE_SIGNING_REQUIRED=NO
114114
CODE_SIGNING_ALLOWED=NO
115+
CODE_SIGN_IDENTITY=-
115116
build
116117
)
117118

0 commit comments

Comments
 (0)