From 4984e5119f9540591c763190e7e0c6e9bb9b6bbc Mon Sep 17 00:00:00 2001 From: mahee96 <47920326+mahee96@users.noreply.github.com> Date: Tue, 24 Feb 2026 02:29:13 +0530 Subject: [PATCH] CI: improve more ci worflow --- scripts/ci/workflow.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/scripts/ci/workflow.py b/scripts/ci/workflow.py index 5567e8c4..4855a138 100644 --- a/scripts/ci/workflow.py +++ b/scripts/ci/workflow.py @@ -153,16 +153,12 @@ def clean_spm_cache(): # ---------------------------------------------------------- def build(): - run("make clean") - run("rm -rf ~/Library/Developer/Xcode/DerivedData/*", check=False) run("mkdir -p build/logs") - run( "set -o pipefail && " "NSUnbufferedIO=YES make -B build " "2>&1 | tee -a build/logs/build.log | xcbeautify --renderer github-actions" ) - run("make fakesign | tee -a build/logs/build.log") run("make ipa | tee -a build/logs/build.log") run("zip -r -9 ./SideStore.dSYMs.zip ./SideStore.xcarchive/dSYMs")