Skip to content

Commit

Permalink
s390x: add s390x travis support
Browse files Browse the repository at this point in the history
Since we have travis support for s390x. Let's enable it

Signed-off-by: Alice Frosi <afrosi@de.ibm.com>
  • Loading branch information
Alice Frosi committed Dec 17, 2019
1 parent 8cba5a8 commit 6d6b2d8
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
5 changes: 3 additions & 2 deletions .travis.yml
Expand Up @@ -4,6 +4,9 @@ go:
- "1.10"
- "1.11"
- tip
arch:
- amd64
- s390x

go_import_path: github.com/intel/govmm

Expand All @@ -20,5 +23,3 @@ 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 ./...
- go test --tags s390x_test ./...
2 changes: 1 addition & 1 deletion qemu/qemu_arch_base.go
@@ -1,4 +1,4 @@
// +build !s390x,!s390x_test
// +build !s390x

/*
// Copyright contributors to the Virtual Machine Manager for Go project
Expand Down
2 changes: 1 addition & 1 deletion qemu/qemu_arch_base_test.go
@@ -1,4 +1,4 @@
// +build !s390x,!s390x_test
// +build !s390x

/*
// Copyright contributors to the Virtual Machine Manager for Go project
Expand Down
2 changes: 1 addition & 1 deletion qemu/qemus390x.go → qemu/qemu_s390x.go
@@ -1,4 +1,4 @@
// +build s390x s390x_test
// +build s390x

/*
// Copyright contributors to the Virtual Machine Manager for Go project
Expand Down
2 changes: 1 addition & 1 deletion qemu/qemus390x_test.go → qemu/qemu_s390x_test.go
@@ -1,4 +1,4 @@
// +build s390x s390x_test
// +build s390x

/*
// Copyright contributors to the Virtual Machine Manager for Go project
Expand Down

0 comments on commit 6d6b2d8

Please sign in to comment.