ci(package-pr): dont endlessly hang

This commit is contained in:
Thomas Hobson 2021-02-28 22:25:23 +13:00
parent d86dc4bbb3
commit f85c430869
No known key found for this signature in database
GPG Key ID: 9F1FD9D87950DB6F
1 changed files with 2 additions and 2 deletions

View File

@ -49,9 +49,9 @@ jobs:
- name: Run tests
run: |
docker run -dp 6969:6969 -v $(pwd)'/repo:/repo' --privileged --name api piston_api
docker run -p 6969:6969 -v $(pwd)'/repo:/repo' --privileged --name api piston_api &
echo Waiting for API to start..
bash -c 'while [[ "$(curl -s -o /dev/null -w ''%{http_code}'' localhost:6969/runtimes)" != "200" ]]; do sleep 5; done'
while [[ "$(curl -s -w '%{http_code}' http://127.0.0.1:6969/runtimes)" != "200" ]]; do sleep 5; done
echo Adding local repo
curl -s http://127.0.0.1:6969/repos -XPOST -d "slug=local&url=file:///repo/index.yaml"
echo Testing packages