Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
ethereum-package
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
vicotor
ethereum-package
Commits
6571a70b
Unverified
Commit
6571a70b
authored
Jun 20, 2024
by
Barnabas Busa
Committed by
GitHub
Jun 20, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: return empty services (#688)
parent
99523611
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
6 deletions
+11
-6
mix-public.yaml
.github/tests/mix-public.yaml
+1
-1
conventional-pr-title-checker.yml
.github/workflows/conventional-pr-title-checker.yml
+1
-1
per-pr.yml
.github/workflows/per-pr.yml
+4
-4
main.star
main.star
+5
-0
No files found.
.github/tests/mix-public.yaml
View file @
6571a70b
...
...
@@ -15,4 +15,4 @@ participants:
cl_type
:
grandine
additional_services
:
[]
port_publisher
:
public_port_start
:
5
0000
public_port_start
:
4
0000
.github/workflows/conventional-pr-title-checker.yml
View file @
6571a70b
...
...
@@ -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
:
...
...
.github/workflows/per-pr.yml
View file @
6571a70b
...
...
@@ -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
...
...
main.star
View file @
6571a70b
...
...
@@ -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,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment