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

Enable Ruby 2.3 in Travis, make it default suite #143

Merged
merged 1 commit into from
Aug 26, 2016
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
17 changes: 9 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,24 +20,25 @@ branches:

matrix:
include:
- rvm: 2.1
- rvm: 2.0
- rvm: 2.2
- rvm: 2.2.5
- rvm: 2.1.9
- rvm: 2.0.0-p648
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

+1

- rvm: 2.3.1
script: bundle exec rake $SUITE
env: SUITE="test"
- rvm: 2.2
- rvm: 2.3.1
script: bundle exec rake $SUITE
env: SUITE="test:docker config=test-travis-debian.yml"
- rvm: 2.2
- rvm: 2.3.1
script: bundle exec rake $SUITE
env: SUITE="test:docker config=test-travis-centos.yml"
- rvm: 2.2
- rvm: 2.3.1
script: bundle exec rake $SUITE
env: SUITE="test:docker config=test-travis-oel.yml"
- rvm: 2.2
- rvm: 2.3.1
script: bundle exec rake $SUITE
env: SUITE="test:docker config=test-travis-fedora.yml"
- rvm: 2.2
- rvm: 2.3.1
script: bundle exec rake $SUITE
env: SUITE="test:docker config=test-travis-ubuntu.yml"

Expand Down
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ environment:
- ruby_version: "21"
Copy link
Contributor

@chris-rock chris-rock Aug 25, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lets add a local run for 23 as well.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@chris-rock not sure what you mean? The matrix in the new world:

    - ruby_version: "21"
      train_target: winrm://test_user@localhost:5985

    - ruby_version: "23"
      train_target: winrm://test_user@localhost:5985

    - ruby_version: "23"
      train_ssl: true
      train_target: winrm://test_user@localhost:5986

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i.e. I'm not sure what a local run is--I just mindlessly replaced 22 with 23. Or did you mean add a local run for 22 as well?

train_target: winrm://test_user@localhost:5985

- ruby_version: "22"
- ruby_version: "23"
train_target: winrm://test_user@localhost:5985

- ruby_version: "22"
- ruby_version: "23"
train_ssl: true
train_target: winrm://test_user@localhost:5986

Expand Down