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
15 changes: 9 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,17 +72,20 @@ jobs:
# go 1.19 is incompatible with the github.com/lucas-clemente/quic-go v0.27.2 dependency
go-version: '1.18'

- name: Build lodestar
run: docker-compose build lodestar-beacon-node lodestar-beacon-node-follower

- name: Lodestar - Run pre-EIP4844 tests
run: go run ./tests/pre-4844 lodestar

# - name: Lodestar - Run Blob transaction tests
# run: go run ./tests/blobtx lodestar
- name: Lodestar - Run Blob transaction tests
run: go run ./tests/blobtx lodestar

# - name: Lodestar - Run Fee market spec tests
# run: go run ./tests/fee-market lodestar
- name: Lodestar - Run Fee market spec tests
run: go run ./tests/fee-market lodestar

# - name: Lodestar - Run Initial sync tests
# run: go run ./tests/initial-sync lodestar
- name: Lodestar - Run Initial sync tests
run: go run ./tests/initial-sync lodestar

- name: Collect docker logs on failure
if: failure()
Expand Down
4 changes: 2 additions & 2 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
branch = eip-4844
[submodule "lodestar/lodestar"]
path = lodestar/lodestar
url = https://github.com/dgcoffman/lodestar
branch = dgc/eip-4844
url = https://github.com/ChainSafe/lodestar
branch = dapplion/eip-4844
[submodule "erigon/erigon"]
path = erigon/erigon
url = https://github.com/roberto-bayardo/erigon
Expand Down
4 changes: 2 additions & 2 deletions lodestar/Dockerfile.lodestar
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM node:16

RUN apt-get update && \
apt-get install -y jq
apt-get install -y jq wget

COPY ./lodestar/package.json /app/lodestar/package.json
COPY ./lodestar/yarn.lock /app/lodestar/yarn.lock
COPY ./lodestar/trusted_setup.txt /app/lodestar/trusted_setup.txt
RUN wget https://raw.githubusercontent.com/dgcoffman/lodestar/513b8731eb4735122972e86c2c13dbd21001fe92/trusted_setup.txt -O /app/lodestar/trusted_setup.txt

COPY ./lodestar/packages/api/package.json /app/lodestar/packages/api/package.json
COPY ./lodestar/packages/beacon-node/package.json /app/lodestar/packages/beacon-node/package.json
Expand Down
2 changes: 1 addition & 1 deletion lodestar/lodestar
Submodule lodestar updated 190 files