Skip to content

Commit f39dae7

Browse files
authored
Merge pull request #149 from belak/belak/1.8-release
Update to 1.8
2 parents cef27b1 + 51e9590 commit f39dae7

File tree

12 files changed

+15
-16
lines changed

12 files changed

+15
-16
lines changed

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ language: bash
22
services: docker
33

44
env:
5-
- VERSION=1.8-rc VARIANT=
6-
- VERSION=1.8-rc VARIANT=stretch
7-
- VERSION=1.8-rc VARIANT=alpine
5+
- VERSION=1.8 VARIANT=
6+
- VERSION=1.8 VARIANT=stretch
7+
- VERSION=1.8 VARIANT=alpine
88
- VERSION=1.7 VARIANT=
99
- VERSION=1.7 VARIANT=wheezy
1010
- VERSION=1.7 VARIANT=alpine

1.8-rc/Dockerfile renamed to 1.8/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
99
pkg-config \
1010
&& rm -rf /var/lib/apt/lists/*
1111

12-
ENV GOLANG_VERSION 1.8rc3
12+
ENV GOLANG_VERSION 1.8
1313
ENV GOLANG_DOWNLOAD_URL https://golang.org/dl/go$GOLANG_VERSION.linux-amd64.tar.gz
14-
ENV GOLANG_DOWNLOAD_SHA256 0ff3faba02ac83920a65b453785771e75f128fbf9ba4ad1d5e72c044103f9c7a
14+
ENV GOLANG_DOWNLOAD_SHA256 53ab94104ee3923e228a2cb2116e5e462ad3ebaeea06ff04463479d7f12d27ca
1515

1616
RUN curl -fsSL "$GOLANG_DOWNLOAD_URL" -o golang.tar.gz \
1717
&& echo "$GOLANG_DOWNLOAD_SHA256 golang.tar.gz" | sha256sum -c - \

1.8-rc/alpine/Dockerfile renamed to 1.8/alpine/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ FROM alpine:3.5
22

33
RUN apk add --no-cache ca-certificates
44

5-
ENV GOLANG_VERSION 1.8rc3
5+
ENV GOLANG_VERSION 1.8
66
ENV GOLANG_SRC_URL https://golang.org/dl/go$GOLANG_VERSION.src.tar.gz
7-
ENV GOLANG_SRC_SHA256 38b1c1738f111f7bccdd372efca2aa98a7bad1ca2cb21767ba69f34ae007499c
7+
ENV GOLANG_SRC_SHA256 406865f587b44be7092f206d73fc1de252600b79b3cacc587b74b5ef5c623596
88

99
# https://golang.org/issue/14851
1010
COPY no-pic.patch /
File renamed without changes.
File renamed without changes.
File renamed without changes.

1.8-rc/onbuild/Dockerfile renamed to 1.8/onbuild/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.8-rc
1+
FROM golang:1.8
22

33
RUN mkdir -p /go/src/app
44
WORKDIR /go/src/app

1.8-rc/stretch/Dockerfile renamed to 1.8/stretch/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
99
pkg-config \
1010
&& rm -rf /var/lib/apt/lists/*
1111

12-
ENV GOLANG_VERSION 1.8rc3
12+
ENV GOLANG_VERSION 1.8
1313
ENV GOLANG_DOWNLOAD_URL https://golang.org/dl/go$GOLANG_VERSION.linux-amd64.tar.gz
14-
ENV GOLANG_DOWNLOAD_SHA256 0ff3faba02ac83920a65b453785771e75f128fbf9ba4ad1d5e72c044103f9c7a
14+
ENV GOLANG_DOWNLOAD_SHA256 53ab94104ee3923e228a2cb2116e5e462ad3ebaeea06ff04463479d7f12d27ca
1515

1616
RUN curl -fsSL "$GOLANG_DOWNLOAD_URL" -o golang.tar.gz \
1717
&& echo "$GOLANG_DOWNLOAD_SHA256 golang.tar.gz" | sha256sum -c - \
File renamed without changes.

1.8-rc/windows/nanoserver/Dockerfile renamed to 1.8/windows/nanoserver/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ RUN $newPath = ('{0}\bin;C:\go\bin;{1}' -f $env:GOPATH, $env:PATH); \
1616
setx /M PATH $newPath;
1717
# doing this first to share cache across versions more aggressively
1818

19-
ENV GOLANG_VERSION 1.8rc3
19+
ENV GOLANG_VERSION 1.8
2020
ENV GOLANG_DOWNLOAD_URL https://golang.org/dl/go$GOLANG_VERSION.windows-amd64.zip
21-
ENV GOLANG_DOWNLOAD_SHA256 9ac7224a79dfd2d390ff4c5202f09fae2a5b07e9b0ebf32913979635e7143383
21+
ENV GOLANG_DOWNLOAD_SHA256 cb27fe210f3a9d10329d48514895d2a1e3651125a7c3c758f0358a5bfc0e3060
2222

2323
RUN Write-Host ('Downloading {0} ...' -f $env:GOLANG_DOWNLOAD_URL); \
2424
Invoke-WebRequest -Uri $env:GOLANG_DOWNLOAD_URL -OutFile 'go.zip'; \

1.8-rc/windows/windowsservercore/Dockerfile renamed to 1.8/windows/windowsservercore/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ RUN $newPath = ('{0}\bin;C:\go\bin;{1}' -f $env:GOPATH, $env:PATH); \
4545
[Environment]::SetEnvironmentVariable('PATH', $newPath, [EnvironmentVariableTarget]::Machine);
4646
# doing this first to share cache across versions more aggressively
4747

48-
ENV GOLANG_VERSION 1.8rc3
48+
ENV GOLANG_VERSION 1.8
4949
ENV GOLANG_DOWNLOAD_URL https://golang.org/dl/go$GOLANG_VERSION.windows-amd64.zip
50-
ENV GOLANG_DOWNLOAD_SHA256 9ac7224a79dfd2d390ff4c5202f09fae2a5b07e9b0ebf32913979635e7143383
50+
ENV GOLANG_DOWNLOAD_SHA256 cb27fe210f3a9d10329d48514895d2a1e3651125a7c3c758f0358a5bfc0e3060
5151

5252
RUN Write-Host ('Downloading {0} ...' -f $env:GOLANG_DOWNLOAD_URL); \
5353
Invoke-WebRequest -Uri $env:GOLANG_DOWNLOAD_URL -OutFile 'go.zip'; \

generate-stackbrew-library.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
set -eu
33

44
declare -A aliases=(
5-
[1.7]='1 latest'
6-
[1.8-rc]='rc'
5+
[1.8]='1 latest'
76
)
87

98
self="$(basename "$BASH_SOURCE")"

0 commit comments

Comments
 (0)