From d05911cdcba36632daa09206075a13bc37f47397 Mon Sep 17 00:00:00 2001 From: Cameron Moore Date: Mon, 9 Dec 2019 16:50:19 -0600 Subject: [PATCH 1/2] Add arm64 to Travis CI --- .travis.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.travis.yml b/.travis.yml index 41bd02d..6880d2e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,6 +10,10 @@ os: - osx - windows +arch: + - amd64 + - arm64 + matrix: fast_finish: true allow_failures: @@ -17,6 +21,10 @@ matrix: exclude: - os: windows go: tip + - os: windows + arch: arm64 + - os: osx + arch: arm64 install: - go get -d -v -t ./... From bf3d042da6525ec030af5c2c9d220b219c39e5b1 Mon Sep 17 00:00:00 2001 From: Cameron Moore Date: Mon, 9 Dec 2019 16:57:55 -0600 Subject: [PATCH 2/2] Use master instead of tip --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 6880d2e..9609d8a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,7 @@ language: go go: - 1.12.x - 1.13.x - - tip + - master os: - linux @@ -17,10 +17,10 @@ arch: matrix: fast_finish: true allow_failures: - - go: tip + - go: master exclude: - os: windows - go: tip + go: master - os: windows arch: arm64 - os: osx