You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
416 B

dist: xenial
language: go
go:
- "1.12"
# Travis overrides the GOARCH env var probably in its `travis_setup_go`
# function, so we need a work around...
jobs:
include:
- name: "Unit Tests 64 bit arch"
env:
- XGOARCH="amd64"
- name: "Unit Test 32 bit arch"
env:
- XGOARCH="386"
env:
- GO111MODULE=on
before_install:
- export GOARCH=$XGOARCH
script:
- go test -v ./...