We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54d61d0 commit 569f937Copy full SHA for 569f937
.travis.yml
@@ -14,6 +14,7 @@ before_install:
14
script:
15
- go vet
16
- go test -race -coverprofile=coverage.txt -covermode=atomic
17
+ - make sharness
18
19
after_success:
20
- bash <(curl -s https://codecov.io/bash)
Makefile
@@ -6,6 +6,11 @@ deps: gx
6
gx --verbose install --global
7
gx-go rewrite
8
9
+sharness: deps
10
+ git clone https://github.com/multiformats/multihash.git $(PWD)/sharness
11
+ cd $(PWD)/multihash && go build -v . && ls && chmod +x ./multihash
12
+ export MULTIHASH_BIN="$(PWD)/multihash/multihash" && export TEST_EXPENSE=1 && make -j1 -C $(PWD)/sharness/tests/sharness
13
+
publish:
gx-go rewrite --undo
0 commit comments