2018-11-06 13:47:09 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
import ci_lib
|
|
|
|
|
|
|
|
batches = [
|
|
|
|
]
|
|
|
|
|
2019-02-14 11:17:52 +00:00
|
|
|
if ci_lib.have_docker():
|
|
|
|
batches.append([
|
2021-09-08 01:18:27 +00:00
|
|
|
'aws ecr-public get-login-password | docker login --username AWS --password-stdin public.ecr.aws',
|
2019-02-14 11:17:52 +00:00
|
|
|
])
|
|
|
|
|
2019-08-09 19:19:16 +00:00
|
|
|
|
2018-11-06 13:47:09 +00:00
|
|
|
ci_lib.run_batches(batches)
|