aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authork0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-02-07 16:39:17 +0000
committerk0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-02-07 16:39:17 +0000
commit84565d730e9d0d140bd4b136b81f8dd48ec7ce49 (patch)
tree8273c7ae9798754ff87edbb36b22d336592e98fd /.travis.yml
parentf8f51f4da8a6adacb7bccdc745598076752dc2cf (diff)
downloadruby-84565d730e9d0d140bd4b136b81f8dd48ec7ce49.tar.gz
.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
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 1957be90ec..f42408a775 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -52,12 +52,12 @@ before_script:
- "chmod -R a-w ."
- "chmod u+w build config_1st config_2nd"
- "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"
- "make reconfig"
- "cp -pr config.cache config.status .ext/include ../config_2nd"
- "(cd .. && exec diff -ru config_1st config_2nd)"
- - "make -s $JOBS"
+ - "make -s $JOBS && make install"
script:
- "make -s test TESTOPTS=--color=never"