Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions .github/workflows/objective-c-xcode.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Xcode - Build and Analyze

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:
name: Build and analyse default scheme using xcodebuild command
runs-on: macos-latest

steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set Default Scheme
run: |
scheme_list=$(xcodebuild -list -json | tr -d "\n")
default=$(echo $scheme_list | ruby -e "require 'json'; puts JSON.parse(STDIN.gets)['project']['targets'][0]")
echo $default | cat >default
echo Using default scheme: $default
- name: Build
env:
scheme: ${{ 'default' }}
run: |
if [ $scheme = default ]; then scheme=$(cat default); fi
if [ "`ls -A | grep -i \\.xcworkspace\$`" ]; then filetype_parameter="workspace" && file_to_build="`ls -A | grep -i \\.xcworkspace\$`"; else filetype_parameter="project" && file_to_build="`ls -A | grep -i \\.xcodeproj\$`"; fi
file_to_build=`echo $file_to_build | awk '{$1=$1;print}'`
xcodebuild clean build analyze -scheme "$scheme" -"$filetype_parameter" "$file_to_build" | xcpretty && exit ${PIPESTATUS[0]}
9 changes: 9 additions & 0 deletions Bootstrap/ViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -437,6 +437,15 @@ void rebootUserspaceAction()
@"/System/Library/CoreServices/SpringBoard.app/SpringBoard",
@"/usr/bin/powerlogHelperd",
@"/usr/sbin/spindump",
@"/usr/libexec/replayd",
@"/usr/libexec/sharingd",
@"/usr/libexec/locationd",
@"/usr/libexec/runningboardd",
@"/usr/libexec/backboardd",
@"/usr/libexec/thermalmoniord",
@"/usr/sbin/installd",
@"/usr/sbin/cfprefsd",
@"/usr/libexec/nfcd",
];

#define RESIGNED_SYSROOT_PATH jbroot(@"/.sysroot")
Expand Down