consume extracted paramfetch + basic CircleCI config (#63)
* consume newly-extracted go-paramfetch * add basic CircleCI config, and use TestDownloadParams to hydrate cache before running tests * make deps, not make deps lotus * use Makefile target when testing + set env variable for verbose rust logging * drop gosumtest * drop short mode * add some documentation
.circleci/config.yml
0 → 100644
... | ... | @@ -3,10 +3,10 @@ module github.com/filecoin-project/go-sectorbuilder |
go 1.13 | ||
require ( | ||
github.com/GeertJohan/go.rice v1.0.0 | ||
github.com/fatih/color v1.7.0 // indirect | ||
github.com/filecoin-project/filecoin-ffi v0.0.0-20191219131535-bb699517a590 | ||
github.com/filecoin-project/go-address v0.0.0-20191219011437-af739c490b4f | ||
github.com/filecoin-project/go-paramfetch v0.0.0-20200102181131-b20d579f2878 | ||
github.com/gogo/protobuf v1.3.1 // indirect | ||
github.com/gopherjs/gopherjs v0.0.0-20190812055157-5d271430af9f // indirect | ||
github.com/ipfs/go-cid v0.0.4 // indirect | ||
... | ... | @@ -16,8 +16,6 @@ require ( |
github.com/jbenet/goprocess v0.1.3 // indirect | ||
github.com/mattn/go-colorable v0.1.2 // indirect | ||
github.com/mattn/go-isatty v0.0.9 // indirect | ||
github.com/mattn/go-runewidth v0.0.4 // indirect | ||
github.com/minio/blake2b-simd v0.0.0-20160723061019-3f5f724cb5b1 | ||
github.com/minio/sha256-simd v0.1.1 // indirect | ||
github.com/mr-tron/base58 v1.1.3 // indirect | ||
github.com/otiai10/copy v1.0.2 | ||
... | ... | @@ -27,11 +25,9 @@ require ( |
github.com/stretchr/testify v1.4.0 | ||
github.com/warpfork/go-wish v0.0.0-20190328234359-8b3e70f8e830 // indirect | ||
go.opencensus.io v0.22.2 | ||
go.uber.org/multierr v1.4.0 | ||
golang.org/x/crypto v0.0.0-20191206172530-e9b2fee46413 // indirect | ||
golang.org/x/sys v0.0.0-20191210023423-ac6580df4449 // indirect | ||
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 | ||
gopkg.in/cheggaaa/pb.v1 v1.0.28 | ||
) | ||
replace github.com/golangci/golangci-lint => github.com/golangci/golangci-lint v1.18.0 | ||
... | ... |
Please register or sign in to comment