File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 19
19
runs-on : macos-latest
20
20
strategy :
21
21
matrix :
22
- macos-version : [ '15.3 ' ]
22
+ macos-version : [ '15.4 ' ]
23
23
steps :
24
24
- name : Checkout
25
25
uses : actions/checkout@v4
Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ install_ipsw() {
132
132
choose_xnu () {
133
133
if [ -z " $MACOS_VERSION " ]; then
134
134
gum style --border normal --margin " 1" --padding " 1 2" --border-foreground 212 " Choose $( gum style --foreground 212 ' macOS' ) version to build:"
135
- MACOS_VERSION=$( gum choose " 12.5" " 13.0" " 13.1" " 13.2" " 13.3" " 13.4" " 13.5" " 14.0" " 14.1" " 14.2" " 14.3" " 14.4" " 14.5" " 14.6" " 15.0" " 15.1" " 15.2" " 15.3" )
135
+ MACOS_VERSION=$( gum choose " 12.5" " 13.0" " 13.1" " 13.2" " 13.3" " 13.4" " 13.5" " 14.0" " 14.1" " 14.2" " 14.3" " 14.4" " 14.5" " 14.6" " 15.0" " 15.1" " 15.2" " 15.3" " 15.4 " )
136
136
fi
137
137
TIGHTBEAMC=" tightbeamc-not-supported"
138
138
case ${MACOS_VERSION} in
@@ -244,6 +244,12 @@ choose_xnu() {
244
244
KDKROOT=' /Library/Developer/KDKs/KDK_15.3_24D60.kdk'
245
245
RC_DARWIN_KERNEL_VERSION=' 24.3.0'
246
246
;;
247
+ ' 15.4' )
248
+ RELEASE_URL=' https://raw.githubusercontent.com/apple-oss-distributions/distribution-macOS/macos-154/release.json'
249
+ KDK_NAME=' Kernel Debug Kit 15.4 build 24E248'
250
+ KDKROOT=' /Library/Developer/KDKs/KDK_15.4_24E248.kdk'
251
+ RC_DARWIN_KERNEL_VERSION=' 24.4.0'
252
+ ;;
247
253
* )
248
254
error " Invalid xnu version"
249
255
exit 1
@@ -309,7 +315,7 @@ patches() {
309
315
' 14.4' | ' 14.5' )
310
316
PATCH_DIR=" ${WORK_DIR} /patches/14.4"
311
317
;;
312
- ' 14.6' | ' 15.0' | ' 15.1' | ' 15.2' | ' 15.3' )
318
+ ' 14.6' | ' 15.0' | ' 15.1' | ' 15.2' | ' 15.3' | ' 15.4 ' )
313
319
PATCH_DIR=" ${WORK_DIR} /patches/15.0"
314
320
;;
315
321
* )
You can’t perform that action at this time.
0 commit comments