diff options
| author | Zachary Scott <[email protected]> | 2015-09-01 20:54:27 -0400 |
|---|---|---|
| committer | Zachary Scott <[email protected]> | 2015-09-01 20:54:27 -0400 |
| commit | 80598f40bf23d310530427808885826e4436330d (patch) | |
| tree | be1f90adb239d893199ecf3077dc36b775a70a05 | |
| parent | 133d57cb0d989b956bac899ccc5171351d15fc06 (diff) | |
| download | mruby-80598f40bf23d310530427808885826e4436330d.tar.gz mruby-80598f40bf23d310530427808885826e4436330d.zip | |
mruby-test should be opt-in
| -rw-r--r-- | mrbgems/full-core.gembox | 2 | ||||
| -rw-r--r-- | travis_config.rb | 10 |
2 files changed, 11 insertions, 1 deletions
diff --git a/mrbgems/full-core.gembox b/mrbgems/full-core.gembox index d1ff5f414..9a5b7081b 100644 --- a/mrbgems/full-core.gembox +++ b/mrbgems/full-core.gembox @@ -4,6 +4,6 @@ MRuby::GemBox.new do |conf| Dir.glob("#{root}/mrbgems/mruby-*/mrbgem.rake") do |x| g = File.basename File.dirname x - conf.gem :core => g unless g =~ /^mruby-(print|sprintf|bin-debugger)$/ + conf.gem :core => g unless g =~ /^mruby-(print|sprintf|bin-debugger|test)$/ end end diff --git a/travis_config.rb b/travis_config.rb index 2b4059cf1..458473f96 100644 --- a/travis_config.rb +++ b/travis_config.rb @@ -38,3 +38,13 @@ MRuby::Build.new('cxx_abi') do |conf| build_mrbc_exec end + +MRuby::Build.new('test') do |conf| + toolchain :gcc + + enable_debug + conf.enable_bintest + + conf.gembox 'full-core' + conf.gem :core => "mruby-test" +end |
