build: replace go 1.16-rc1 by 1.16.x (#5036)

This commit is contained in:
Ivan Andreev 2021-02-17 00:37:30 +00:00 committed by GitHub
parent 863bd93c30
commit f5066a09cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 6 deletions

View File

@ -24,7 +24,7 @@ jobs:
include:
- job_name: linux
os: ubuntu-latest
go: '1.16.0-rc1'
go: '1.16.x'
gotags: cmount
build_flags: '-include "^linux/"'
check: true
@ -34,7 +34,7 @@ jobs:
- job_name: mac_amd64
os: macOS-latest
go: '1.16.0-rc1'
go: '1.16.x'
gotags: 'cmount'
build_flags: '-include "^darwin/amd64" -cgo'
quicktest: true
@ -43,14 +43,14 @@ jobs:
- job_name: mac_arm64
os: macOS-latest
go: '1.16.0-rc1'
go: '1.16.x'
gotags: 'cmount'
build_flags: '-include "^darwin/arm64" -cgo -macos-arch arm64 -macos-sdk macosx11.1 -cgo-cflags=-I/usr/local/include -cgo-ldflags=-L/usr/local/lib'
deploy: true
- job_name: windows_amd64
os: windows-latest
go: '1.16.0-rc1'
go: '1.16.x'
gotags: cmount
build_flags: '-include "^windows/amd64" -cgo'
build_args: '-buildmode exe'
@ -60,7 +60,7 @@ jobs:
- job_name: windows_386
os: windows-latest
go: '1.16.0-rc1'
go: '1.16.x'
gotags: cmount
goarch: '386'
cgo: '1'
@ -71,7 +71,7 @@ jobs:
- job_name: other_os
os: ubuntu-latest
go: '1.16.0-rc1'
go: '1.16.x'
build_flags: '-exclude "^(windows/|darwin/|linux/)"'
compile_all: true
deploy: true