Commit 53ea8abe authored by KOBAYASHI Shuji's avatar KOBAYASHI Shuji

Revert part of "Start GitHub Actions" (4ce3997c)

Because some changes have been overridden.
parent 6445e468
...@@ -276,14 +276,6 @@ EOS ...@@ -276,14 +276,6 @@ EOS
end end
end end
def cygwin_filename(name)
if name.is_a?(Array)
name.flatten.map { |n| cygwin_filename(n) }
else
`cygpath -w "#{filename(name)}"`.strip
end
end
def exefile(name) def exefile(name)
if name.is_a?(Array) if name.is_a?(Array)
name.flatten.map { |n| exefile(n) } name.flatten.map { |n| exefile(n) }
......
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| MRuby::Build.new('full-debug') do |conf|
toolchain :gcc toolchain :gcc
yacc.command = ENV['YACC'] || 'bison'
enable_debug enable_debug
# include all core GEMs # include all core GEMs
...@@ -28,7 +12,6 @@ end ...@@ -28,7 +12,6 @@ end
MRuby::Build.new do |conf| MRuby::Build.new do |conf|
toolchain :gcc toolchain :gcc
yacc.command = ENV['YACC'] || 'bison'
# include all core GEMs # include all core GEMs
conf.gembox 'full-core' conf.gembox 'full-core'
...@@ -42,7 +25,6 @@ end ...@@ -42,7 +25,6 @@ end
MRuby::Build.new('cxx_abi') do |conf| MRuby::Build.new('cxx_abi') do |conf|
toolchain :gcc toolchain :gcc
yacc.command = ENV['YACC'] || 'bison'
conf.gembox 'full-core' conf.gembox 'full-core'
conf.cc.flags += %w(-fpermissive) conf.cc.flags += %w(-fpermissive)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment