Skip to content
Merged
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
19 changes: 13 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ concurrency:

jobs:
build:
runs-on: macos-13
runs-on: macos-15
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@main
with:
submodules: recursive

Expand All @@ -37,6 +37,11 @@ jobs:
with:
packages: ldid findutils sed coreutils make

- name: Install better GNU Make
run: |
brew install make
echo "PATH=$(brew --prefix make)/libexec/gnubin:$PATH" >> $GITHUB_ENV

- name: Install THEOS
run: |
set -x
Expand All @@ -57,7 +62,9 @@ jobs:
set -x
git clone https://github.com/CRKatri/trustcache
cd trustcache
gmake -j$(sysctl -n hw.physicalcpu) OPENSSL=1
export CFLAGS="$CFLAGS -I$(brew --prefix openssl)/include -arch arm64"
export LDFLAGS="$LDFLAGS -L$(brew --prefix openssl)/lib -arch arm64"
gmake -j$(sysctl -n hw.logicalcpu) OPENSSL=1
sudo cp trustcache /opt/procursus/bin/

- name: Set Environment Variables
Expand Down Expand Up @@ -85,12 +92,12 @@ jobs:
set -x
export BASEDIR="$(pwd)"
export THEOS="${BASEDIR}/theos"
gmake -j$(sysctl -n hw.physicalcpu) NIGHTLY=1
gmake -j$(sysctl -n hw.logicalcpu) NIGHTLY=1

- name: Upload Artifact
id: dopamine-latest-upload
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@main
with:
name: Dopamine
path: |
${{ github.workspace }}/Application/Dopamine.ipa
${{ github.workspace }}/Application/Dopamine.ipa
2 changes: 1 addition & 1 deletion BaseBin/rootlesshooks/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
TARGET := iphone:clang:16.5:15.0
TARGET := iphone:clang:latest:15.0
INSTALL_TARGET_PROCESSES = lsd cfprefsd
FINALPACKAGE = 1
THEOS_PACKAGE_SCHEME = rootless
Expand Down