We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9d5537 commit 3b20364Copy full SHA for 3b20364
.github/workflows/e2e-tests-hybrid.yml
@@ -80,10 +80,9 @@ jobs:
80
- name: Keep regtest running
81
run: |
82
# Keep the job running so regtest stays up
83
- while true; do
84
- echo "Regtest infrastructure running... $(date)"
85
- sleep 60
86
- done
+ # This will run in the background while other jobs execute
+ nohup bash -c 'while true; do echo "Regtest infrastructure running... $(date)"; sleep 60; done' &
+ echo "Regtest infrastructure is running in background"
87
88
# Job 2: Build iOS app and run E2E tests on macOS
89
e2e-tests:
0 commit comments