Skip to content

Commit

Permalink
Exclude megacheck for Go 1.9 for now
Browse files Browse the repository at this point in the history
  • Loading branch information
kozlovic committed Aug 25, 2017
1 parent 0496750 commit 3179575
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .travis.yml
Expand Up @@ -15,7 +15,8 @@ before_script:
- $(exit $(go fmt $EXCLUDE_VENDOR | wc -l))
- go vet $EXCLUDE_VENDOR
- misspell -error -locale US .
- megacheck $EXCLUDE_VENDOR
# Temporary fix, it seems megacheck fails with weird import errors on Go 1.9
- if [[ "$TRAVIS_GO_VERSION" != 1.9 ]]; then megacheck $EXCLUDE_VENDOR; fi
- if [[ "$TRAVIS_GO_VERSION" == 1.8.* ]]; then ./scripts/cross_compile.sh $TRAVIS_TAG; fi
script:
- go test -i -race $EXCLUDE_VENDOR
Expand Down

0 comments on commit 3179575

Please sign in to comment.