.travis.yml: try make install to test JIT

If header is not available, JIT won't be tested.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62295 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
k0kubun 2018-02-07 16:39:17 +00:00
parent 686424ea3e
commit 4d0ce03cfa

View File

@ -52,12 +52,12 @@ before_script:
- "chmod -R a-w ." - "chmod -R a-w ."
- "chmod u+w build config_1st config_2nd" - "chmod u+w build config_1st config_2nd"
- "cd build" - "cd build"
- "../configure -C --disable-install-doc --with-gcc=$CC $CONFIG_FLAG" - "../configure -C --disable-install-doc --prefix=/tmp/ruby-prefix --with-gcc=$CC $CONFIG_FLAG"
- "cp -pr config.cache config.status .ext/include ../config_1st" - "cp -pr config.cache config.status .ext/include ../config_1st"
- "make reconfig" - "make reconfig"
- "cp -pr config.cache config.status .ext/include ../config_2nd" - "cp -pr config.cache config.status .ext/include ../config_2nd"
- "(cd .. && exec diff -ru config_1st config_2nd)" - "(cd .. && exec diff -ru config_1st config_2nd)"
- "make -s $JOBS" - "make -s $JOBS && make install"
script: script:
- "make -s test TESTOPTS=--color=never" - "make -s test TESTOPTS=--color=never"