Commit 6571a70b authored by Barnabas Busa's avatar Barnabas Busa Committed by GitHub

fix: return empty services (#688)

parent 99523611
...@@ -15,4 +15,4 @@ participants: ...@@ -15,4 +15,4 @@ participants:
cl_type: grandine cl_type: grandine
additional_services: [] additional_services: []
port_publisher: port_publisher:
public_port_start: 50000 public_port_start: 40000
...@@ -15,7 +15,7 @@ concurrency: ...@@ -15,7 +15,7 @@ concurrency:
jobs: jobs:
title_check: title_check:
runs-on: ubuntu-latest runs-on: self-hosted-ghr-size-s-x64
steps: steps:
- uses: amannn/action-semantic-pull-request@v5 - uses: amannn/action-semantic-pull-request@v5
env: env:
......
...@@ -9,7 +9,7 @@ concurrency: ...@@ -9,7 +9,7 @@ concurrency:
jobs: jobs:
run_starlark: run_starlark:
runs-on: ubuntu-latest runs-on: self-hosted-ghr-size-l-x64
steps: steps:
- name: Checkout Repository - name: Checkout Repository
uses: actions/checkout@v4 uses: actions/checkout@v4
...@@ -37,7 +37,7 @@ jobs: ...@@ -37,7 +37,7 @@ jobs:
"./.github/tests/minimal.yaml", "./.github/tests/minimal.yaml",
"./network_params.yaml" "./network_params.yaml"
] ]
runs-on: ubuntu-latest runs-on: self-hosted-ghr-size-l-x64
steps: steps:
- name: Checkout Repository - name: Checkout Repository
uses: actions/checkout@v4 uses: actions/checkout@v4
...@@ -53,7 +53,7 @@ jobs: ...@@ -53,7 +53,7 @@ jobs:
run: kurtosis run ${{ github.workspace }} --args-file ${{ matrix.file_name }} run: kurtosis run ${{ github.workspace }} --args-file ${{ matrix.file_name }}
lint: lint:
runs-on: ubuntu-latest runs-on: self-hosted-ghr-size-s-x64
steps: steps:
- name: Checkout Repository - name: Checkout Repository
uses: actions/checkout@v4 uses: actions/checkout@v4
...@@ -69,7 +69,7 @@ jobs: ...@@ -69,7 +69,7 @@ jobs:
run: kurtosis lint ${{ github.workspace }} run: kurtosis lint ${{ github.workspace }}
assertoor: assertoor:
runs-on: ubuntu-latest runs-on: self-hosted-ghr-size-l-x64
steps: steps:
- name: Checkout Repository - name: Checkout Repository
uses: actions/checkout@v4 uses: actions/checkout@v4
......
...@@ -359,6 +359,8 @@ def run(plan, args={}): ...@@ -359,6 +359,8 @@ def run(plan, args={}):
if len(args_with_right_defaults.additional_services) == 0: if len(args_with_right_defaults.additional_services) == 0:
output = struct( output = struct(
all_participants=all_participants, all_participants=all_participants,
pre_funded_accounts=genesis_constants.PRE_FUNDED_ACCOUNTS,
network_params=network_params,
final_genesis_timestamp=final_genesis_timestamp, final_genesis_timestamp=final_genesis_timestamp,
genesis_validators_root=genesis_validators_root, genesis_validators_root=genesis_validators_root,
) )
...@@ -638,6 +640,9 @@ def run(plan, args={}): ...@@ -638,6 +640,9 @@ def run(plan, args={}):
output = struct( output = struct(
grafana_info=grafana_info, 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, all_participants=all_participants,
pre_funded_accounts=genesis_constants.PRE_FUNDED_ACCOUNTS, pre_funded_accounts=genesis_constants.PRE_FUNDED_ACCOUNTS,
network_params=network_params, network_params=network_params,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment