Skip to content

Commit f3fbd39

Browse files
committed
comment out xcode select
1 parent 259c88e commit f3fbd39

File tree

1 file changed

+15
-17
lines changed

1 file changed

+15
-17
lines changed

.github/workflows/test.yml

Lines changed: 15 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -6,30 +6,30 @@ on:
66
workflow_call:
77
inputs:
88
bun-version:
9-
description: 'Bun Version'
9+
description: "Bun Version"
1010
required: false
1111
type: string
1212
os:
13-
description: 'Operating System'
13+
description: "Operating System"
1414
required: false
1515
type: string
1616
workflow_dispatch:
1717
inputs:
1818
bun-version:
19-
description: 'Bun Version'
19+
description: "Bun Version"
2020
required: false
21-
default: 'latest'
21+
default: "latest"
2222
type: string
2323
os:
24-
description: 'Operating System'
24+
description: "Operating System"
2525
required: false
2626
options:
27-
- 'ubuntu-latest'
28-
- 'macos-latest'
29-
- 'windows-latest'
30-
default: 'ubuntu-latest'
27+
- "ubuntu-latest"
28+
- "macos-latest"
29+
- "windows-latest"
30+
default: "ubuntu-latest"
3131
type: choice
32-
32+
3333
push:
3434
branches:
3535
- "*" # matches every branch that doesn't contain a '/'
@@ -43,7 +43,7 @@ jobs:
4343
# # The type of runner that the job will run on
4444
# runs-on: ${{ inputs.os || 'ubuntu-latest' }}
4545
# timeout-minutes: 10
46-
46+
4747
# # Steps represent a sequence of tasks that will be executed as part of the job
4848
# steps:
4949
# # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
@@ -88,7 +88,7 @@ jobs:
8888

8989
- name: Lint
9090
run: bun run lint
91-
91+
9292
swiftlint:
9393
# The type of runner that the job will run on
9494
runs-on: ${{ inputs.os || 'macos-latest' }}
@@ -107,7 +107,7 @@ jobs:
107107

108108
- name: Lint
109109
run: bun run swiftlint
110-
110+
111111
# build-ios-beta:
112112
# # Only run on macOS since we need Xcode
113113
# runs-on: macos-15
@@ -142,7 +142,6 @@ jobs:
142142
# working-directory: apps/activity-kit-example
143143
# run: bun run build-sim
144144

145-
146145
build-ios:
147146
# Only run on macOS since we need Xcode
148147
runs-on: macos-26
@@ -158,7 +157,7 @@ jobs:
158157
run: bun install
159158

160159
## latest stable
161-
- run: sudo xcode-select -s /Applications/Xcode_16.4.app
160+
## - run: sudo xcode-select -s /Applications/Xcode_16.4.app
162161

163162
- run: bun run specs
164163
working-directory: packages/react-native-activity-kit
@@ -171,7 +170,6 @@ jobs:
171170
working-directory: apps/activity-kit-example
172171
run: bun run build-sim
173172

174-
175173
# since this is the default for Expo 52
176174
# build-ios-162:
177175
# # Only run on macOS since we need Xcode
@@ -198,4 +196,4 @@ jobs:
198196

199197
# - name: Build iOS project
200198
# working-directory: apps/activity-kit-example
201-
# run: bun run build-sim
199+
# run: bun run build-sim

0 commit comments

Comments
 (0)