Merge pull request #4913 from shuujii/use-rake-instead-of-minirake-in-.gitlab-ci.yml

Use `rake` instead of `minirake` in `.gitlab-ci.yml`
This commit is contained in:
Yukihiro "Matz" Matsumoto
2019-12-30 22:24:08 +09:00
committed by GitHub
2 changed files with 1602 additions and 402 deletions
+1601 -401
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -80,7 +80,7 @@ task :gitlab_config do
_info += int_conf['16'] ? 'int16 ' : ''
_info += int_conf['64'] ? 'int64 ' : ''
_info += boxing_conf['NAN'] ? 'nan ' : ''
_info += boxing_conf['word'] ? 'word ' : ''
_info += boxing_conf['WORD'] ? 'word ' : ''
_info += utf8_conf['UTF8'] ? 'utf8 ' : ''
_info = _info.gsub(/ +/, ' ').strip.tr(' ', '_')
configs << { '_info' => _info, 'CFLAGS' => "#{bit}#{env}", 'LDFLAGS' => bit.strip.to_s }