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 221f1af
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/ethshadow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Ethshadow

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

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++
# rustup: https://rustup.rs
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
- name: Install Shadow
run: |
git clone https://github.com/shadow/shadow.git
cd shadow
./setup build --clean
./setup install

0 comments on commit 221f1af

Please sign in to comment.