@@ -40,50 +40,13 @@ jobs:
40
40
rm -rf $GITHUB_WORKSPACE/theos/sdks
41
41
echo "THEOS=$GITHUB_WORKSPACE/theos" >> $GITHUB_ENV
42
42
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
52
44
uses : actions/checkout@v4
53
45
with :
54
46
repository : theos/sdks
55
47
ref : master
56
48
path : ${{ env.THEOS }}/sdks
57
49
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
-
87
50
- name : Checkout
88
51
uses : actions/checkout@v4
89
52
with :
0 commit comments