update end-to-end tests to use the newest version of golang and leverage go modules

pull/634/head
Filipe Costa 2020-08-12 12:53:40 +01:00
parent 9ea063f1dc
commit b7a2faab6d
1 changed files with 2 additions and 2 deletions

View File

@ -3,9 +3,9 @@
Install Go
```
wget https://dl.google.com/go/go1.12.1.linux-amd64.tar.gz
wget https://golang.org/dl/go1.15.linux-amd64.tar.gz
sudo tar -C /usr/local -xzf go1.12.1.linux-amd64.tar.gz
sudo tar -C /usr/local -xzf go1.15.linux-amd64.tar.gz
export GOPATH="/home/vagrant/go"
export PATH=$PATH:/usr/local/go/bin:$GOPATH/bin
```