Using golang 1.14

This commit is contained in:
Shlomi Noach 2020-06-28 08:39:16 +03:00
parent 4dab06e92b
commit 1a8c372947
6 changed files with 12 additions and 14 deletions

View File

@ -8,13 +8,12 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@master - uses: actions/checkout@v2
- name: Set up Go 1.12 - name: Set up Go 1.14
uses: actions/setup-go@v1 uses: actions/setup-go@v1
with: with:
version: 1.12 go-version: 1.14
id: go
- name: Build - name: Build
run: script/cibuild run: script/cibuild

View File

@ -8,13 +8,12 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@master - uses: actions/checkout@v2
- name: Set up Go 1.12 - name: Set up Go 1.14
uses: actions/setup-go@v1 uses: actions/setup-go@v1
with: with:
version: 1.12 go-version: 1.14
id: go
- name: migration tests - name: migration tests
run: script/cibuild-gh-ost-replica-tests run: script/cibuild-gh-ost-replica-tests

View File

@ -1,6 +1,6 @@
# #
FROM golang:1.12.6 FROM golang:1.14.4
RUN apt-get update RUN apt-get update
RUN apt-get install -y ruby ruby-dev rubygems build-essential RUN apt-get install -y ruby ruby-dev rubygems build-essential

View File

@ -1,4 +1,4 @@
FROM golang:1.12.1 FROM golang:1.14.4
LABEL maintainer="github@github.com" LABEL maintainer="github@github.com"
RUN apt-get update RUN apt-get update

View File

@ -18,8 +18,8 @@ function build {
GOOS=$3 GOOS=$3
GOARCH=$4 GOARCH=$4
if ! go version | egrep -q 'go(1\.1[234])' ; then if ! go version | egrep -q 'go(1\.1[23456])' ; then
echo "go version must be 1.12 or above" echo "go version must be 1.14 or above"
exit 1 exit 1
fi fi

View File

@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
PREFERRED_GO_VERSION=go1.12.6 PREFERRED_GO_VERSION=go1.14
SUPPORTED_GO_VERSIONS='go1.1[234]' SUPPORTED_GO_VERSIONS='go1.1[23456]'
GO_PKG_DARWIN=${PREFERRED_GO_VERSION}.darwin-amd64.pkg GO_PKG_DARWIN=${PREFERRED_GO_VERSION}.darwin-amd64.pkg
GO_PKG_DARWIN_SHA=ea78245e43de2996fa0973033064b33f48820cfe39f4f3c6e953040925cc5815 GO_PKG_DARWIN_SHA=ea78245e43de2996fa0973033064b33f48820cfe39f4f3c6e953040925cc5815