Skip to content

Commit

Permalink
Bump to Go v1.11.4
Browse files Browse the repository at this point in the history
Signed-off-by: Dan Williams <dcbw@redhat.com>
  • Loading branch information
dcbw authored and shettyg committed Jun 11, 2019
1 parent 687ba2a commit 0289154
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
sudo: required
language: go
go:
- 1.8.1
- 1.11.4
before_install:
- export GOPATH=$HOME/go
- export PATH=$HOME/usr/local/go/bin:$GOPATH/bin:$PATH
- mkdir -p $GOPATH/src/github.com/ovn-org
- mv $TRAVIS_BUILD_DIR $GOPATH/src/github.com/ovn-org/ovn-kubernetes
- cd $GOPATH/src/github.com/ovn-org/ovn-kubernetes
install:
- eval "$(gimme 1.8.1)"
- eval "$(gimme 1.11.4)"
script:
- cd go-controller;
- make;
Expand Down
2 changes: 1 addition & 1 deletion test/integration/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
- name: install Golang tools
include: golang.yml
vars:
version: "1.9.1"
version: "1.11.4"

- name: clone build and install openshift
include: "build/openshift.yml"
Expand Down
4 changes: 2 additions & 2 deletions vagrant/provisioning/setup-master.sh
Original file line number Diff line number Diff line change
Expand Up @@ -161,8 +161,8 @@ popd

if [ "$DAEMONSET" != "true" ]; then
# Install golang
wget -nv https://dl.google.com/go/go1.9.2.linux-amd64.tar.gz
sudo tar -C /usr/local -xzf go1.9.2.linux-amd64.tar.gz
wget -nv https://dl.google.com/go/go1.11.4.linux-amd64.tar.gz
sudo tar -C /usr/local -xzf go1.11.4.linux-amd64.tar.gz
export PATH="/usr/local/go/bin:echo $PATH"
export GOPATH=$HOME/work

Expand Down
4 changes: 2 additions & 2 deletions vagrant/provisioning/setup-minion.sh
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,8 @@ popd

if [ "$DAEMONSET" != "true" ]; then
# Install golang
wget -nv https://dl.google.com/go/go1.9.2.linux-amd64.tar.gz
sudo tar -C /usr/local -xzf go1.9.2.linux-amd64.tar.gz
wget -nv https://dl.google.com/go/go1.11.4.linux-amd64.tar.gz
sudo tar -C /usr/local -xzf go1.11.4.linux-amd64.tar.gz
export PATH="/usr/local/go/bin:echo $PATH"
export GOPATH=$HOME/work

Expand Down

0 comments on commit 0289154

Please sign in to comment.