Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
AntoLC committed Apr 9, 2024
1 parent 4ed3fca commit c02e63c
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/impress-frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,22 @@ jobs:
run: |
docker-compose build --pull --build-arg BUILDKIT_INLINE_CACHE=1
make run
- name: Wait for the Webrtc server to be ready
run: |
echo "Waiting for the Webrtc server to be ready..."
until $(curl --output /dev/null --silent --head --fail http://localhost:4444); do
printf '.'
sleep 1
done
response=$(curl --silent http://localhost:4444)
if [[ "$response" == *"okey"* ]]; then
echo "Webrtc server is ready."
else
echo "Webrtc server has a problem: $response"
exit 1
fi
- name: Apply DRF migrations
run: |
Expand Down

0 comments on commit c02e63c

Please sign in to comment.