option to exclude specified ids
This commit is contained in:
parent
78ef302eed
commit
ebdf747494
1 changed files with 11 additions and 4 deletions
|
@ -40,6 +40,11 @@ parser.add_argument('--id', dest='ids', nargs='+', action="store", type=int, hel
|
||||||
Usage: ./make.py yourproject/ --id 4711 0815 4223 1337
|
Usage: ./make.py yourproject/ --id 4711 0815 4223 1337
|
||||||
''')
|
''')
|
||||||
|
|
||||||
|
parser.add_argument('--exclude-id', dest='exclude_ids', nargs='+', action="store", type=int, help='''
|
||||||
|
Do not render the given ID(s) from your projects schedule.
|
||||||
|
Usage: ./make.py yourproject/ --exclude-id 1 8 15 16 23 42
|
||||||
|
''')
|
||||||
|
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
|
|
||||||
def headline(str):
|
def headline(str):
|
||||||
|
@ -187,11 +192,13 @@ def finalize_job(job_id, event):
|
||||||
|
|
||||||
active_jobs = []
|
active_jobs = []
|
||||||
|
|
||||||
print("enqueuing {} jobs into compressor".format(len(events)))
|
filtered_events = events
|
||||||
for event in events:
|
filtered_events = filter(lambda event: not args.ids or event['id'] in args.ids, filtered_events)
|
||||||
if args.ids and event['id'] not in args.ids:
|
filtered_events = filter(lambda event: not args.exclude_ids or event['id'] not in args.exclude_ids, filtered_events)
|
||||||
continue
|
filtered_events = list(filtered_events)
|
||||||
|
|
||||||
|
print("enqueuing {} jobs into compressor".format(len(filtered_events)))
|
||||||
|
for event in filtered_events:
|
||||||
job_id = enqueue_job(event)
|
job_id = enqueue_job(event)
|
||||||
if not job_id:
|
if not job_id:
|
||||||
event_print(event, "job was not enqueued successfully, skipping postprocessing")
|
event_print(event, "job was not enqueued successfully, skipping postprocessing")
|
||||||
|
|
Loading…
Add table
Reference in a new issue