Merge pull request #182 from abf/rosa-build:181-pass-platform-name-at-publish
[refs #181]: pass name of main platform at publish
This commit is contained in:
commit
a835f3b45e
|
@ -93,12 +93,13 @@ module AbfWorker
|
|||
|
||||
distrib_type = build_list.build_for_platform.distrib_type
|
||||
cmd_params = {
|
||||
'RELEASED' => false,
|
||||
'REPOSITORY_NAME' => build_list.save_to_repository.name,
|
||||
'TYPE' => distrib_type,
|
||||
'IS_CONTAINER' => true,
|
||||
'ID' => build_list.id,
|
||||
'PLATFORM_NAME' => build_list.save_to_platform.name
|
||||
'RELEASED' => false,
|
||||
'REPOSITORY_NAME' => build_list.save_to_repository.name,
|
||||
'TYPE' => distrib_type,
|
||||
'IS_CONTAINER' => true,
|
||||
'ID' => build_list.id,
|
||||
'SAVE_TO_PLATFORM' => build_list.save_to_platform.name,
|
||||
'BUILD_FOR_PLATFORM' => build_list.build_for_platform.name
|
||||
}.map{ |k, v| "#{k}=#{v}" }.join(' ')
|
||||
|
||||
|
||||
|
@ -283,9 +284,11 @@ module AbfWorker
|
|||
|
||||
distrib_type = build_for_platform.distrib_type
|
||||
cmd_params = {
|
||||
'RELEASED' => save_to_platform.released,
|
||||
'REPOSITORY_NAME' => save_to_repository.name,
|
||||
'TYPE' => distrib_type
|
||||
'RELEASED' => save_to_platform.released,
|
||||
'REPOSITORY_NAME' => save_to_repository.name,
|
||||
'TYPE' => distrib_type,
|
||||
'SAVE_TO_PLATFORM' => save_to_platform.name,
|
||||
'BUILD_FOR_PLATFORM' => build_for_platform.name
|
||||
}.map{ |k, v| "#{k}=#{v}" }.join(' ')
|
||||
|
||||
lock_str = "#{save_to_repository_id}-#{build_for_platform_id}"
|
||||
|
@ -333,6 +336,7 @@ module AbfWorker
|
|||
return true
|
||||
end
|
||||
|
||||
# Only for main platforms!
|
||||
def create_tasks_for_repository_regenerate_metadata
|
||||
worker_queue = 'publish_worker_default'
|
||||
worker_class = 'AbfWorker::PublishWorkerDefault'
|
||||
|
@ -347,10 +351,12 @@ module AbfWorker
|
|||
platform_path = "#{rep.platform.path}/repository"
|
||||
distrib_type = rep.platform.distrib_type
|
||||
cmd_params = {
|
||||
'RELEASED' => rep.platform.released,
|
||||
'REPOSITORY_NAME' => rep.name,
|
||||
'TYPE' => distrib_type,
|
||||
'REGENERATE_METADATA' => true
|
||||
'RELEASED' => rep.platform.released,
|
||||
'REPOSITORY_NAME' => rep.name,
|
||||
'TYPE' => distrib_type,
|
||||
'REGENERATE_METADATA' => true,
|
||||
'SAVE_TO_PLATFORM' => rep.platform.name,
|
||||
'BUILD_FOR_PLATFORM' => rep.platform.name
|
||||
}.map{ |k, v| "#{k}=#{v}" }.join(' ')
|
||||
|
||||
options = {
|
||||
|
|
Loading…
Reference in New Issue