add support for Go 1.16

This commit is contained in:
Marten Seemann
2020-12-23 15:56:29 +07:00
parent 68e8c4d1dd
commit 57e3f55279
12 changed files with 151 additions and 5 deletions

View File

@@ -3,13 +3,14 @@ jobs:
crosscompile:
strategy:
matrix:
go: [ "1.14.x", "1.15.x" ]
go: [ "1.14.x", "1.15.x", "1.16.0-beta1" ]
runs-on: ubuntu-latest
name: "Cross Compilation (Go ${{matrix.go}})"
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
stable: !contains(${{ matrix.go }}, "beta") && !contains(${{ matrix.go }}, "rc")
go-version: ${{ matrix.go }}
- name: Install build utils
run: sudo apt-get install -y gcc-multilib