From 5ea6da1448375ff81b77c0590845b07418c6c547 Mon Sep 17 00:00:00 2001 From: Mark Ryan Date: Fri, 30 Nov 2018 15:20:26 +0100 Subject: [PATCH] Verify govmm builds on s390x This commit adds a single command to the travis script that checks that the s390x build works. We can't run the unit tests but at least we can check that everything builds on this architecture. Signed-off-by: Mark Ryan --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index f23679412b..1cfe2ef036 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,3 +20,4 @@ script: - go env - $GOPATH/bin/goveralls -v -service=travis-ci - gometalinter --tests --vendor --disable-all --enable=misspell --enable=vet --enable=ineffassign --enable=gofmt --enable=gocyclo --cyclo-over=15 --enable=golint --enable=errcheck --enable=deadcode --enable=staticcheck -enable=gas ./... + - GOARCH=s390x go install ./...