Skip to content
This repository has been archived by the owner on Oct 11, 2024. It is now read-only.

Commit

Permalink
Merge pull request #436 from 0xProject/fix/wasmbrowsertest-ci
Browse files Browse the repository at this point in the history
Use gobin to install a specific version of wasmbrowsertest
  • Loading branch information
fabioberger authored Oct 2, 2019
2 parents 8db191c + f79c3bb commit 7177ab5
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,16 @@ deps-js:
yarn install


# gobin allows us to install specific versions of binary tools written in Go.
.PHONY: gobin
gobin:
GO111MODULE=off go get -u github.com/myitcv/gobin


# wasmbrowsertest is required for running WebAssembly tests in the browser.
.PHONY: wasmbrowsertest
wasmbrowsertest:
go get -u github.com/agnivade/wasmbrowsertest
wasmbrowsertest: gobin
gobin github.com/agnivade/wasmbrowsertest@v0.3.0


# Installs dependencies without updating Gopkg.lock or yarn.lock
Expand Down

0 comments on commit 7177ab5

Please sign in to comment.