Thumbnail

rani/matterbridge.git

Clone URL: https://git.buni.party/rani/matterbridge.git

commit 274c380e9de49067c6408786400e04690c6c0abf Author: Wim <wim@42.be> Date: Sun Jul 16 17:15:00 2017 +0000 Update travis for crossplatform diff --git a/.travis.yml b/.travis.yml index 3b8b2bf..dd14e2d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -38 +315 @@ 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: @@ -257 +326 @@ before_script:  # Anything in before_script: that returns a nonzero exit code will  # 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