Skip to content

Instantly share code, notes, and snippets.

@jfryman
Created December 2, 2016 13:24
Show Gist options
  • Save jfryman/c1b6c9ffa2d3d27252d4ce5ccf9609d9 to your computer and use it in GitHub Desktop.
Save jfryman/c1b6c9ffa2d3d27252d4ce5ccf9609d9 to your computer and use it in GitHub Desktop.
---
sudo: false
language: ruby
cache: bundler
#bundler_args: --without system_tests development
before_install:
- bundle -v
- rm Gemfile.lock || true
- gem update --system
- gem update bundler
- gem --version
- bundle -v
script:
- 'bundle exec rake $CHECK'
matrix:
fast_finish: true
include:
- rvm: 1.9.3
env: PUPPET_VERSION="~> 3.8" STRICT_VARIABLES="yes" CHECK=test
- rvm: 1.9.3
env: PUPPET_VERSION="~> 3.8" STRICT_VARIABLES="yes" FUTURE_PARSER="yes" CHECK=test
- rvm: 2.1.9
env: PUPPET_VERSION="~> 3.8" STRICT_VARIABLES="yes" CHECK=test
- rvm: 2.1.9
env: PUPPET_VERSION="~> 4.0" CHECK=test
- rvm: 2.2.5
env: PUPPET_VERSION="~> 4.0" CHECK=test
- rvm: 2.3.1
env: PUPPET_VERSION="~> 4.0" CHECK=build DEPLOY_TO_FORGE=yes
- rvm: 2.3.1
env: PUPPET_VERSION="~> 4.0" CHECK=rubocop
- rvm: 2.3.1
env: PUPPET_VERSION="~> 4.0" CHECK=test
- rvm: 2.4.0-preview1
env: PUPPET_VERSION="~> 4.0" CHECK=test
allow_failures:
- rvm: 2.4.0-preview1
notifications:
email: false
#deploy:
# provider: puppetforge
# deploy:
# branch: master
# user: someuser
# password:
# secure: "somepasswordhash"
# on:
# tags: true
# all_branches is required to use tags
# all_branches: true
# Only publish the build marked with "DEPLOY_TO_FORGE"
# condition: "$DEPLOY_TO_FORGE = yes"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment