Skip to content
This repository was archived by the owner on Apr 13, 2025. It is now read-only.

Commit 23a630e

Browse files
committed
ci: no additional sdks
1 parent 000d76f commit 23a630e

File tree

2 files changed

+8
-38
lines changed

2 files changed

+8
-38
lines changed

.github/workflows/analyse-commands.yml

Lines changed: 1 addition & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -40,50 +40,13 @@ jobs:
4040
rm -rf $GITHUB_WORKSPACE/theos/sdks
4141
echo "THEOS=$GITHUB_WORKSPACE/theos" >> $GITHUB_ENV
4242
43-
- name: Restore additional SDKs
44-
id: cached-sdks-restore
45-
uses: actions/cache/restore@v4
46-
with:
47-
path: ${{ env.THEOS }}/sdks
48-
key: ${{ runner.os }}-sdks-${{ env.XCODE_VERSION }}
49-
50-
- if: ${{ steps.cached-sdks-restore.outputs.cache-hit != 'true' }}
51-
name: Checkout theos/sdks
43+
- name: Checkout theos/sdks
5244
uses: actions/checkout@v4
5345
with:
5446
repository: theos/sdks
5547
ref: master
5648
path: ${{ env.THEOS }}/sdks
5749

58-
- if: ${{ steps.cached-sdks-restore.outputs.cache-hit != 'true' }}
59-
name: Checkout XXTouchNG/tbd
60-
uses: actions/checkout@v4
61-
with:
62-
repository: XXTouchNG/tbd
63-
ref: 30a6883092221e13d814c02ac41af1e565a40617
64-
path: tbd
65-
66-
- if: ${{ steps.cached-sdks-restore.outputs.cache-hit != 'true' }}
67-
name: Build tbd
68-
run: |
69-
cd $GITHUB_WORKSPACE/tbd
70-
make
71-
cp bin/tbd /usr/local/bin/tbd
72-
73-
- if: ${{ steps.cached-sdks-restore.outputs.cache-hit != 'true' }}
74-
name: Generate additional SDKs
75-
run: |
76-
cd $THEOS/sdks
77-
python3 create_patched_sdk.py --no-overwrite -x $(dirname $(dirname $(xcode-select -p)))
78-
79-
- if: ${{ steps.cached-sdks-restore.outputs.cache-hit != 'true' }}
80-
name: Save additional SDKs
81-
id: cached-sdks-save
82-
uses: actions/cache/save@v4
83-
with:
84-
path: ${{ env.THEOS }}/sdks
85-
key: ${{ steps.cached-sdks-restore.outputs.cache-primary-key }}
86-
8750
- name: Checkout
8851
uses: actions/checkout@v4
8952
with:

.github/workflows/build-release.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,13 @@ jobs:
3939
rm -rf $GITHUB_WORKSPACE/theos/sdks
4040
echo "THEOS=$GITHUB_WORKSPACE/theos" >> $GITHUB_ENV
4141
42+
- name: Checkout theos/sdks
43+
uses: actions/checkout@v4
44+
with:
45+
repository: theos/sdks
46+
ref: master
47+
path: ${{ env.THEOS }}/sdks
48+
4249
- name: Checkout
4350
uses: actions/checkout@v4
4451
with:

0 commit comments

Comments
 (0)