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
1829b769
Unverified
Commit
1829b769
authored
Jun 20, 2018
by
Yukihiro "Matz" Matsumoto
Committed by
GitHub
Jun 20, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #4051 from take-cheeze/para_rake
Make minirake parallel.
parents
cfed6e3a
7bb2fc70
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
118 additions
and
15 deletions
+118
-15
.travis.yml
.travis.yml
+2
-2
minirake
minirake
+116
-13
No files found.
.travis.yml
View file @
1829b769
...
...
@@ -5,7 +5,7 @@ sudo: false
matrix
:
include
:
-
os
:
linux
sudo
:
9000
sudo
:
false
-
os
:
osx
osx_image
:
xcode7.1
...
...
@@ -17,4 +17,4 @@ addons:
env
:
MRUBY_CONFIG=travis_config.rb
env
:
MRUBY_CONFIG=travis_config.rb
script
:
"
./minirake
all
test"
script
:
"
./minirake
-j4
all
test"
minirake
View file @
1829b769
...
...
@@ -6,6 +6,12 @@
require
'getoptlong'
require
'fileutils'
require
'fiber'
$rake_fiber_table
=
{}
$rake_jobs
=
1
$rake_failed
=
[]
$rake_root_fiber
=
Fiber
.
current
class
String
def
ext
(
newext
=
''
)
...
...
@@ -86,14 +92,31 @@ module MiniRake
@name
.
to_s
end
def
done?
;
@done
end
def
running?
;
@running
end
# Invoke the task if it is needed. Prerequites are invoked first.
def
invoke
puts
"Invoke
#{
name
}
(already=[
#{
@already_invoked
}
], needed=[
#{
needed?
}
])"
if
$trace
return
if
@already_invoked
@already_invoked
=
true
prerequisites
=
@prerequisites
.
collect
{
|
n
|
n
.
is_a?
(
Proc
)
?
n
.
call
(
name
)
:
n
}.
flatten
prerequisites
.
each
{
|
n
|
Task
[
n
].
invoke
}
execute
if
needed?
prerequisites
.
each
do
|
n
|
t
=
Task
[
n
]
unless
t
.
done?
return
prerequisites
.
select
{
|
v
|
v
=
Task
[
v
];
v
&&
(
!
v
.
done?
||
!
v
.
running?
)
}
end
end
@already_invoked
=
true
if
needed?
@running
=
true
return
Fiber
.
new
do
self
.
execute
end
end
@done
=
true
end
# Execute the actions associated with this task.
...
...
@@ -103,6 +126,8 @@ module MiniRake
unless
$dryrun
@actions
.
each
{
|
act
|
act
.
call
(
self
)
}
end
@done
=
true
@running
=
false
end
# Is this task needed?
...
...
@@ -281,7 +306,19 @@ module MiniRake
# Run the system command +cmd+.
def
sh
(
cmd
)
puts
cmd
if
$verbose
if
$rake_jobs
==
1
||
Fiber
.
current
==
$rake_root_fiber
system
(
cmd
)
or
fail
"Command Failed: [
#{
cmd
}
]"
return
end
pid
=
Process
.
spawn
(
cmd
)
$rake_fiber_table
[
pid
]
=
{
fiber:
Fiber
.
current
,
command:
cmd
,
process_waiter:
Process
.
detach
(
pid
)
}
Fiber
.
yield
end
def
desc
(
text
)
...
...
@@ -329,7 +366,9 @@ class RakeApp
[
'--verbose'
,
'-v'
,
GetoptLong
::
NO_ARGUMENT
,
"Log message to standard output."
],
[
'--directory'
,
'-C'
,
GetoptLong
::
REQUIRED_ARGUMENT
,
"Change executing directory of rakefiles."
]
"Change executing directory of rakefiles."
],
[
'--jobs'
,
'-j'
,
GetoptLong
::
REQUIRED_ARGUMENT
,
'Execute rake with parallel jobs.'
]
]
# Create a RakeApp object.
...
...
@@ -422,6 +461,8 @@ class RakeApp
exit
when
'--directory'
Dir
.
chdir
value
when
'--jobs'
$rake_jobs
=
[
value
.
to_i
,
1
].
max
else
fail
"Unknown option:
#{
opt
}
"
end
...
...
@@ -447,12 +488,12 @@ class RakeApp
end
here
=
Dir
.
pwd
end
tasks
=
[]
root_
tasks
=
[]
ARGV
.
each
do
|
task_name
|
if
/^(\w+)=(.*)/
.
match
(
task_name
)
ENV
[
$1
]
=
$2
else
tasks
<<
task_name
root_
tasks
<<
task_name
end
end
puts
"(in
#{
Dir
.
pwd
}
)"
...
...
@@ -461,21 +502,83 @@ class RakeApp
if
$show_tasks
display_tasks
else
tasks
.
push
(
"default"
)
if
tasks
.
size
==
0
tasks
.
each
do
|
task_name
|
MiniRake
::
Task
[
task_name
].
invoke
root_tasks
.
push
(
"default"
)
if
root_tasks
.
empty?
# revese tasks for popping
root_tasks
.
reverse!
tasks
=
[]
until
root_tasks
.
empty?
root_name
=
root_tasks
.
pop
tasks
<<
root_name
until
tasks
.
empty?
task_name
=
tasks
.
pop
t
=
MiniRake
::
Task
[
task_name
]
f
=
t
.
invoke
# append additional tasks to task queue
if
f
.
kind_of?
(
Array
)
tasks
.
push
(
*
f
)
tasks
.
uniq!
end
unless
f
.
kind_of?
Fiber
tasks
.
insert
0
,
task_name
unless
t
.
done?
if
root_name
==
task_name
wait_process
end
next
end
rescue
Exception
=>
ex
f
.
resume
end
end
wait_process
until
$rake_fiber_table
.
empty?
end
rescue
Exception
=>
e
begin
$rake_failed
<<
e
wait_process
until
$rake_fiber_table
.
empty?
rescue
Exception
=>
next_e
e
=
next_e
retry
end
end
return
if
$rake_failed
.
empty?
puts
"rake aborted!"
$rake_failed
.
each
do
|
ex
|
puts
ex
.
message
if
$trace
puts
ex
.
backtrace
.
join
(
"
\n
"
)
else
puts
ex
.
backtrace
.
find
{
|
str
|
str
=~
/
#{
@rakefile
}
/
}
||
""
end
end
exit
1
end
def
wait_process
sleep
0.1
exited
=
[]
$rake_fiber_table
.
each
do
|
pid
,
v
|
exited
<<
pid
unless
v
[
:process_waiter
].
alive?
end
exited
.
each
do
|
pid
|
ent
=
$rake_fiber_table
.
delete
pid
st
=
ent
[
:process_waiter
].
value
# ignore process that isn't created by `sh` method
return
if
ent
.
nil?
if
st
.
exitstatus
!=
0
raise
"Command Failed: [
#{
ent
[
:command
]
}
]"
end
ent
[
:fiber
].
resume
end
end
end
...
...
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