Compare commits
12 Commits
4efb31f125
...
4ee4959fd6
Author | SHA1 | Date | |
---|---|---|---|
4ee4959fd6 | |||
9540724d82 | |||
5ad7ebb016 | |||
ebf19337eb | |||
7bd725c69f | |||
40a5fa23cd | |||
88cdd48588 | |||
67153e0143 | |||
4c886dbdd1 | |||
0d63b95f7d | |||
f20f91422b | |||
e1faeb9eca |
@ -28,33 +28,8 @@ jobs:
|
||||
- name: "Print Python version"
|
||||
run: python3 --version
|
||||
- name: "Install stack orchestrator"
|
||||
# FIXME: merge SO fixes and revert
|
||||
# run: ./scripts/install-so.sh
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
repository: cerc-io/stack-orchestrator
|
||||
ref: roysc/fix-various
|
||||
path: .tools/stack-orchestrator
|
||||
- name: "Install stack orchestrator"
|
||||
run: pip3 install .tools/stack-orchestrator
|
||||
run: ./scripts/install-so.sh
|
||||
- name: "Run stack tests"
|
||||
run: |
|
||||
PATH=$PATH:~/bin
|
||||
./tests/fixturenet-plugeth-stack/run-test.sh
|
||||
|
||||
- name: Notify Vulcanize Slack on CI failure
|
||||
if: ${{ always() && github.ref_name == 'main' }}
|
||||
uses: ravsamhq/notify-slack-action@v2
|
||||
with:
|
||||
status: ${{ job.status }}
|
||||
notify_when: 'failure'
|
||||
env:
|
||||
SLACK_WEBHOOK_URL: ${{ secrets.VULCANIZE_SLACK_CI_ALERTS }}
|
||||
- name: Notify DeepStack Slack on CI failure
|
||||
if: ${{ always() && github.ref_name == 'main' }}
|
||||
uses: ravsamhq/notify-slack-action@v2
|
||||
with:
|
||||
status: ${{ job.status }}
|
||||
notify_when: 'failure'
|
||||
env:
|
||||
SLACK_WEBHOOK_URL: ${{ secrets.DEEPSTACK_SLACK_CI_ALERTS }}
|
||||
|
@ -1 +1,2 @@
|
||||
# Change this file to trigger the job publish-fixturenet-eth-images.yml
|
||||
Trigger
|
||||
|
@ -27,7 +27,7 @@ services:
|
||||
CERC_ALLOW_UNPROTECTED_TXS: ${CERC_ALLOW_UNPROTECTED_TXS:-false}
|
||||
env_file:
|
||||
- ../config/fixturenet-eth/fixturenet-eth.env
|
||||
- ../config/fixturenet-eth/statediff.env
|
||||
- ../config/fixturenet-plugeth/statediff.env
|
||||
image: cerc/fixturenet-plugeth-plugeth:local
|
||||
volumes:
|
||||
- fixturenet_plugeth_geth_1_data:/root/ethdata
|
||||
|
@ -14,5 +14,5 @@ ENR_URL="http://fixturenet-eth-bootnode-lighthouse:3000/bootnode/enr.dat"
|
||||
CERC_GETH_VMODULE="rpc/*=5"
|
||||
CERC_GETH_VERBOSITY=${CERC_GETH_VERBOSITY:-3}
|
||||
|
||||
# Used by Lighthouse
|
||||
SECONDS_PER_ETH1_BLOCK=${SECONDS_PER_ETH1_BLOCK:-3}
|
||||
# --debug-level
|
||||
DEBUG_LEVEL=${LIGHTHOUSE_DEBUG_LEVEL:-info}
|
||||
|
@ -7,3 +7,6 @@ CERC_STATEDIFF_DB_PASSWORD="password"
|
||||
CERC_STATEDIFF_DB_GOOSE_MIN_VER=${CERC_STATEDIFF_DB_GOOSE_MIN_VER:-21}
|
||||
CERC_STATEDIFF_DB_LOG_STATEMENTS="${CERC_STATEDIFF_DB_LOG_STATEMENTS:-false}"
|
||||
CERC_STATEDIFF_WORKERS=2
|
||||
|
||||
CERC_GETH_HTTP_APIS="eth,web3,net,admin,personal,debug,statediff"
|
||||
CERC_GETH_WS_APIS="eth,web3,net,admin,personal,debug,statediff"
|
@ -44,6 +44,11 @@ lcli \
|
||||
--interop-genesis-state \
|
||||
--force
|
||||
|
||||
# Patch the spec with settings not supported by lcli
|
||||
sed -i "/^SHARD_COMMITTEE_PERIOD:/s/:.*/: $SHARD_COMMITTEE_PERIOD/" $TESTNET_DIR/config.yaml
|
||||
sed -i "/^MIN_VALIDATOR_WITHDRAWABILITY_DELAY:/s/:.*/: $MIN_VALIDATOR_WITHDRAWABILITY_DELAY/" $TESTNET_DIR/config.yaml
|
||||
sed -i "/^MAX_SEED_LOOKAHEAD:/s/:.*/: $MAX_SEED_LOOKAHEAD/" $TESTNET_DIR/config.yaml
|
||||
|
||||
echo Specification and genesis.ssz generated at $TESTNET_DIR.
|
||||
echo "Generating $VALIDATOR_COUNT validators concurrently... (this may take a while)"
|
||||
|
||||
|
@ -38,6 +38,13 @@ SECONDS_PER_SLOT=${SECONDS_PER_SLOT:-3}
|
||||
# Seconds per Eth1 block
|
||||
SECONDS_PER_ETH1_BLOCK=${SECONDS_PER_ETH1_BLOCK:-1}
|
||||
|
||||
# Min epochs between validator activation and exit
|
||||
SHARD_COMMITTEE_PERIOD=2
|
||||
# Min epochs between validator exit and withdrawal
|
||||
MIN_VALIDATOR_WITHDRAWABILITY_DELAY=1
|
||||
# Delay for validator activation/exit
|
||||
MAX_SEED_LOOKAHEAD=1
|
||||
|
||||
# Command line arguments for validator client
|
||||
VC_ARGS=${VC_ARGS:-""}
|
||||
|
||||
@ -54,5 +61,4 @@ ETH1_DEPOSIT_CONTRACT_ADDRESS=${ETH1_DEPOSIT_CONTRACT_ADDRESS:-`cat $ETH1_CONFIG
|
||||
ETH1_DEPOSIT_CONTRACT_BLOCK=${ETH1_DEPOSIT_CONTRACT_BLOCK:-0x0}
|
||||
SUGGESTED_FEE_RECIPIENT=`cat ../build/el/accounts.csv | head -1 | cut -d',' -f2`
|
||||
|
||||
# --debug-level
|
||||
DEBUG_LEVEL=${LIGHTHOUSE_DEBUG_LEVEL:-info}
|
||||
VALIDATOR_MNEMONIC="viable ketchup woman library opinion copy rhythm attend rose knock penalty practice photo bundle budget dentist enter round bind holiday useful arch danger lobster"
|
||||
|
@ -1,4 +0,0 @@
|
||||
#!/usr/bin/env bash
|
||||
# Build cerc/ipld-eth-db
|
||||
source ${CERC_CONTAINER_BASE_DIR}/build-base.sh
|
||||
docker build -t cerc/ipld-eth-db:local ${build_command_args} ${CERC_REPO_BASE_DIR}/ipld-eth-db
|
@ -2,7 +2,7 @@ version: "1.1"
|
||||
name: fixturenet-eth
|
||||
description: "Ethereum Fixturenet"
|
||||
repos:
|
||||
- git.vdb.to/cerc-io/lighthouse
|
||||
- git.vdb.to/cerc-io/lighthouse@testnet-genesis-eth1-withdrawal-creds
|
||||
containers:
|
||||
- cerc/lighthouse
|
||||
- cerc/lighthouse-cli
|
||||
|
@ -4,7 +4,7 @@ description: "Plugeth Ethereum Indexing Fixturenet"
|
||||
repos:
|
||||
- git.vdb.to/cerc-io/plugeth@statediff
|
||||
- git.vdb.to/cerc-io/plugeth-statediff
|
||||
- git.vdb.to/cerc-io/lighthouse
|
||||
- git.vdb.to/cerc-io/lighthouse@testnet-genesis-eth1-withdrawal-creds
|
||||
- git.vdb.to/cerc-io/ipld-eth-db
|
||||
containers:
|
||||
- cerc/plugeth-statediff
|
||||
|
Loading…
Reference in New Issue
Block a user