29 lines
537 B
YAML
29 lines
537 B
YAML
|
language: go
|
||
|
matrix:
|
||
|
include:
|
||
|
- os: linux
|
||
|
go: tip
|
||
|
- os: linux
|
||
|
go: tip
|
||
|
env:
|
||
|
- JS=1
|
||
|
- os: osx
|
||
|
go: tip
|
||
|
- os: windows
|
||
|
go: 1.x
|
||
|
#Added power jobs
|
||
|
- os: linux
|
||
|
go: tip
|
||
|
arch: ppc64le
|
||
|
- os: linux
|
||
|
go: tip
|
||
|
arch: ppc64le
|
||
|
env:
|
||
|
- JS=1
|
||
|
script: bash .travis.sh script
|
||
|
notifications:
|
||
|
webhooks: https://coveralls.io/webhook
|
||
|
email:
|
||
|
on_success: never
|
||
|
on_failure: change
|