diff options
author | k0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-02-09 00:32:55 +0000 |
---|---|---|
committer | k0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-02-09 00:32:55 +0000 |
commit | bf618557b1ce35094379448478261b9db6af5010 (patch) | |
tree | 8a9ed3fbf3b44d39f1d642ca814925bf95cd570d /.travis.yml | |
parent | 211ff9499d61c3eb56836a7f7f4e584e400a94c3 (diff) | |
download | ruby-bf618557b1ce35094379448478261b9db6af5010.tar.gz |
.travis.yml: force to execute JIT test on Travis
test_jit.rb: with environment variable RUBY_FORCE_TEST_JIT, we can force
to test JIT availability.
I wanted to have such CI, but Travis was the only option which I can
modify easily.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62327 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index f42408a775..f70de377cb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -61,7 +61,7 @@ before_script: script: - "make -s test TESTOPTS=--color=never" - - "make -s $JOBS test-all -o exts TESTOPTS='-q --color=never --job-status=normal'" + - "make -s $JOBS test-all -o exts TESTOPTS='-q --color=never --job-status=normal' RUBY_FORCE_TEST_JIT=1" - "make -s $JOBS test-spec MSPECOPT=-j" # Branch matrix. Not all branches are Travis-ready so we limit branches here. |