mirror of
https://github.com/varun-r-mallya/py-libp2p.git
synced 2026-02-12 16:10:57 +00:00
Add tox and CI for interop
This commit is contained in:
13
install_interop_go_pkgs.sh
Executable file
13
install_interop_go_pkgs.sh
Executable 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 ./...
|
||||
Reference in New Issue
Block a user