mirror of
https://gitlab.com/pulsechaincom/lighthouse-pulse.git
synced 2025-01-07 11:32:21 +00:00
19 lines
404 B
Makefile
19 lines
404 B
Makefile
|
TESTS_TAG := v0.8.3
|
||
|
TESTS = general minimal mainnet
|
||
|
|
||
|
REPO_NAME := eth2.0-spec-tests
|
||
|
OUTPUT_DIR := ./$(REPO_NAME)
|
||
|
|
||
|
BASE_URL := https://github.com/ethereum/$(REPO_NAME)/releases/download/$(TESTS_TAG)
|
||
|
|
||
|
eth2.0-spec-tests:
|
||
|
mkdir $(OUTPUT_DIR)
|
||
|
for test in $(TESTS); do \
|
||
|
wget $(BASE_URL)/$$test.tar.gz; \
|
||
|
tar -xzvf $$test.tar.gz -C $(OUTPUT_DIR);\
|
||
|
rm $$test.tar.gz;\
|
||
|
done
|
||
|
|
||
|
clean:
|
||
|
rm -r $(OUTPUT_DIR)
|