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
440fb319
Unverified
Commit
440fb319
authored
Jun 27, 2024
by
Barnabas Busa
Committed by
GitHub
Jun 27, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: DNS-1035 label (#697)
parent
9363ea27
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
9 additions
and
9 deletions
+9
-9
devnet.star
src/network_launcher/devnet.star
+1
-1
ephemery.star
src/network_launcher/ephemery.star
+1
-1
public_network.star
src/network_launcher/public_network.star
+1
-1
shadowfork.star
src/network_launcher/shadowfork.star
+2
-2
input_parser.star
src/package_io/input_parser.star
+1
-1
el_cl_genesis_generator.star
...data_generator/el_cl_genesis/el_cl_genesis_generator.star
+3
-3
No files found.
src/network_launcher/devnet.star
View file @
440fb319
...
...
@@ -12,7 +12,7 @@ def launch(plan, network, prague_time, repo):
name="el_cl_genesis",
)
el_cl_genesis_data_uuid = plan.run_sh(
name="move
_genesis_
data",
name="move
-genesis-
data",
description="Creating network configs",
run="mkdir -p /network-configs/ && mv /opt/* /network-configs/",
store=[StoreSpec(src="/network-configs/", name="el_cl_genesis_data")],
...
...
src/network_launcher/ephemery.star
View file @
440fb319
...
...
@@ -6,7 +6,7 @@ el_cl_genesis_data = import_module(
def launch(plan, prague_time):
el_cl_genesis_data_uuid = plan.run_sh(
name="fetch
_ephemery_genesis_
data",
name="fetch
-ephemery-genesis-
data",
description="Creating network configs",
run="mkdir -p /network-configs/ && \
curl -o latest.tar.gz https://ephemery.dev/latest.tar.gz && \
...
...
src/network_launcher/public_network.star
View file @
440fb319
...
...
@@ -8,7 +8,7 @@ constants = import_module("../package_io/constants.star")
def launch(plan, network, prague_time):
# We are running a public network
dummy_genesis_data = plan.run_sh(
name="dummy
_genesis_
data",
name="dummy
-genesis-
data",
description="Creating network configs folder",
run="mkdir /network-configs",
store=[StoreSpec(src="/network-configs/", name="el_cl_genesis_data")],
...
...
src/network_launcher/shadowfork.star
View file @
440fb319
...
...
@@ -15,7 +15,7 @@ def shadowfork_prep(
# overload the network name to remove the shadowfork suffix
if constants.NETWORK_NAME.ephemery in base_network:
chain_id = plan.run_sh(
name="fetch
_chain_
id",
name="fetch
-chain-
id",
description="Fetching the chain id",
run="curl -s https://ephemery.dev/latest/config.yaml | yq .DEPOSIT_CHAIN_ID | tr -d '\n'",
image="linuxserver/yq",
...
...
@@ -26,7 +26,7 @@ def shadowfork_prep(
base_network
] # overload the network id to match the network name
latest_block = plan.run_sh(
name="fetch
_latest_
block",
name="fetch
-latest-
block",
description="Fetching the latest block",
run="mkdir -p /shadowfork && \
curl -o /shadowfork/latest_block.json "
...
...
src/package_io/input_parser.star
View file @
440fb319
...
...
@@ -1149,7 +1149,7 @@ def deep_copy_participant(participant):
def get_public_ip(plan):
response = plan.run_sh(
name="get
_public_
ip",
name="get
-public-
ip",
description="Get the public IP address of the current machine",
run="curl -s https://ident.me",
)
...
...
src/prelaunch_data_generator/el_cl_genesis/el_cl_genesis_generator.star
View file @
440fb319
...
...
@@ -47,7 +47,7 @@ def generate_el_cl_genesis_data(
files[GENESIS_VALUES_PATH] = genesis_generation_config_artifact_name
genesis = plan.run_sh(
name="run
_generate_
genesis",
name="run
-generate-
genesis",
description="Creating genesis",
run="cp /opt/values.env /config/values.env && ./entrypoint.sh all && mkdir /network-configs && mv /data/metadata/* /network-configs/",
image=image,
...
...
@@ -63,7 +63,7 @@ def generate_el_cl_genesis_data(
)
genesis_validators_root = plan.run_sh(
name="read
_genesis_validators_
root",
name="read
-genesis-validators-
root",
description="Reading genesis validators root",
run="cat /data/genesis_validators_root.txt",
files={"/data": genesis.files_artifacts[1]},
...
...
@@ -71,7 +71,7 @@ def generate_el_cl_genesis_data(
)
prague_time = plan.run_sh(
name="read
_prague_
time",
name="read
-prague-
time",
description="Reading prague time from genesis",
run="jq .config.pragueTime /data/genesis.json | tr -d '\n'",
image="badouralix/curl-jq",
...
...
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