Skip to content

Commit

Permalink
ci: reduce size of CI matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
sbinet committed Jan 15, 2019
1 parent 2772d12 commit 64ebeea
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,6 @@ go:
- 1.11.x
- master

env:
- TAGS=""
- TAGS="-tags bounds"
- TAGS="-tags noasm"
- TAGS="-tags appengine"

matrix:
fast_finish: true
allow_failures:
Expand All @@ -40,7 +34,9 @@ script:
- go get -d -t -v ./...
- go build -v ./...
- go test -v ./...
- go test -a $TAGS -v ./...
- go test -a -tags bounds -v ./...
- go test -a -tags noasm -v ./...
- go test -a -tags appengine -v ./...
- if [[ $TRAVIS_SECURE_ENV_VARS = "true" ]]; then bash ./.travis/test-coverage.sh; fi
- ${TRAVIS_BUILD_DIR}/.travis/check-imports.sh
# This is run last since it alters the tree.
Expand Down

0 comments on commit 64ebeea

Please sign in to comment.