mirror of
https://github.com/adnanh/webhook.git
synced 2025-05-12 08:34:43 +00:00
Merge pull request #363 from moorereason/feature/arm64-travisci
Add arm64 to Travis CI
This commit is contained in:
commit
c47c06e822
1 changed files with 11 additions and 3 deletions
14
.travis.yml
14
.travis.yml
|
@ -3,20 +3,28 @@ language: go
|
||||||
go:
|
go:
|
||||||
- 1.12.x
|
- 1.12.x
|
||||||
- 1.13.x
|
- 1.13.x
|
||||||
- tip
|
- master
|
||||||
|
|
||||||
os:
|
os:
|
||||||
- linux
|
- linux
|
||||||
- osx
|
- osx
|
||||||
- windows
|
- windows
|
||||||
|
|
||||||
|
arch:
|
||||||
|
- amd64
|
||||||
|
- arm64
|
||||||
|
|
||||||
matrix:
|
matrix:
|
||||||
fast_finish: true
|
fast_finish: true
|
||||||
allow_failures:
|
allow_failures:
|
||||||
- go: tip
|
- go: master
|
||||||
exclude:
|
exclude:
|
||||||
- os: windows
|
- os: windows
|
||||||
go: tip
|
go: master
|
||||||
|
- os: windows
|
||||||
|
arch: arm64
|
||||||
|
- os: osx
|
||||||
|
arch: arm64
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- go get -d -v -t ./...
|
- go get -d -v -t ./...
|
||||||
|
|
Loading…
Add table
Reference in a new issue