Skip to content

Commit 31519a3

Browse files
committed
Debug available Xcode SDKs
1 parent 7e189a1 commit 31519a3

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

.github/workflows/build-xcframework-parallel-archives.yml

+4
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,10 @@ jobs:
4242
uses: maxim-lobanov/setup-xcode@v1
4343
with:
4444
xcode-version: latest
45+
- name: Print Xcode SDK availability
46+
shell: bash
47+
run:
48+
xcodebuild -showsdks
4549
- name: Checkout
4650
uses: actions/checkout@v3
4751
- name: Install Dependencies

.github/workflows/build-xcframework-sequential.yml

+8-4
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,14 @@ jobs:
2525
DEVELOPER_DIR: /Applications/Xcode_16.2.0.app/Contents/Developer
2626
LDK_C_BINDINGS_BASE: ${{ github.workspace }}/bindings/artifacts/ldk-c-bindings
2727
steps:
28-
# - name: Configure Xcode
29-
# uses: maxim-lobanov/setup-xcode@v1
30-
# with:
31-
# xcode-version: latest
28+
- name: Configure Xcode
29+
uses: maxim-lobanov/setup-xcode@v1
30+
with:
31+
xcode-version: latest
32+
- name: Print Xcode SDK availability
33+
shell: bash
34+
run:
35+
xcodebuild -showsdks
3236
- name: Checkout
3337
uses: actions/checkout@v3
3438
- name: Install Dependencies

0 commit comments

Comments
 (0)