Skip to content

Commit

Permalink
Create ethshadow.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ppopth committed Oct 14, 2024
1 parent 53c5259 commit c5e4c32
Showing 1 changed file with 57 additions and 0 deletions.
57 changes: 57 additions & 0 deletions .github/workflows/ethshadow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
name: Ethshadow

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
schedule:
- cron: '0 0 * * *'

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Shadow's dependencies
run : |
# required dependencies
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++
- name: Install Shadow
run: |
git clone https://github.com/shadow/shadow.git
cd shadow
./setup build --clean
./setup install
- name: Install Lighthouse's dependencies
run : |
sudo apt update
sudo apt install -y git gcc g++ make cmake pkg-config llvm-dev libclang-dev clang
- name: Install Lighthouse
run: |
git clone https://github.com/sigp/lighthouse.git
cd lighthouse
git checkout v5.3.0
make
make install-lcli
- name: Install Geth
run: |
git clone https://github.com/ethereum/go-ethereum.git
cd go-ethereum
git checkout v1.14.11
make geth
geth -v

0 comments on commit c5e4c32

Please sign in to comment.