Update Makefile target for downloading libs

This commit is contained in:
Arturo Filastò 2018-09-11 12:39:47 +02:00
parent 27f3df54bb
commit aabe55cc51
3 changed files with 9 additions and 6 deletions

View File

@ -7,7 +7,7 @@ go:
install:
- make install-dev-deps
- dep ensure
- make update-mk-libs
- make download-mk-libs-macos
script:
- make test-internal
- make build
- make build

2
Gopkg.lock generated
View File

@ -68,7 +68,7 @@
branch = "master"
name = "github.com/measurement-kit/go-measurement-kit"
packages = ["."]
revision = "b44943bb7da37f768d30315a2227dac86feac546"
revision = "33cbd62d4a73b68af069f70a797c2250332c059a"
[[projects]]
branch = "master"

View File

@ -14,10 +14,13 @@ build-windows:
@echo "Building dist/ooni.exe"
CC=x86_64-w64-mingw32-gcc GOOS=windows GOARCH=amd64 CGO_ENABLED=1 go build -o dist/ooni.exe -x cmd/ooni/main.go
update-mk-libs:
download-mk-libs:
@echo "updating mk-libs"
@cd vendor/github.com/measurement-kit/go-measurement-kit && curl -L -o master.zip https://github.com/measurement-kit/golang-prebuilt/archive/master.zip && unzip master.zip && mv golang-prebuilt-master libs && rm master.zip # This is a hack to workaround: https://github.com/golang/dep/issues/1240
.PHONY: update-mk-libs
@cd vendor/github.com/measurement-kit/go-measurement-kit && ./download-libs.sh
download-mk-libs-macos:
@echo "updating mk-libs"
@cd vendor/github.com/measurement-kit/go-measurement-kit && ./download-libs.sh macos
.PHONY: update-mk-libs-macos
bindata:
@$(GO) run vendor/github.com/shuLhan/go-bindata/go-bindata/*.go \