Skip to content

Commit

Permalink
update script again
Browse files Browse the repository at this point in the history
  • Loading branch information
ArnaudBger committed Oct 18, 2024
1 parent 546ec95 commit 97c195e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ set -euxo pipefail

listen_address=
if [[ ${TEST_LOCAL_CODEGEN:-false} == "true" ]]; then
if [[ ${CI:-""} != "" ]]; then
if [[ -z $CI ]]; then
listen_address="http://host.docker.internal:9000"
else
# Codegen address when running test
listen_address="http://172.17.0.1:9000"
else
listen_address="http://host.docker.internal:9000"
fi
else
listen_address="https://codegen-staging.substreams.dev"
Expand Down

0 comments on commit 97c195e

Please sign in to comment.