diff options
| author | Zachary Scott <[email protected]> | 2015-11-17 12:03:13 +0900 |
|---|---|---|
| committer | Zachary Scott <[email protected]> | 2015-11-17 12:03:13 +0900 |
| commit | 8454e9006e60751e3ecfb8f57c1148d532b80829 (patch) | |
| tree | b0aee869531ca3162d747278c6ade896a29c1f65 | |
| parent | acf2fb29cd8101f842591fa3e42787fcbf4d45a0 (diff) | |
| download | mruby-8454e9006e60751e3ecfb8f57c1148d532b80829.tar.gz mruby-8454e9006e60751e3ecfb8f57c1148d532b80829.zip | |
Enable full-debug build on travis using `MRB_ENABLE_DEBUG_HOOK`
| -rw-r--r-- | travis_config.rb | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/travis_config.rb b/travis_config.rb index 4ee6d752b..c2c6e0c6a 100644 --- a/travis_config.rb +++ b/travis_config.rb @@ -12,6 +12,17 @@ MRuby::Build.new('debug') do |conf| build_mrbc_exec end +MRuby::Build.new('full-debug') do |conf| + toolchain :gcc + enable_debug + + # include all core GEMs + conf.gembox 'full-core' + conf.cc.defines = %w(MRB_ENABLE_DEBUG_HOOK) + + conf.enable_test +end + MRuby::Build.new do |conf| toolchain :gcc |
