097d82535d
* wip * commit with fewer error messages * reduce headlag from 3 to 1 * fixes for params * add composition for local:docker * revert drand-halt plan * initial monitor of miner power and chain epochs * revert params to be same as filecoin mainnet * increase timeout for drand resuming from 30sec to 120sec. * increase log level * upgrade lotus to v0.6.1 * upgrade drand to v1.1.1 * increase prepare node timeout from 1 min to 3 min * upgrade drand to master. increase timeouts for prepare drand node * nil the stmgr.ForksAtHeight map * modify starting/stopping of drand within testplan * increase drand outage to 45min. so that we miss windows * upgrade proof parameters in docker images * revert in-complete changes * use correct runtime debug image
24 lines
872 B
Makefile
24 lines
872 B
Makefile
SHELL = /bin/bash
|
|
|
|
.DEFAULT_GOAL := download-proofs
|
|
|
|
download-proofs:
|
|
go run github.com/filecoin-project/go-paramfetch/paramfetch 2048 ./docker-images/proof-parameters.json
|
|
|
|
build-images:
|
|
docker build -t "iptestground/oni-buildbase:v6" -f "docker-images/Dockerfile.oni-buildbase" "docker-images"
|
|
docker build -t "iptestground/oni-runtime:v3" -f "docker-images/Dockerfile.oni-runtime" "docker-images"
|
|
docker build -t "iptestground/oni-runtime:v4-debug" -f "docker-images/Dockerfile.oni-runtime-debug" "docker-images"
|
|
|
|
push-images:
|
|
docker push iptestground/oni-buildbase:v5
|
|
docker push iptestground/oni-runtime:v3
|
|
docker push iptestground/oni-runtime:v4-debug
|
|
|
|
pull-images:
|
|
docker pull iptestground/oni-buildbase:v5
|
|
docker pull iptestground/oni-runtime:v3
|
|
docker pull iptestground/oni-runtime:v4-debug
|
|
|
|
.PHONY: download-proofs build-images push-images pull-images
|