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

Speed up truffleruby on CI. #707

Merged
merged 1 commit into from Jun 10, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 7 additions & 7 deletions .travis.yml
@@ -1,7 +1,13 @@
dist: trusty
language: ruby
matrix:
jobs:
include:
- name: jruby-9.1.15.0 / Parser tests
rvm: jruby-9.1.15.0
script: bundle exec rake test
- name: truffleruby / Parser tests
rvm: truffleruby
script: TRUFFLERUBYOPT=--engine.Mode=latency bundle exec rake test
- name: 2.4.10 / Parser tests
rvm: 2.4.10
script: bundle exec rake test_cov
Expand All @@ -17,12 +23,6 @@ matrix:
- name: ruby-head / Parser tests
rvm: ruby-head
script: bundle exec rake test_cov
- name: jruby-9.1.15.0 / Parser tests
rvm: jruby-9.1.15.0
script: bundle exec rake test
- name: truffleruby / Parser tests
rvm: truffleruby
script: bundle exec rake test
- name: 2.5.8 / Rubocop tests
rvm: 2.5.8
script: ./ci/run_rubocop_specs
Expand Down