1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-09-02 11:22:41 +01:00

fw/exec: add JOB_QUEUE_EXECUTION signals

Add signals just before and just after commencing the execution of the
job queue.
This commit is contained in:
Sergei Trofimov
2018-06-12 14:16:22 +01:00
committed by setrofim
parent 5f7fde206d
commit ea97372ece
3 changed files with 13 additions and 5 deletions

View File

@@ -140,6 +140,10 @@ SIGNAL_MAP = OrderedDict([
('on_job_failure', signal.JOB_FAILED),
('on_job_abort', signal.JOB_ABORTED),
('before_job_queue_execution', signal.BEFORE_JOB_QUEUE_EXECUTION),
('on_successful_job_queue_exection', signal.SUCCESSFUL_JOB_QUEUE_EXECUTION),
('after_job_queue_execution', signal.AFTER_JOB_QUEUE_EXECUTION),
('before_job', signal.BEFORE_JOB),
('on_successful_job', signal.SUCCESSFUL_JOB),
('after_job', signal.AFTER_JOB),