mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-12 09:54:00 +00:00
kill -0
This commit is contained in:
6
.github/workflows/acceptance-tests.yml
vendored
6
.github/workflows/acceptance-tests.yml
vendored
@@ -34,8 +34,10 @@ jobs:
|
|||||||
echo "A background process failed with exit code $EXIT_STATUS."
|
echo "A background process failed with exit code $EXIT_STATUS."
|
||||||
exit $EXIT_STATUS
|
exit $EXIT_STATUS
|
||||||
fi
|
fi
|
||||||
# Exit the loop if all processes have finished
|
# Check if all processes have finished
|
||||||
if ! kill -0 $DOCKER_COMPOSE_PID $GENERATE_BUILD_PID $PLAYWRIGHT_INSTALL_PID 2>/dev/null; then
|
if ! kill -0 $DOCKER_COMPOSE_PID 2>/dev/null && \
|
||||||
|
! kill -0 $GENERATE_BUILD_PID 2>/dev/null && \
|
||||||
|
! kill -0 $PLAYWRIGHT_INSTALL_PID 2>/dev/null; then
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|||||||
Reference in New Issue
Block a user