TravisBundleCache
Cache the gem bundle for speedy travis builds
Usage
- Set up a bucket on S3 in the US Standard region (us-east-1) (and possibly a new user via IAM)
Install the travis gem
gem install travisLog into Travis (from inside your project respository directory)
travis login --autoEncrypt your S3 credentials (be sure to add your actual credentials inside the double quotes)
travis encrypt AWS_S3_KEY="" AWS_S3_SECRET="" --addSetup your .travis.yml to include the following
env: global: - BUNDLE_ARCHIVE="your-bundle-name" - AWS_S3_REGION="us-east-1" - AWS_S3_BUCKET="your-bucket-name" before_install: - "echo 'gem: --no-ri --no-rdoc' > ~/.gemrc" - "gem install travis_bundle_cache" install: travis_bundle_install after_script: - "travis_bundle_cache"
Enjoy faster builds
Contributions
TravisBundleCache is open source and contributions from the community are encouraged! No contribution is too small. Please consider:
- adding an awesome feature
- fixing a terrible bug
- updating documentation
- fixing a not-so-bad bug
- fixing typos
For the best chance of having your changes merged, please:
- Ask us! We'd love to hear what you're up to.
- Fork the project.
- Commit your changes and tests (if applicable (they're applicable)).
- Submit a pull request with a thorough explanation and at least one animated GIF.
Thanks
Most of the credit for this gem goes to Random Errata and this blog post
