projects
/
sdk
/
tools
/
sdk-build.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1fa4887
)
[Title] Fixed to check distribution when RESOLVE operation
author
donghee yang
<donghee.yang@samsung.com>
Thu, 11 Oct 2012 10:14:23 +0000
(19:14 +0900)
committer
donghee yang
<donghee.yang@samsung.com>
Thu, 11 Oct 2012 10:14:23 +0000
(19:14 +0900)
src/build_server/BuildJob.rb
patch
|
blob
|
history
diff --git
a/src/build_server/BuildJob.rb
b/src/build_server/BuildJob.rb
index a9ccb695404f73a6a7a07a90ca9e62ecd901a01a..e864d95d894d9befb6ed1fefaa7035efe25900a7 100644
(file)
--- a/
src/build_server/BuildJob.rb
+++ b/
src/build_server/BuildJob.rb
@@
-706,6
+706,11
@@
class BuildJob < CommonJob
# return pending job that wait for me
def get_pending_ancestor_job()
@server.jobmgr.get_pending_jobs.each do |job|
+ # must have same distribution
+ if get_distribution_name() != job.get_distribution_name() then
+ next
+ end
+
if job.is_rev_fail_project(@project,@os) then
return job
end