Add tox and CI for interop

This commit is contained in:
mhchia
2019-08-28 23:39:33 +08:00
parent 34a4d7b0ed
commit b726d7c9da
10 changed files with 646 additions and 2 deletions

13
install_interop_go_pkgs.sh Executable file
View File

@ -0,0 +1,13 @@
#!/bin/bash
which go
if [ $? != 0 ]; then
wget https://dl.google.com/go/go1.12.6.linux-amd64.tar.gz
sudo tar -C /usr/local -xzf $GOPACKAGE
export GOPATH=$HOME/go
export GOROOT=/usr/local/go
fi
go version
cd tests/interop/go_pkgs/
go install ./...