Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

run tests on latest ruby versions #464

Merged
merged 2 commits into from
Apr 28, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions config_defaults.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
docker_sets:
docker_defaults:
# values will replace @@SET@@ with the docker_sets' value
rvm: 2.4.3
rvm: 2.5.1
sudo: required
dist: trusty
services: docker
Expand All @@ -13,16 +13,16 @@
- rvm: 2.1.9
env: PUPPET_VERSION="~> 4.0" CHECK=test PARALLEL_TEST_PROCESSORS=12
bundler_args: --without system_tests development release
- rvm: 2.4.3
- rvm: 2.4.4
env: PUPPET_VERSION="~> 5.0" CHECK=test
bundler_args: --without system_tests development release
- rvm: 2.5.0
- rvm: 2.5.1
env: PUPPET_VERSION="~> 5.0" CHECK=test_with_coveralls
bundler_args: --without system_tests development release
- rvm: 2.4.3
- rvm: 2.4.4
env: PUPPET_VERSION="~> 5.0" CHECK=rubocop
bundler_args: --without system_tests development release
- rvm: 2.4.3
- rvm: 2.5.1
env: PUPPET_VERSION="~> 5.0" CHECK=build DEPLOY_TO_FORGE=yes
bundler_args: --without system_tests development release
Gemfile:
Expand Down
5 changes: 4 additions & 1 deletion moduleroot/.travis.yml.erb
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,11 @@ addons:
<%- end -%>
<%- end -%>
<%- end -%>
# related to https://github.com/rubygems/rubygems/issues/2123
before_install:
- rm -f Gemfile.lock
- 'rm -f Gemfile.lock'
- 'gem update --system'
- 'gem install bundler'
script:
- 'bundle exec rake $CHECK'
matrix:
Expand Down