Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/lighthouse-geth.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.23.12'
- name: Install Shadow's dependencies
run : |
# required dependencies
Expand All @@ -35,6 +39,7 @@ jobs:
run: |
git clone https://github.com/shadow/shadow.git
cd shadow
git checkout v3.2.0
./setup build --clean
./setup install
cd ..
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/prysm-geth.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.23.12'
- name: Install Shadow's dependencies
run : |
# required dependencies
Expand All @@ -35,6 +39,7 @@ jobs:
run: |
git clone https://github.com/shadow/shadow.git
cd shadow
git checkout v3.2.0
./setup build --clean
./setup install
cd ..
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ run it using this simulator.

We assume that you already have Go, Rust, and Docker installed.

Please use Go 1.23.x or older because we found that the newer versions don't build Geth v1.14.11

Install Lighthouse and Geth.
```sh
# Lighthouse
Expand All @@ -47,6 +49,7 @@ Install Shadow
sudo apt-get install -y cmake findutils libclang-dev libc-dbg libglib2.0-0 libglib2.0-dev make netbase python3 python3-networkx xz-utils util-linux gcc g++
git clone https://github.com/shadow/shadow.git
cd shadow
git checkout v3.2.0 # Install the latest version of Shadow
./setup build --clean
./setup install
echo 'export PATH="${PATH}:/home/${USER}/.local/bin"' >> ~/.bashrc && source ~/.bashrc
Expand Down
1 change: 1 addition & 0 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ The Docker daemon must be running while Ethshadow prepares the simulation.
sudo apt-get install -y cmake findutils libclang-dev libc-dbg libglib2.0-0 libglib2.0-dev make netbase python3 python3-networkx xz-utils util-linux gcc g++
git clone https://github.com/shadow/shadow.git
cd shadow
git checkout v3.2.0 # Install the latest version of Shadow
./setup build --clean
./setup install
echo 'export PATH="${PATH}:/home/${USER}/.local/bin"' >> ~/.bashrc && source ~/.bashrc
Expand Down
Loading