-
Notifications
You must be signed in to change notification settings - Fork 8
48 lines (38 loc) · 1.01 KB
/
build.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
name: Theos CI
on:
push:
pull_request:
jobs:
build:
runs-on: macos-14
steps:
- uses: actions/checkout@main
- name: Checkout theos/theos
uses: actions/checkout@main
with:
repository: roothide/theos
ref: master
submodules: recursive
path: theos
- name: Checkout theos/sdks
uses: actions/checkout@main
with:
repository: theos/sdks
ref: master
sparse-checkout: iPhoneOS16.5.sdk
path: theos/sdks
- name: Ensure main utils are installed
uses: dhinakg/procursus-action@main
with:
packages: coreutils make xz ldid
- name: Build
run: |
export THEOS=theos
gmake package FINALPACKAGE=1
gmake package FINALPACKAGE=1 THEOS_PACKAGE_SCHEME=rootless
gmake package FINALPACKAGE=1 THEOS_PACKAGE_SCHEME=roothide
- name: Upload packages
uses: actions/upload-artifact@main
with:
name: packages
path: packages/*.deb