- CI: Makefile and CI bug-fixes

This commit is contained in:
Magesh K
2025-02-22 20:30:56 +05:30
parent 348a24d885
commit 359b38609b
2 changed files with 2 additions and 1 deletions

View File

@@ -71,6 +71,7 @@ jobs:
run: | run: |
mkdir -p build/logs mkdir -p build/logs
make -B boot-sim-async | tee -a build/logs/test.log make -B boot-sim-async | tee -a build/logs/test.log
exit ${PIPESTATUS[0]}
- name: Install dependencies - ldid & xcbeautify & xcpretty - name: Install dependencies - ldid & xcbeautify & xcpretty
run: | run: |
@@ -258,6 +259,7 @@ jobs:
run: | run: |
mkdir -p build/logs mkdir -p build/logs
make -B sim-boot-check | tee -a build/logs/test.log make -B sim-boot-check | tee -a build/logs/test.log
exit ${PIPESTATUS[0]}
- name: Start Recording UI tests (if DEBUG_RECORD_TESTS is set to 1) - name: Start Recording UI tests (if DEBUG_RECORD_TESTS is set to 1)
if: ${{ vars.DEBUG_RECORD_TESTS == '1' }} if: ${{ vars.DEBUG_RECORD_TESTS == '1' }}

View File

@@ -213,7 +213,6 @@ boot-sim-async:
echo "Simulator 'iPhone 16 Pro' is already booted."; \ echo "Simulator 'iPhone 16 Pro' is already booted."; \
else \ else \
echo "Booting simulator 'iPhone 16 Pro' asynchronously..."; \ echo "Booting simulator 'iPhone 16 Pro' asynchronously..."; \
# Dispatch boot in the background
xcrun simctl boot "iPhone 16 Pro" & \ xcrun simctl boot "iPhone 16 Pro" & \
echo "Simulator boot command dispatched."; \ echo "Simulator boot command dispatched."; \
fi fi