Skip to content

Commit

Permalink
ci: another attempt to wait for connection
Browse files Browse the repository at this point in the history
  • Loading branch information
line-o committed Nov 17, 2023
1 parent 36e1d29 commit 231d03d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test-no-rest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ jobs:
# tr '\r' '\n' > modified-web.xml
- name: Copy modified web.xml
run: docker cp ./spec/fixtures/web-no-rest.xml exist:exist/etc/webapp/WEB-INF/web.xml
- name: Restart eXist-db Container
# run: docker stop exist && docker wait; docker start exist
- name: Start eXist-db Container
run: docker start exist
- name: Wait for eXist-db Startup
run: until nc -z localhost 8080; do sleep 3;
run: sh -c 'until nc -z localhost 8080; do sleep 3; done'
shell: bash -e {0}
timeout-minutes: 2
- name: Use Node.js 20
uses: actions/setup-node@v3
Expand Down

0 comments on commit 231d03d

Please sign in to comment.