-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from factset/upgrade-arrow
feat: upgrade to arrow@v7
- Loading branch information
Showing
12 changed files
with
510 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,25 +15,22 @@ jobs: | |
- name: Set up Go 1.x | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: ^1.13 | ||
go-version: ^1.16 | ||
id: go | ||
|
||
- name: Check out code into the Go module directory | ||
uses: actions/checkout@v2 | ||
|
||
- name: Get dependencies | ||
run: | | ||
go get -v -t -d ./... | ||
if [ -f Gopkg.toml ]; then | ||
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh | ||
dep ensure | ||
fi | ||
run: go mod download | ||
|
||
- name: Build | ||
run: go build -v . | ||
|
||
- name: Test | ||
run: go run github.com/ory/go-acc -o coverage.out . ./sasl ./driver ./internal/data -- -race -v | ||
run: | | ||
go install github.com/ory/go-acc@latest | ||
go-acc -o coverage.out ./... -- -race -v | ||
- name: Codecov | ||
uses: codecov/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -89,8 +89,8 @@ jobs: | |
run: | | ||
sudo chmod +rwx -R /opt | ||
mkdir /opt/drill | ||
sh -c 'wget -O - http://apache.mirrors.hoobly.com/drill/drill-1.17.0/apache-drill-1.17.0.tar.gz | tar -xz' | ||
mv apache-drill-1.17.0/* /opt/drill/ | ||
sh -c 'wget -O - http://apache.mirrors.hoobly.com/drill/drill-1.19.0/apache-drill-1.19.0.tar.gz | tar -xz' | ||
mv apache-drill-1.19.0/* /opt/drill/ | ||
cp smoketest/storage-plugins-override.conf /opt/drill/conf/ | ||
if [ $KERBEROS = "true" ]; then | ||
cp smoketest/drill-override-kerberos.conf /opt/drill/conf/drill-override.conf | ||
|
@@ -109,20 +109,19 @@ jobs: | |
id: go | ||
|
||
- name: Get dependencies | ||
run: | | ||
go get -v -t -d ./... | ||
if [ -f Gopkg.toml ]; then | ||
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh | ||
dep ensure | ||
fi | ||
run: go mod download all | ||
|
||
- name: Run smoke test | ||
if: ${{ !matrix.kerberos }} | ||
run: go run github.com/ory/go-acc -o coverage.out . ./sasl ./internal/data -- -race -v -tags smoke -run ^Example$ | ||
run: | | ||
go install github.com/ory/go-acc@latest | ||
go-acc -o coverage.out ./... -- -race -v -tags smoke -run ^Example$ | ||
- name: Run Smoke Test Kerberos | ||
if: ${{ matrix.kerberos }} | ||
run: go run github.com/ory/go-acc -o coverage.out . ./sasl ./internal/data -- -race -v -tags smoke,kerberos -run ^Example_kerberos$ | ||
run: | | ||
go install github.com/ory/go-acc@latest | ||
go-acc -o coverage.out ./... -- -race -v -tags smoke,kerberos -run ^Example_kerberos$ | ||
- name: Codecov | ||
uses: codecov/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
module github.com/factset/go-drill | ||
|
||
go 1.14 | ||
go 1.15 | ||
|
||
require ( | ||
github.com/apache/arrow/go/arrow v0.0.0-20200917173304-4716cd39fc09 | ||
github.com/apache/arrow/go/v7 v7.0.0 | ||
github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815 | ||
github.com/go-zookeeper/zk v1.0.2 | ||
github.com/golang/protobuf v1.4.2 | ||
github.com/golang/protobuf v1.5.2 | ||
github.com/google/go-github/v32 v32.1.0 | ||
github.com/jcmturner/gofork v1.0.0 | ||
github.com/jcmturner/gokrb5/v8 v8.4.1 | ||
github.com/rs/zerolog v1.19.0 | ||
github.com/stretchr/testify v1.6.1 | ||
github.com/rs/zerolog v1.21.0 | ||
github.com/stretchr/testify v1.7.0 | ||
golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a // indirect | ||
google.golang.org/protobuf v1.25.0 | ||
google.golang.org/protobuf v1.27.1 | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters