Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ services:

language: go
go:
- 1.11.x
- 1.12.x
go_import_path: vitess.io/vitess
env:
global:
Expand Down
2 changes: 1 addition & 1 deletion docker/bootstrap/Dockerfile.common
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.11-stretch
FROM golang:1.12-stretch

# Install Vitess build dependencies
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
Expand Down
4 changes: 2 additions & 2 deletions test/cluster/keytar/config/vitess_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ install:
- python-mysqldb
extra:
- apt-get update
- wget https://storage.googleapis.com/golang/go1.11.1.linux-amd64.tar.gz
- tar -C /usr/local -xzf go1.11.1.linux-amd64.tar.gz
- wget https://dl.google.com/go/go1.12.7.linux-amd64.tar.gz
- tar -C /usr/local -xzf go1.12.7.linux-amd64.tar.gz
- wget https://storage.googleapis.com/kubernetes-helm/helm-v2.1.3-linux-amd64.tar.gz
- tar -zxvf helm-v2.1.3-linux-amd64.tar.gz
- pip install numpy
Expand Down
4 changes: 2 additions & 2 deletions vagrant-scripts/bootstrap_vm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ apt-get install -y make \
pip install mysql-connector-python

# Install golang
GO_VER='1.11.1'
GO_DOWNLOAD_URL='https://storage.googleapis.com/golang'
GO_VER='1.12.7'
GO_DOWNLOAD_URL='https://dl.google.com/go/'
GO_FILENAME="go${GO_VER}.linux-amd64.tar.gz"
wget "${GO_DOWNLOAD_URL}/${GO_FILENAME}" -O "${TMP_DIR}/${GO_FILENAME}"
tar xzf "${TMP_DIR}/${GO_FILENAME}" -C "/usr/local"
Expand Down