From d4a96ad9d5494cb5eb208c48b8cf0082f2b2a79d Mon Sep 17 00:00:00 2001 From: Sebastien Binet Date: Fri, 13 Jul 2018 07:57:41 +0200 Subject: [PATCH] ARROW-2841: [Go] support building in forks Go is pretty adamant about where source code needs to be. A package named "github.com/apache/arrow/go" needs to be checked out under $GOPATH/src/github.com/apache/arrow/go, otherwise wires get crossed. Fortunately, Travis-CI has some support to allow checking out a repository github.com/foo/bar under example.com/foo/bar (this is for the so-called "vanity imports.") Reuse this facility for the forks. --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 51253f28c54a..06bf97623963 100644 --- a/.travis.yml +++ b/.travis.yml @@ -219,6 +219,7 @@ matrix: - bash <(curl -s https://codecov.io/bash) || echo "Codecov did not collect coverage reports" # Go - language: go + go_import_path: github.com/apache/arrow os: linux go: - 1.10.x