travis: also run unittests on all arches
There should be no difference, but do this as a sanity check. Signed-off-by: Tom Gundersen <teg@jklm.no>
This commit is contained in:
parent
d33fc5f010
commit
42dfbf7da6
1 changed files with 19 additions and 0 deletions
19
.travis.yml
19
.travis.yml
|
|
@ -9,6 +9,25 @@ addons:
|
|||
matrix:
|
||||
include:
|
||||
- name: unit-tests
|
||||
arch: amd64
|
||||
language: go
|
||||
go: 1.12.x
|
||||
env: GO111MODULE=on # needed even for Go 1.12
|
||||
script: go test -v ./...
|
||||
- name: unit-tests
|
||||
arch: arm64
|
||||
language: go
|
||||
go: 1.12.x
|
||||
env: GO111MODULE=on # needed even for Go 1.12
|
||||
script: go test -v ./...
|
||||
- name: unit-tests
|
||||
arch: ppc64le
|
||||
language: go
|
||||
go: 1.12.x
|
||||
env: GO111MODULE=on # needed even for Go 1.12
|
||||
script: go test -v ./...
|
||||
- name: unit-tests
|
||||
arch: s390x
|
||||
language: go
|
||||
go: 1.12.x
|
||||
env: GO111MODULE=on # needed even for Go 1.12
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue