summaryrefslogtreecommitdiffhomepage
path: root/target
diff options
context:
space:
mode:
Diffstat (limited to 'target')
-rw-r--r--target/travis.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/target/travis.rb b/target/travis.rb
index 6af9c98d2..f4bef0a52 100644
--- a/target/travis.rb
+++ b/target/travis.rb
@@ -1,21 +1,5 @@
-MRuby::Build.new('debug') do |conf|
- toolchain :gcc
- yacc.command = ENV['YACC'] || 'bison'
- enable_debug
-
- # include all core GEMs
- conf.gembox 'full-core'
- conf.cc.flags += %w(-Werror=declaration-after-statement)
- conf.compilers.each do |c|
- c.defines += %w(MRB_GC_STRESS MRB_GC_FIXED_ARENA MRB_METHOD_CACHE)
- end
-
- build_mrbc_exec
-end
-
MRuby::Build.new('full-debug') do |conf|
toolchain :gcc
- yacc.command = ENV['YACC'] || 'bison'
enable_debug
# include all core GEMs
@@ -28,7 +12,6 @@ end
MRuby::Build.new do |conf|
toolchain :gcc
- yacc.command = ENV['YACC'] || 'bison'
# include all core GEMs
conf.gembox 'full-core'
@@ -42,7 +25,6 @@ end
MRuby::Build.new('cxx_abi') do |conf|
toolchain :gcc
- yacc.command = ENV['YACC'] || 'bison'
conf.gembox 'full-core'
conf.cc.flags += %w(-fpermissive)