rosa-build/lib/abf_worker/iso_worker_observer.rb

25 lines
560 B
Ruby
Raw Normal View History

2012-11-08 21:39:42 +00:00
module AbfWorker
class IsoWorkerObserver
extend AbfWorker::ObserverHelper
2012-11-08 21:39:42 +00:00
@queue = :iso_worker_observer
def self.perform(options)
status = options['status'].to_i
pbl = ProductBuildList.find options['id']
case status
when BUILD_COMPLETED
pbl.build_success
when BUILD_FAILED
pbl.build_error
when BUILD_STARTED
pbl.start_build
when BUILD_CANCELED
pbl.build_canceled
end
if status != BUILD_STARTED
update_results(pbl, options)
end
2012-11-08 21:39:42 +00:00
end
end
end