1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-31 22:58:35 +00:00

use go 1.13 (#8088)

* use go 1.13

* use go 1.13 in gomod file

* Update Makefile

* update swagger deps
This commit is contained in:
techknowlogick
2019-09-12 07:58:32 -04:00
committed by Lauris BH
parent d0ad47bd5d
commit 3f5cdfe359
121 changed files with 759 additions and 12620 deletions

View File

@@ -72,7 +72,7 @@ steps:
- name: build-linux-386
pull: always
image: golang:1.12
image: golang:1.13
environment:
GO111MODULE: on
GOPROXY: off
@@ -83,7 +83,7 @@ steps:
- name: build
pull: always
image: golang:1.12
image: golang:1.13
commands:
- make clean
- make generate
@@ -100,7 +100,7 @@ steps:
- name: unit-test
pull: always
image: golang:1.12
image: golang:1.13
commands:
- make unit-test-coverage
environment:
@@ -117,7 +117,7 @@ steps:
- name: release-test
pull: always
image: golang:1.12
image: golang:1.13
commands:
- make test
environment:
@@ -145,7 +145,7 @@ steps:
- name: tag-test
pull: always
image: golang:1.12
image: golang:1.13
commands:
- make test
environment:
@@ -159,7 +159,7 @@ steps:
- name: test-sqlite
pull: always
image: golang:1.12
image: golang:1.13
commands:
- "curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash"
- apt-get install -y git-lfs
@@ -173,7 +173,7 @@ steps:
- name: test-mysql
pull: always
image: golang:1.12
image: golang:1.13
commands:
- "curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash"
- apt-get install -y git-lfs
@@ -194,7 +194,7 @@ steps:
- name: tag-test-mysql
pull: always
image: golang:1.12
image: golang:1.13
commands:
- "curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash"
- apt-get install -y git-lfs
@@ -212,7 +212,7 @@ steps:
- name: test-mysql8
pull: always
image: golang:1.12
image: golang:1.13
commands:
- "curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash"
- apt-get install -y git-lfs
@@ -227,7 +227,7 @@ steps:
- name: test-pgsql
pull: always
image: golang:1.12
image: golang:1.13
commands:
- "curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash"
- apt-get install -y git-lfs
@@ -242,7 +242,7 @@ steps:
- name: test-mssql
pull: always
image: golang:1.12
image: golang:1.13
commands:
- "curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash"
- apt-get install -y git-lfs
@@ -257,7 +257,7 @@ steps:
- name: generate-coverage
pull: always
image: golang:1.12
image: golang:1.13
commands:
- make coverage
environment: