Skip to content

Commit

Permalink
Update GH action to print output while trying to start the server
Browse files Browse the repository at this point in the history
  • Loading branch information
jayasanka-sack committed Jan 21, 2025
1 parent e1d02dc commit 8e4132a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/run-tests-on-gh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
run: ./mvnw install -DskipTests

- name: Wait for the OpenMRS instance to start
run: while [[ "$(curl -s -o /dev/null -w ''%{http_code}'' http://localhost/openmrs/login.htm)" != "200" ]]; do sleep 10; done
run: while [[ "$(echo $(curl -s -o /dev/null -w '%{http_code}' http://localhost/openmrs/login.htm))" != "200" ]]; do echo "$(curl -i http://localhost/openmrs/login.htm)"; sleep 10; done

- name: Get System Information
run: |
Expand Down

0 comments on commit 8e4132a

Please sign in to comment.