Unverified Commit 5e519cdb authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto Committed by GitHub

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

Use `rake` instead of `minirake` in `.gitlab-ci.yml`
parents 4327f369 b96fa664
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -80,7 +80,7 @@ task :gitlab_config do ...@@ -80,7 +80,7 @@ task :gitlab_config do
_info += int_conf['16'] ? 'int16 ' : '' _info += int_conf['16'] ? 'int16 ' : ''
_info += int_conf['64'] ? 'int64 ' : '' _info += int_conf['64'] ? 'int64 ' : ''
_info += boxing_conf['NAN'] ? 'nan ' : '' _info += boxing_conf['NAN'] ? 'nan ' : ''
_info += boxing_conf['word'] ? 'word ' : '' _info += boxing_conf['WORD'] ? 'word ' : ''
_info += utf8_conf['UTF8'] ? 'utf8 ' : '' _info += utf8_conf['UTF8'] ? 'utf8 ' : ''
_info = _info.gsub(/ +/, ' ').strip.tr(' ', '_') _info = _info.gsub(/ +/, ' ').strip.tr(' ', '_')
configs << { '_info' => _info, 'CFLAGS' => "#{bit}#{env}", 'LDFLAGS' => bit.strip.to_s } configs << { '_info' => _info, 'CFLAGS' => "#{bit}#{env}", 'LDFLAGS' => bit.strip.to_s }
......
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