Skip to content

Commit 5831e27

Browse files
committed
try fixing github workflow
1 parent a3c31b2 commit 5831e27

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/roothide.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ concurrency:
1313

1414
jobs:
1515
build:
16-
runs-on: macos-13
16+
runs-on: macos-14
1717
steps:
1818
- name: Checkout
1919
run: |
@@ -45,6 +45,8 @@ jobs:
4545
set -x
4646
git clone https://github.com/CRKatri/trustcache
4747
cd trustcache
48+
export CFLAGS="$CFLAGS -I$(brew --prefix openssl)/include -arch arm64"
49+
export LDFLAGS="$LDFLAGS -L$(brew --prefix openssl)/lib -arch arm64"
4850
gmake -j$(sysctl -n hw.physicalcpu) OPENSSL=1
4951
sudo cp trustcache /opt/procursus/bin/
5052
@@ -70,6 +72,8 @@ jobs:
7072
typeset itemcount=$(plutil -extract items raw -expect array ./Application/Dopamine/UI/Settings/Credits.plist)
7173
for ((i=0; i<$itemcount; i++)); do if [ "$(plutil -extract items.$i.headerCellClass raw ./Application/Dopamine/UI/Settings/Credits.plist)" = "DOCreditsCell" ]; then DOCreditsCellIndex=$i; break; fi; done;
7274
plutil -insert items.$DOCreditsCellIndex.names -xml "<dict><key>name</key><string>${{ github.actor }}</string><key>link</key><string>https://github.com/${{ github.repository }}</string></dict>" -append ./Application/Dopamine/UI/Settings/Credits.plist
75+
ls -l /Applications | grep Xcode
76+
rm -rf /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/usr/include/xpc
7377
gmake -j$(sysctl -n hw.physicalcpu)
7478
VERSION=$(cat ./BaseBin/_external/basebin/.version)-$(git rev-parse --short HEAD)
7579
mv ./Application/Dopamine.tipa "./Application/roothide-Dopamine-${VERSION}.tipa"

0 commit comments

Comments
 (0)