We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf634d3 commit d3cd88bCopy full SHA for d3cd88b
.travis.yml
@@ -9,15 +9,30 @@ go:
9
- 1.12
10
- tip
11
12
+os:
13
+ - linux
14
+ - linux-ppc64le
15
+
16
17
before_install:
18
- "if [[ $TRAVIS_GO_VERSION == 1.11 ]]; then go get -u golang.org/x/lint/golint; fi"
19
20
install:
21
- go get -v -t ./...
22
23
script:
- - go test -race -cpu 1,4 -v
- - go test -race -v -tags appengine
24
+ - |
25
+ if [ $(arch) == "ppc64le" ]; then
26
+ go test -cpu 1,4 -v
27
+ else
28
+ go test -race -cpu 1,4 -v
29
+ fi
30
31
32
+ go test -v -tags appengine
33
34
+ go test -race -v -tags appengine
35
36
- "if [[ $TRAVIS_GO_VERSION == 1.11 ]]; then go vet ./...; fi"
37
- "if [[ $TRAVIS_GO_VERSION == 1.11 ]]; then golint .; fi"
38
0 commit comments