Skip to content

Commit

Permalink
fix: return empty services (#688)
Browse files Browse the repository at this point in the history
  • Loading branch information
barnabasbusa authored Jun 20, 2024
1 parent 9952361 commit 6571a70
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/tests/mix-public.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ participants:
cl_type: grandine
additional_services: []
port_publisher:
public_port_start: 50000
public_port_start: 40000
2 changes: 1 addition & 1 deletion .github/workflows/conventional-pr-title-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ concurrency:

jobs:
title_check:
runs-on: ubuntu-latest
runs-on: self-hosted-ghr-size-s-x64
steps:
- uses: amannn/action-semantic-pull-request@v5
env:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/per-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ concurrency:

jobs:
run_starlark:
runs-on: ubuntu-latest
runs-on: self-hosted-ghr-size-l-x64
steps:
- name: Checkout Repository
uses: actions/checkout@v4
Expand Down Expand Up @@ -37,7 +37,7 @@ jobs:
"./.github/tests/minimal.yaml",
"./network_params.yaml"
]
runs-on: ubuntu-latest
runs-on: self-hosted-ghr-size-l-x64
steps:
- name: Checkout Repository
uses: actions/checkout@v4
Expand All @@ -53,7 +53,7 @@ jobs:
run: kurtosis run ${{ github.workspace }} --args-file ${{ matrix.file_name }}

lint:
runs-on: ubuntu-latest
runs-on: self-hosted-ghr-size-s-x64
steps:
- name: Checkout Repository
uses: actions/checkout@v4
Expand All @@ -69,7 +69,7 @@ jobs:
run: kurtosis lint ${{ github.workspace }}

assertoor:
runs-on: ubuntu-latest
runs-on: self-hosted-ghr-size-l-x64
steps:
- name: Checkout Repository
uses: actions/checkout@v4
Expand Down
5 changes: 5 additions & 0 deletions main.star
Original file line number Diff line number Diff line change
Expand Up @@ -359,6 +359,8 @@ def run(plan, args={}):
if len(args_with_right_defaults.additional_services) == 0:
output = struct(
all_participants=all_participants,
pre_funded_accounts=genesis_constants.PRE_FUNDED_ACCOUNTS,
network_params=network_params,
final_genesis_timestamp=final_genesis_timestamp,
genesis_validators_root=genesis_validators_root,
)
Expand Down Expand Up @@ -638,6 +640,9 @@ def run(plan, args={}):

output = struct(
grafana_info=grafana_info,
blockscout_sc_verif_url=None
if ("blockscout" in args_with_right_defaults.additional_services) == False
else blockscout_sc_verif_url,
all_participants=all_participants,
pre_funded_accounts=genesis_constants.PRE_FUNDED_ACCOUNTS,
network_params=network_params,
Expand Down

0 comments on commit 6571a70

Please sign in to comment.