Commit cb96bb8 1 parent f2e7add commit cb96bb8 Copy full SHA for cb96bb8
File tree 6 files changed +12
-7
lines changed
6 files changed +12
-7
lines changed Original file line number Diff line number Diff line change 5
5
test :
6
6
strategy :
7
7
matrix :
8
- go-version : [1.x, 1.13 .x]
8
+ go-version : [1.x, 1.15 .x]
9
9
platform : [ubuntu-latest]
10
10
runs-on : ${{ matrix.platform }}
11
11
Original file line number Diff line number Diff line change 5
5
test :
6
6
strategy :
7
7
matrix :
8
- go-version : [1.13 .x]
8
+ go-version : [1.15 .x]
9
9
platform : [windows-latest]
10
10
runs-on : ${{ matrix.platform }}
11
11
Original file line number Diff line number Diff line change @@ -22,11 +22,11 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
22
22
pkg-config \
23
23
libsqlite3-dev
24
24
25
- ENV GOLANG_VERSION 1.13.5
25
+ ENV GOLANG_VERSION 1.15.3
26
26
27
27
WORKDIR /usr/local
28
28
RUN wget -O go.tgz https://dl.google.com/go/go${GOLANG_VERSION}.linux-amd64.tar.gz
29
- RUN echo "512103d7ad296467814a6e3f635631bd35574cab3369a97a323c9a585ccaa569 go.tgz" | sha256sum -c -
29
+ RUN echo "010a88df924a81ec21b293b5da8f9b11c176d27c0ee3962dc1738d2352d3c02d go.tgz" | sha256sum -c -
30
30
RUN tar -zxvf go.tgz
31
31
32
32
ENV GOROOT /usr/local/go
Original file line number Diff line number Diff line change
1
+ ** How to build the perkeep/go image: **
2
+
3
+ # TODO(mpl): make the tools build it.
4
+ docker build -t perkeep/go ./misc/docker/go
5
+
1
6
** How to build the Perkeep server docker image (for the GCE launcher): **
2
7
3
8
$ go run ./misc/docker/dock.go -rev=$GIT_REVISION -upload=true
Original file line number Diff line number Diff line change @@ -898,7 +898,7 @@ func validateDirInGOPATH(dir string) error {
898
898
}
899
899
900
900
const (
901
- goVersionMinor = 13
901
+ goVersionMinor = 15
902
902
gopherJSGoMinor = 12
903
903
)
904
904
Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ RUN apt-get -y --no-install-recommends install ca-certificates libc6-dev
7
7
RUN apt-get -y --no-install-recommends install git
8
8
9
9
# Get Go stable release
10
- ENV GOLANG_VERSION 1.13.5
10
+ ENV GOLANG_VERSION 1.15.3
11
11
WORKDIR /tmp
12
12
RUN curl -O https://storage.googleapis.com/golang/go${GOLANG_VERSION}.linux-amd64.tar.gz
13
- RUN echo '512103d7ad296467814a6e3f635631bd35574cab3369a97a323c9a585ccaa569 go' ${GOLANG_VERSION}'.linux-amd64.tar.gz' | sha256sum -c
13
+ RUN echo '010a88df924a81ec21b293b5da8f9b11c176d27c0ee3962dc1738d2352d3c02d go' ${GOLANG_VERSION}'.linux-amd64.tar.gz' | sha256sum -c
14
14
RUN tar -C /usr/local -xzf go${GOLANG_VERSION}.linux-amd64.tar.gz
You can’t perform that action at this time.
0 commit comments