File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 84
84
85
85
- name : build-backend-no-gcc
86
86
pull : always
87
- image : golang:1.15 # this step is kept as the lowest version of golang that we support
87
+ image : golang:1.16 # this step is kept as the lowest version of golang that we support
88
88
environment :
89
89
GO111MODULE : on
90
90
GOPROXY : off
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ HAS_GO = $(shell hash $(GO) > /dev/null 2>&1 && echo "GO" || echo "NOGO" )
25
25
COMMA := ,
26
26
27
27
XGO_VERSION := go-1.16.x
28
- MIN_GO_VERSION := 001015000
28
+ MIN_GO_VERSION := 001016000
29
29
MIN_NODE_VERSION := 012017000
30
30
31
31
DOCKER_IMAGE ?= gitea/gitea
@@ -200,7 +200,7 @@ help:
200
200
go-check :
201
201
$(eval GO_VERSION := $(shell printf "% 03d% 03d% 03d" $(shell $(GO ) version | grep -Eo '[0-9]+\.[0-9.]+' | tr '.' ' ') ;) )
202
202
@if [ " $( GO_VERSION) " -lt " $( MIN_GO_VERSION) " ]; then \
203
- echo " Gitea requires Go 1.15 or greater to build. You can get it at https://golang.org/dl/" ; \
203
+ echo " Gitea requires Go 1.16 or greater to build. You can get it at https://golang.org/dl/" ; \
204
204
exit 1; \
205
205
fi
206
206
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ params:
19
19
author : The Gitea Authors
20
20
website : https://docs.gitea.io
21
21
version : 1.14.6
22
- minGoVersion : 1.15
22
+ minGoVersion : 1.16
23
23
goVersion : 1.16
24
24
minNodeVersion : 12.17
25
25
You can’t perform that action at this time.
0 commit comments