diff --git a/.github/workflows/reusable-build-workflow.yml b/.github/workflows/reusable-build-workflow.yml index 6fa12690..93dc8ae8 100644 --- a/.github/workflows/reusable-build-workflow.yml +++ b/.github/workflows/reusable-build-workflow.yml @@ -71,6 +71,7 @@ jobs: run: | mkdir -p build/logs make -B boot-sim-async | tee -a build/logs/test.log + exit ${PIPESTATUS[0]} - name: Install dependencies - ldid & xcbeautify & xcpretty run: | @@ -258,6 +259,7 @@ jobs: run: | mkdir -p build/logs 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) if: ${{ vars.DEBUG_RECORD_TESTS == '1' }} diff --git a/Makefile b/Makefile index 5a523e76..bf3beafb 100755 --- a/Makefile +++ b/Makefile @@ -213,7 +213,6 @@ boot-sim-async: echo "Simulator 'iPhone 16 Pro' is already booted."; \ else \ echo "Booting simulator 'iPhone 16 Pro' asynchronously..."; \ - # Dispatch boot in the background xcrun simctl boot "iPhone 16 Pro" & \ echo "Simulator boot command dispatched."; \ fi