-
Notifications
You must be signed in to change notification settings - Fork 16
140 lines (116 loc) · 4.01 KB
/
build.yml
File metadata and controls
140 lines (116 loc) · 4.01 KB
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
name: Build XcodeAnyTroll
on:
push:
branches: [ release ]
workflow_dispatch:
env:
FINALPACKAGE: 1
HOMEBREW_NO_AUTO_UPDATE: 1
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK: 1
jobs:
build:
runs-on: macos-14
strategy:
matrix:
scheme: ['', 'rootless', 'roothide']
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install dependencies
run: |
# Install xcbeautify for build output formatting
# Install ldid for iOS code signing
# Install 7zip for compression
brew install xcbeautify ldid-procursus p7zip make
- name: Checkout roothide/theos
uses: actions/checkout@v4
with:
repository: roothide/theos
path: theos-roothide
submodules: recursive
- name: Checkout SandyXpc
uses: actions/checkout@v4
with:
repository: Lessica/SandyXpc
path: SandyXpc
- name: Install iOS SDKs
run: |
export THEOS=$GITHUB_WORKSPACE/theos-roothide
cd theos-roothide
./bin/install-sdk iPhoneOS16.5
./bin/install-sdk iPhoneOS14.5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Setup Xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '16.2'
- name: Build SandyXpc (${{ matrix.scheme || 'default' }})
run: |
cd SandyXpc
export THEOS=$GITHUB_WORKSPACE/theos-roothide
THEOS_PACKAGE_SCHEME=${{ matrix.scheme }} FINALPACKAGE=1 gmake clean stage
- name: Build package (${{ matrix.scheme || 'default' }})
run: |
export THEOS=$GITHUB_WORKSPACE/theos-roothide
THEOS_PACKAGE_SCHEME=${{ matrix.scheme }} FINALPACKAGE=1 gmake clean package
- name: Prepare artifacts
run: |
# Create directories for artifacts
mkdir -p artifacts/dsym-${{ matrix.scheme || 'default' }}
mkdir -p artifacts/packages-${{ matrix.scheme || 'default' }}
# Copy dSYM files
if [ -d ".theos/obj" ]; then
find .theos/obj -name "*.dSYM" -exec cp -r {} artifacts/dsym-${{ matrix.scheme || 'default' }}/ \;
fi
# Copy packages
if [ -d "packages" ]; then
cp -r packages/* artifacts/packages-${{ matrix.scheme || 'default' }}/
fi
- name: Upload dSYM artifacts
uses: actions/upload-artifact@v4
with:
name: dsym-${{ matrix.scheme || 'default' }}
path: artifacts/dsym-${{ matrix.scheme || 'default' }}
if-no-files-found: warn
- name: Upload package artifacts
uses: actions/upload-artifact@v4
with:
name: packages-${{ matrix.scheme || 'default' }}
path: artifacts/packages-${{ matrix.scheme || 'default' }}
if-no-files-found: warn
release:
if: github.event_name == 'push' && github.ref == 'refs/heads/release'
needs: build
runs-on: macos-14
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Download all package artifacts
uses: actions/download-artifact@v4
with:
pattern: packages-*
path: release-packages
merge-multiple: true
- name: Create release tag
id: tag
run: |
# Read PACKAGE_VERSION from Makefile
PACKAGE_VERSION=$(grep 'PACKAGE_VERSION' Makefile | cut -d' ' -f4)
TAG_NAME="v$PACKAGE_VERSION"
echo "tag_name=$TAG_NAME" >> $GITHUB_OUTPUT
- name: Create GitHub Release
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ steps.tag.outputs.tag_name }}
name: Release ${{ steps.tag.outputs.tag_name }}
body: |
Automated build from release branch
This release contains packages built with:
- Default scheme
- Rootless scheme
- Roothide scheme
Built on: ${{ github.sha }}
files: release-packages/**/*
draft: false
prerelease: false