Skip to content

Commit 3b20364

Browse files
committed
WIP
1 parent d9d5537 commit 3b20364

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/e2e-tests-hybrid.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,9 @@ jobs:
8080
- name: Keep regtest running
8181
run: |
8282
# Keep the job running so regtest stays up
83-
while true; do
84-
echo "Regtest infrastructure running... $(date)"
85-
sleep 60
86-
done
83+
# This will run in the background while other jobs execute
84+
nohup bash -c 'while true; do echo "Regtest infrastructure running... $(date)"; sleep 60; done' &
85+
echo "Regtest infrastructure is running in background"
8786
8887
# Job 2: Build iOS app and run E2E tests on macOS
8988
e2e-tests:

0 commit comments

Comments
 (0)