Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mruby
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
mruby
Commits
47ea6081
Unverified
Commit
47ea6081
authored
May 20, 2020
by
Yukihiro "Matz" Matsumoto
Committed by
GitHub
May 20, 2020
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #5003 from shuujii/retry-rake--m-on-AppVeyor
Retry `rake -m` on AppVeyor [skip travis]
parents
d79147fe
86223b6e
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
0 deletions
+9
-0
appveyor.yml
appveyor.yml
+1
-0
appveyor_config.rb
appveyor_config.rb
+8
-0
No files found.
appveyor.yml
View file @
47ea6081
...
...
@@ -47,4 +47,5 @@ install:
build_script
:
-
set YACC=.\win_flex_bison\win_bison.exe
-
set MRUBY_CONFIG=appveyor_config.rb
-
rake -m
-
rake -E $stdout.sync=true test
appveyor_config.rb
View file @
47ea6081
def
setup_option
(
conf
)
conf
.
compilers
.
each
{
|
c
|
c
.
flags
[
0
].
delete
(
"/Zi"
)}
conf
.
linker
.
flags
<<
"/DEBUG:NONE"
end
MRuby
::
Build
.
new
(
'full-debug'
)
do
|
conf
|
toolchain
:visualcpp
enable_debug
...
...
@@ -5,6 +10,7 @@ MRuby::Build.new('full-debug') do |conf|
# include all core GEMs
conf
.
gembox
'full-core'
conf
.
cc
.
defines
+=
%w(MRB_GC_STRESS MRB_METHOD_CACHE MRB_ENABLE_DEBUG_HOOK)
setup_option
(
conf
)
conf
.
enable_test
end
...
...
@@ -17,6 +23,7 @@ MRuby::Build.new do |conf|
conf
.
compilers
.
each
do
|
c
|
c
.
defines
+=
%w(MRB_GC_FIXED_ARENA)
end
setup_option
(
conf
)
conf
.
enable_bintest
conf
.
enable_test
end
...
...
@@ -28,6 +35,7 @@ MRuby::Build.new('cxx_abi') do |conf|
conf
.
compilers
.
each
do
|
c
|
c
.
defines
+=
%w(MRB_GC_FIXED_ARENA)
end
setup_option
(
conf
)
conf
.
enable_bintest
conf
.
enable_test
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment