diff options
author | Wim <wim@42.be> | 2017-07-16 17:15:00 +0200 |
---|---|---|
committer | Wim <wim@42.be> | 2017-07-16 17:15:00 +0200 |
commit | 835a1ac3a623b5b163fbb8f8700ba1994d83a97c (patch) | |
tree | cc43309a1565c71d3d9fc14a2b82d65c5ab76069 /.travis.yml | |
parent | 20a7ef33f1ea78443f3aa2b773c9062299558c5a (diff) | |
download | matterbridge-msglm-835a1ac3a623b5b163fbb8f8700ba1994d83a97c.tar.gz matterbridge-msglm-835a1ac3a623b5b163fbb8f8700ba1994d83a97c.tar.bz2 matterbridge-msglm-835a1ac3a623b5b163fbb8f8700ba1994d83a97c.zip |
Update travis for crossplatform
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 3b8b2bfd..dd14e2df 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,8 +3,15 @@ go: - 1.7.x - 1.8.x - tip + +# we have everything vendored install: true +env: + - GOOS=linux GOARCH=amd64 + - GOOS=windows GOARCH=amd64 + - GOOS=linux GOARCH=arm + matrix: # It's ok if our code fails on unstable development versions of Go. allow_failures: @@ -26,7 +33,6 @@ before_script: # flunk the build and immediately stop. It's sorta like having # set -e enabled in bash. script: -script: - test -z $(gofmt -s -l $GO_FILES) # Fail if a .go file hasn't been formatted with gofmt #- go test -v -race $PKGS # Run all the tests with the race detector enabled - go vet $PKGS # go vet is the official Go static analyzer |