This repository has been archived by the owner on Oct 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 43
84 lines (71 loc) · 2.18 KB
/
analyse-commands.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
name: Analyse Commands
on:
push:
branches:
- main
env:
THEOS: ''
GIT_TAG: ''
GIT_COMMIT: ''
XCODE_VERSION: '15.2'
jobs:
build:
name: Build and generate compilation database
runs-on: macos-13
steps:
- name: Setup Xcode version
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: ${{ env.XCODE_VERSION }}
- name: Install Homebrew dependencies
run: |
HOMEBREW_NO_AUTO_UPDATE=1 HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1 brew install dpkg make libplist openssl@3
echo "/usr/local/opt/make/libexec/gnubin" >> $GITHUB_PATH
- name: Checkout ldid
uses: actions/checkout@v4
with:
repository: Lessica/ldid
ref: master
path: ldid
- name: Build ldid
run: |
cd $GITHUB_WORKSPACE/ldid
make install
- name: Checkout XXTouchNG/theos
uses: actions/checkout@v4
with:
repository: XXTouchNG/theos
ref: 78ee784d8d3238982c9abdc58cd39919263648b1
path: theos
submodules: recursive
- name: Add THEOS environment variables
run: |
rm -rf $GITHUB_WORKSPACE/theos/sdks
echo "THEOS=$GITHUB_WORKSPACE/theos" >> $GITHUB_ENV
- name: Checkout theos/sdks
uses: actions/checkout@v4
with:
repository: theos/sdks
ref: master
path: ${{ env.THEOS }}/sdks
- name: Checkout
uses: actions/checkout@v4
with:
repository: Lessica/TrollSpeed
ref: main
path: TrollSpeed
submodules: recursive
- name: Setup build environment
run: |
echo "Available SDKs: $(find $THEOS/sdks -name "*.sdk" -maxdepth 1 -print)"
echo "FINALPACKAGE=1" >> $GITHUB_ENV
cd $GITHUB_WORKSPACE/TrollSpeed
git fetch --tags
echo "GIT_TAG=$(git describe --tags --always --abbrev=0)" >> $GITHUB_ENV
- name: Build compilation database
run: |
cd $GITHUB_WORKSPACE/TrollSpeed
./gen-control.sh ${{ env.GIT_TAG }}
THEOS_PACKAGE_SCHEME=rootless make commands
make clean
make commands