build: use go1.16-rc1 as default compiler

This commit is contained in:
Nick Craig-Wood 2021-02-04 09:01:36 +00:00
parent 993146375e
commit 84c785bc36
1 changed files with 8 additions and 8 deletions

View File

@ -19,12 +19,12 @@ jobs:
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
job_name: ['linux', 'mac', 'windows_amd64', 'windows_386', 'other_os', 'go1.13', 'go1.14', 'go1.16'] job_name: ['linux', 'mac', 'windows_amd64', 'windows_386', 'other_os', 'go1.13', 'go1.14', 'go1.15']
include: include:
- job_name: linux - job_name: linux
os: ubuntu-latest os: ubuntu-latest
go: '1.15.x' go: '1.16.0-rc1'
gotags: cmount gotags: cmount
build_flags: '-include "^linux/"' build_flags: '-include "^linux/"'
check: true check: true
@ -34,7 +34,7 @@ jobs:
- job_name: mac - job_name: mac
os: macOS-latest os: macOS-latest
go: '1.15.x' go: '1.16.0-rc1'
gotags: 'cmount' gotags: 'cmount'
build_flags: '-include "^darwin/amd64" -cgo' build_flags: '-include "^darwin/amd64" -cgo'
quicktest: true quicktest: true
@ -43,7 +43,7 @@ jobs:
- job_name: windows_amd64 - job_name: windows_amd64
os: windows-latest os: windows-latest
go: '1.15.x' go: '1.16.0-rc1'
gotags: cmount gotags: cmount
build_flags: '-include "^windows/amd64" -cgo' build_flags: '-include "^windows/amd64" -cgo'
build_args: '-buildmode exe' build_args: '-buildmode exe'
@ -53,7 +53,7 @@ jobs:
- job_name: windows_386 - job_name: windows_386
os: windows-latest os: windows-latest
go: '1.15.x' go: '1.16.0-rc1'
gotags: cmount gotags: cmount
goarch: '386' goarch: '386'
cgo: '1' cgo: '1'
@ -64,7 +64,7 @@ jobs:
- job_name: other_os - job_name: other_os
os: ubuntu-latest os: ubuntu-latest
go: '1.15.x' go: '1.16.0-rc1'
build_flags: '-exclude "^(windows/|darwin/amd64|linux/)"' build_flags: '-exclude "^(windows/|darwin/amd64|linux/)"'
compile_all: true compile_all: true
deploy: true deploy: true
@ -80,9 +80,9 @@ jobs:
quicktest: true quicktest: true
racequicktest: true racequicktest: true
- job_name: go1.16 - job_name: go1.15
os: ubuntu-latest os: ubuntu-latest
go: '1.16.0-rc1' go: '1.15.x'
quicktest: true quicktest: true
racequicktest: true racequicktest: true