We were unable to load Disqus. If you are a moderator please see our troubleshooting guide.

Conor • 8 years ago

Thanks for the write-up! Very helpful! Just a couple notes:

1. If you're adding a Makefile to your project, you need to specify `install` in your .travis.yml (see http://docs.travis-ci.com/u...
2. I had to add `before_deploy: make release` to my .travis.yml (see http://docs.travis-ci.com/u...

Thanks again! BTW, you can see the .travis.yml I was working on here: https://github.com/conortm/...

barnybug • 8 years ago

Hi, I think your situation arises because you are overriding the 'script' step. With just a Makefile and no script specified travis runs 'make' as the script step, which is why the above should work. But this behaviour is a bit magic, so never hurts to be explicit.

Conor • 8 years ago

Ah, I see! Thanks, barnybug!