Skip to content

Commit

Permalink
activate geth and EL interop sim commits as workflow env vars
Browse files Browse the repository at this point in the history
  • Loading branch information
g11tech committed Nov 24, 2021
1 parent cd24a96 commit 9892b14
Showing 1 changed file with 18 additions and 14 deletions.
32 changes: 18 additions & 14 deletions .github/workflows/test-sim-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ name: Sim merge tests

on: [pull_request, push]

env:
GETH_COMMIT: 932939feb6735f4295911063c09b1100aee24cb1
NETHERMIND_COMMIT: 8e54f87ce2e36e20a73b73a0e470816b1edc9b92

jobs:
sim-merge-tests:
name: Sim merge tests
Expand Down Expand Up @@ -31,27 +35,27 @@ jobs:
if: steps.cache-deps.outputs.cache-hit == 'true'
# </common-build>

# Install Geth merge interop
# - uses: actions/setup-go@v2
# - name: Clone Geth merge interop branch
# run: git clone -b kintsugi-spec https://github.com/MariusVanDerWijden/go-ethereum.git && cd go-ethereum && git reset --hard b629e2560aae26059bf69ef19690385e078cbefd && git submodule update
# - name: Build Geth
# run: cd go-ethereum && make
#Install Geth merge interop
- uses: actions/setup-go@v2
- name: Clone Geth merge interop branch
run: git clone -b kintsugi-spec https://github.com/MariusVanDerWijden/go-ethereum.git && cd go-ethereum && git reset --hard $GETH_COMMIT && git submodule update --init --recursive
- name: Build Geth
run: cd go-ethereum && make

# - name: Test Lodestar <> Geth interop
# run: yarn test:sim:merge-interop
# working-directory: packages/lodestar
# env:
# EL_BINARY_DIR: ../../go-ethereum/build/bin
# EL_SCRIPT_DIR: geth
# EL_PORT: 8545
- name: Test Lodestar <> Geth interop
run: yarn test:sim:merge-interop
working-directory: packages/lodestar
env:
EL_BINARY_DIR: ../../go-ethereum/build/bin
EL_SCRIPT_DIR: geth
EL_PORT: 8545

# Install Nethermind merge interop
- uses: actions/setup-dotnet@v1
with:
dotnet-version: '5.0.x'
- name: Clone Nethermind merge interop branch
run: git clone -b themerge_kintsugi https://github.com/NethermindEth/nethermind --recursive && cd nethermind && git reset --hard 8e54f87ce2e36e20a73b73a0e470816b1edc9b92 && git submodule update
run: git clone -b themerge_kintsugi https://github.com/NethermindEth/nethermind --recursive && cd nethermind && git reset --hard $NETHERMIND_COMMIT && git submodule update --init --recursive
- name: Build Nethermind
run: cd nethermind/src/Nethermind && dotnet build Nethermind.sln -c Release

Expand Down

0 comments on commit 9892b14

Please sign in to comment.