File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 57
57
58
58
- name : build-backend-no-gcc
59
59
pull : always
60
- image : golang:1.12 # this step is kept as the lowest version of golang that we support
60
+ image : golang:1.13 # this step is kept as the lowest version of golang that we support
61
61
environment :
62
62
GO111MODULE : on
63
63
GOPROXY : off
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ HAS_GO = $(shell hash $(GO) > /dev/null 2>&1 && echo "GO" || echo "NOGO" )
26
26
COMMA := ,
27
27
28
28
XGO_VERSION := go-1.15.x
29
- MIN_GO_VERSION := 001012000
29
+ MIN_GO_VERSION := 001013000
30
30
MIN_NODE_VERSION := 010013000
31
31
32
32
DOCKER_IMAGE ?= gitea/gitea
@@ -186,7 +186,7 @@ help:
186
186
go-check :
187
187
$(eval GO_VERSION := $(shell printf "% 03d% 03d% 03d" $(shell go version | grep -Eo '[0-9]+\.[0-9.]+' | tr '.' ' ') ;) )
188
188
@if [ " $( GO_VERSION) " -lt " $( MIN_GO_VERSION) " ]; then \
189
- echo " Gitea requires Go 1.12 or greater to build. You can get it at https://golang.org/dl/" ; \
189
+ echo " Gitea requires Go 1.13 or greater to build. You can get it at https://golang.org/dl/" ; \
190
190
exit 1; \
191
191
fi
192
192
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ or if sqlite support is required:
40
40
41
41
The ` build ` target is split into two sub-targets:
42
42
43
- - ` make backend ` which requires [ Go 1.12 ] ( https://golang.org/dl/ ) or greater.
43
+ - ` make backend ` which requires [ Go 1.13 ] ( https://golang.org/dl/ ) or greater.
44
44
- ` make frontend ` which requires [ Node.js 10.13] ( https://nodejs.org/en/download/ ) or greater.
45
45
46
46
If pre-built frontend files are present it is possible to only build the backend:
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.12.4
22
- minGoVersion : 1.12
22
+ minGoVersion : 1.13
23
23
goVersion : 1.15
24
24
minNodeVersion : 10.13
25
25
You can’t perform that action at this time.
0 commit comments