diff options
| author | KOBAYASHI Shuji <[email protected]> | 2020-12-16 21:56:32 +0900 |
|---|---|---|
| committer | KOBAYASHI Shuji <[email protected]> | 2020-12-16 21:56:32 +0900 |
| commit | d432688d9ff000fbe69e5ec8899fab340a7859a2 (patch) | |
| tree | 8f2c3cc719523452906a0e636d42e0730b6c69ee /build_config/travis.rb | |
| parent | 1b7197622f770ce4ae3f3f2aaae1ea427ff3b902 (diff) | |
| download | mruby-d432688d9ff000fbe69e5ec8899fab340a7859a2.tar.gz mruby-d432688d9ff000fbe69e5ec8899fab340a7859a2.zip | |
Rename build configuration files for CI
Currently, there are build configuration files for CI, `travis.rb` and
`appveyor.rb`, but they are used for GCC/Clang and MSVC, not for Travis CI
and Appveyor, respectively.
Therefore, rename them to `gcc-clang.rb` and `msvc.rb`, respectively, and
move them under `build_config/ci/` to clarify that they are for CI.
Diffstat (limited to 'build_config/travis.rb')
| -rw-r--r-- | build_config/travis.rb | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/build_config/travis.rb b/build_config/travis.rb deleted file mode 100644 index 7da8c1bf4..000000000 --- a/build_config/travis.rb +++ /dev/null @@ -1,37 +0,0 @@ -MRuby::Build.new('full-debug') do |conf| - conf.toolchain - conf.enable_debug - - # include all core GEMs - conf.gembox 'full-core' - conf.cc.defines += %w(MRB_GC_STRESS MRB_USE_DEBUG_HOOK) - - conf.enable_test -end - -MRuby::Build.new do |conf| - conf.toolchain - - # include all core GEMs - conf.gembox 'full-core' - conf.compilers.each do |c| - c.defines += %w(MRB_GC_FIXED_ARENA) - end - conf.enable_bintest - conf.enable_test -end - -MRuby::Build.new('cxx_abi') do |conf| - conf.toolchain - - conf.gembox 'full-core' - conf.cc.flags += %w(-fpermissive) - conf.compilers.each do |c| - c.defines += %w(MRB_GC_FIXED_ARENA) - end - conf.enable_test - - conf.enable_cxx_abi - - conf.build_mrbc_exec -end |
