From 22fe96f9230459f5953b2ef17122f07bd2c1d06b Mon Sep 17 00:00:00 2001 From: = <47920326+mahee96@users.noreply.github.com> Date: Wed, 26 Feb 2025 18:16:34 +0530 Subject: [PATCH] - CI: Boot simulator in async instead of doing in a blocking step --- .github/workflows/reusable-build-workflow.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/reusable-build-workflow.yml b/.github/workflows/reusable-build-workflow.yml index 5f9a4d51..54d4ca60 100644 --- a/.github/workflows/reusable-build-workflow.yml +++ b/.github/workflows/reusable-build-workflow.yml @@ -538,11 +538,10 @@ jobs: with: submodules: recursive - - name: Boot Simulator for testing + - name: Boot Simulator async(nohup) for testing run: | mkdir -p build/logs - make -B boot-sim-async | tee -a build/logs/tests-run.log - exit ${PIPESTATUS[0]} + nohup make -B boot-sim-async > build/logs/tests-run.log 2>&1 & - name: Setup Xcode uses: maxim-lobanov/setup-xcode@v1.6.0