Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions build_config/ci/gcc-clang.rb
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,18 @@

conf.enable_cxx_abi
end

MRuby::Build.new('default') do |conf|
conf.toolchain

# The one build here on the default gembox. It leaves out mruby-encoding,
# which is what defines MRB_UTF8_STRING, so its strings index by byte. The
# tests written as the byte-indexed mirror of the UTF-8 ones (String#scrub
# degrading to a no-op, the byte-counting halves of mruby-regexp and
# mruby-string-ext) run nowhere else: every other build in CI, here and in
# ci/msvc, takes full-core. Tests only, since the binaries this gembox adds
# are the same ones the bintest above already covers.
conf.gembox 'default'

conf.enable_test
end
Loading