Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
andrei-neon committed May 21, 2024
1 parent 1f4c3e0 commit f988d13
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ def wait_for_run_completion(session: requests.Session, run_id: int, timeout: int
run_url = f"https://api.github.com/repos/neonlabsorg/tracer-api/actions/runs/{run_id}"

r = session.get(run_url)
assert r.status_code == 200
assert r.status_code == 200, f"Failed to get run {r.json()['html_url']}. Status code: {r.status_code} with message: {r.text}"
click.echo(f"Waiting for a run {r.json()['html_url']} for {timeout} sec.")

status = r.json()["status"]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ jobs:
--run_number=${{env.GITHUB_RUN_NUMBER}} \
--proxy_tag=${{ needs.build-image.outputs.proxy_tag }}
trigger-tracer-tests:
if: contains(github.event.pull_request.labels.*.name, 'runTracerTests') || github.event.inputs.trigger_tracer_tests
if: contains(github.event.pull_request.labels.*.name, 'runTracerTests') || ${{ github.event.inputs.trigger_tracer_tests }}
needs: build-image
runs-on: test-runner
steps:
Expand Down

0 comments on commit f988d13

Please sign in to comment.