walle / lll

Line length linter
MIT License
65 stars 9 forks source link

Unable to successfully install lll under Golang 1.5 within Travis CI #3

Closed wchrisjohnson closed 8 years ago

wchrisjohnson commented 8 years ago

I'm trying to get a PR I've put up to successfully get thru Travis for Go 1.5: https://travis-ci.org/antonlindstrom/pgstore/jobs/151870208

It appears this package isn't installing properly. I'm not clear whether this is an issue with your package in some way, or the gometalinter package which is installing it. Could you give some direction wrt that please?

Thank you!

wchrisjohnson commented 8 years ago

bump - anyone?

walle commented 8 years ago

Sorry abot the late reply. Looks like it is the lll package from the logs. Will take a look at it. Thanks for reporting!

On 15 Aug 2016 21:40, "Chris Johnson" notifications@github.com wrote:

bump - anyone?

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/walle/lll/issues/3#issuecomment-239906113, or mute the thread https://github.com/notifications/unsubscribe-auth/AALqoDBb-pkStIjKBWjLuG7ESN0i7es8ks5qgMCwgaJpZM4JjTly .

wchrisjohnson commented 8 years ago

Thanks @walle !!

walle commented 8 years ago

Hi @wchrisjohnson I think I figured out the issue. The only build that fails is for go 1.5, this is because I'm vendoring the dependencies for lll, which is only available since go 1.6. One thing you could try is to use/set the GO15VENDOREXPERIMENT=1 environment variable for the build on go 1.5.

wchrisjohnson commented 8 years ago

Yep - this worked for me - thanks!

walle commented 8 years ago

No problem, glad it worked out for you!