Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Addressing CI failures: try to wait directly for the info endpoint #103

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/ci_validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Wait a maximum of 3 min for the preview site to be up
run: .github/workflows/wait_for_it.sh --host="${DEPLOY_PREVIEW}" --port=443 -t 180
- name: Wait a maximum of 3 min for the info endpoint of the preview site to be up
# Note that it seems that netlify comes up without the info endpoint being ready, so we need to test explicitly for it
run: curl --head -X GET --retry 10 --retry-connrefused --retry-delay 18 https://${DEPLOY_PREVIEW}/v1/info/ || exit 1

validate_provider_list:
name: Provider index meta-db
Expand Down
161 changes: 0 additions & 161 deletions .github/workflows/wait_for_it.sh

This file was deleted.

Loading