diff --git a/.github/tests/mix-public.yaml b/.github/tests/mix-public.yaml index 01fe74a7b..ea899f3b2 100644 --- a/.github/tests/mix-public.yaml +++ b/.github/tests/mix-public.yaml @@ -15,4 +15,4 @@ participants: cl_type: grandine additional_services: [] port_publisher: - public_port_start: 50000 + public_port_start: 40000 diff --git a/.github/workflows/conventional-pr-title-checker.yml b/.github/workflows/conventional-pr-title-checker.yml index 417302822..611849392 100644 --- a/.github/workflows/conventional-pr-title-checker.yml +++ b/.github/workflows/conventional-pr-title-checker.yml @@ -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: diff --git a/.github/workflows/per-pr.yml b/.github/workflows/per-pr.yml index c7fef2367..9541ea502 100644 --- a/.github/workflows/per-pr.yml +++ b/.github/workflows/per-pr.yml @@ -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 @@ -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 @@ -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 @@ -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 diff --git a/main.star b/main.star index a2a5886fb..75b1fe32a 100644 --- a/main.star +++ b/main.star @@ -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, ) @@ -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,