Skip to content
Merged
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
6 changes: 5 additions & 1 deletion .github/actions/shared/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,11 @@ runs:
if: inputs.eest-cache == 'true'
uses: actions/cache@v4
with:
path: tests/fixtures/eest
path: |
tests/fixtures/eest_static
tests/fixtures/eest_stable
tests/fixtures/eest_develop
tests/fixtures/eest_devnet
# EEST release version contained in eest_ci_cache.sh.
# Each time we bump EEST version, it should invalidate the cache too.
key: eest-${{ hashFiles('scripts/eest_ci_cache.sh') }}
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
# give us more space
# find . -type d -name ".git" -exec rm -rf {} +
find . -type d -name "nimcache" -exec rm -rf {} +
mingw32-make ${DEFAULT_MAKE_FLAGS} test t8n_test eest_engine_test
mingw32-make ${DEFAULT_MAKE_FLAGS} test t8n_test eest_full_test

- name: Run nimbus-eth1 tests (Linux)
if: runner.os == 'Linux'
Expand All @@ -94,7 +94,7 @@ jobs:
# ./scripts/launch_local_testnet.sh --nodes=3 --stop-at-epoch=7 \
# --disable-htop --reuse-binaries --run-nimbus-el --dl-eth2 --verbose --kill-old-processes
# popd
env CC=gcc GOARCH=${GOARCH} CXX=g++ CGO_ENABLED=1 make ${DEFAULT_MAKE_FLAGS} test t8n_test eest_engine_test
env CC=gcc GOARCH=${GOARCH} CXX=g++ CGO_ENABLED=1 make ${DEFAULT_MAKE_FLAGS} test t8n_test eest_full_test

- name: Run nimbus-eth1 tests (Macos)
if: runner.os == 'Macos'
Expand All @@ -109,7 +109,7 @@ jobs:
# ./scripts/launch_local_testnet.sh --nodes=3 --stop-at-epoch=7 \
# --disable-htop --reuse-binaries --run-nimbus-el --dl-eth2 --verbose --kill-old-processes
# popd
make ${DEFAULT_MAKE_FLAGS} test t8n_test eest_engine_test
make ${DEFAULT_MAKE_FLAGS} test t8n_test eest_full_test

lint:
name: "Lint"
Expand Down
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,7 @@ nimbus-build-system.paths
.vscode

# EEST test vectors
tests/fixtures/eest
tests/fixtures/eest_static
tests/fixtures/eest_stable
tests/fixtures/eest_develop
tests/fixtures/eest_devnet
Loading
Loading