Advertisement
Guest User

Untitled

a guest
Dec 2nd, 2016
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. ---
  2. sudo: false
  3. language: ruby
  4. cache: bundler
  5. #bundler_args: --without system_tests development
  6. before_install:
  7. - bundle -v
  8. - rm Gemfile.lock || true
  9. - gem update --system
  10. - gem update bundler
  11. - gem --version
  12. - bundle -v
  13. script:
  14. - 'bundle exec rake $CHECK'
  15. matrix:
  16. fast_finish: true
  17. include:
  18. - rvm: 1.9.3
  19. env: PUPPET_VERSION="~> 3.8" STRICT_VARIABLES="yes" CHECK=test
  20. - rvm: 1.9.3
  21. env: PUPPET_VERSION="~> 3.8" STRICT_VARIABLES="yes" FUTURE_PARSER="yes" CHECK=test
  22. - rvm: 2.1.9
  23. env: PUPPET_VERSION="~> 3.8" STRICT_VARIABLES="yes" CHECK=test
  24. - rvm: 2.1.9
  25. env: PUPPET_VERSION="~> 4.0" CHECK=test
  26. - rvm: 2.2.5
  27. env: PUPPET_VERSION="~> 4.0" CHECK=test
  28. - rvm: 2.3.1
  29. env: PUPPET_VERSION="~> 4.0" CHECK=build DEPLOY_TO_FORGE=yes
  30. - rvm: 2.3.1
  31. env: PUPPET_VERSION="~> 4.0" CHECK=rubocop
  32. - rvm: 2.3.1
  33. env: PUPPET_VERSION="~> 4.0" CHECK=test
  34. - rvm: 2.4.0-preview1
  35. env: PUPPET_VERSION="~> 4.0" CHECK=test
  36. allow_failures:
  37. - rvm: 2.4.0-preview1
  38. notifications:
  39. email: false
  40. #deploy:
  41. # provider: puppetforge
  42. # deploy:
  43. # branch: master
  44. # user: someuser
  45. # password:
  46. # secure: "somepasswordhash"
  47. # on:
  48. # tags: true
  49. # all_branches is required to use tags
  50. # all_branches: true
  51. # Only publish the build marked with "DEPLOY_TO_FORGE"
  52. # condition: "$DEPLOY_TO_FORGE = yes"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement