2
0
mirror of synced 2025-02-23 06:08:07 +00:00

I think go get becomes go install for arbitrary commands

This commit is contained in:
Matt Joiner 2018-07-25 19:10:08 +10:00
parent 5baf7e0e4a
commit 823e810d8b

View File

@ -26,7 +26,7 @@ jobs:
- run: go test -bench . ./... - run: go test -bench . ./...
# - run: CGO_ENABLED=0 go get -t -d -v $PROJECT_GO_PACKAGE/... # - run: CGO_ENABLED=0 go get -t -d -v $PROJECT_GO_PACKAGE/...
- run: set +e; CGO_ENABLED=0 go test -v ./...; true - run: set +e; CGO_ENABLED=0 go test -v ./...; true
- run: go get golang.org/x/mobile/cmd/gomobile - run: go install golang.org/x/mobile/cmd/gomobile
- run: gomobile init - run: gomobile init
- run: gomobile build -target=android $PROJECT_GO_PACKAGE - run: gomobile build -target=android $PROJECT_GO_PACKAGE
- run: go get github.com/anacrolix/godo - run: go get github.com/anacrolix/godo