2018-11-06 13:47:09 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
import ci_lib
|
|
|
|
|
|
|
|
batches = [
|
2021-09-08 01:18:27 +00:00
|
|
|
[
|
2024-08-10 18:37:25 +00:00
|
|
|
'if [ "${TF_BUILD:-false}" = "True" ]; then aws ecr-public get-login-password | docker login --username AWS --password-stdin public.ecr.aws; fi',
|
2018-11-06 13:47:09 +00:00
|
|
|
]
|
|
|
|
]
|
|
|
|
|
|
|
|
ci_lib.run_batches(batches)
|