Skip to content

Commit 0e085bc

Browse files
committed
Revert "[GitHub] Fix iOS builds"
This reverts commit 70d15dc.
1 parent 6803ac6 commit 0e085bc

3 files changed

Lines changed: 2 additions & 19 deletions

File tree

.github/workflows/ios-metal.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@ jobs:
1616
steps:
1717
- uses: actions/checkout@v3
1818

19-
- uses: maxim-lobanov/setup-xcode@v1
20-
with:
21-
xcode-version: '16.3'
2219

2320
- name: Get Submodules
2421
run: ./get_dlc

.github/workflows/ios-opengl.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@ jobs:
1616
steps:
1717
- uses: actions/checkout@v3
1818

19-
- uses: maxim-lobanov/setup-xcode@v1
20-
with:
21-
xcode-version: '16.3'
2219

2320
- name: Get Submodules
2421
run: ./get_dlc

.github/write_workflows.js

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -44,15 +44,6 @@ function writeWorkflow(workflow) {
4444
java-version: '17'
4545
`
4646
:
47-
'';
48-
49-
const xcodeVersion = workflow.xcodeVersion
50-
?
51-
`
52-
- uses: maxim-lobanov/setup-xcode@v1
53-
with:
54-
xcode-version: '16.3'`
55-
:
5647
'';
5748

5849
const steps = workflow.steps ?? '';
@@ -78,7 +69,7 @@ jobs:
7869
7970
steps:
8071
- uses: actions/checkout@v3
81-
${xcodeVersion}${java}
72+
${java}
8273
${steps}
8374
- name: Get Submodules
8475
run: ./get_dlc
@@ -166,15 +157,13 @@ const workflows = [
166157
sys: 'iOS',
167158
gfx: 'Metal',
168159
runsOn: 'macOS-latest',
169-
options: '--nosigning',
170-
xcodeVersion: true
160+
options: '--nosigning'
171161
},
172162
{
173163
sys: 'iOS',
174164
gfx: 'OpenGL',
175165
runsOn: 'macOS-latest',
176166
options: '--nosigning',
177-
xcodeVersion: true,
178167
noCompute: true
179168
},
180169
{

0 commit comments

Comments
 (0)