2019-01-23 12:44:08 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
import ci_lib
|
|
|
|
|
|
|
|
batches = [
|
|
|
|
[
|
2021-09-08 01:18:27 +00:00
|
|
|
'aws ecr-public get-login-password | docker login --username AWS --password-stdin public.ecr.aws',
|
2019-01-23 12:44:08 +00:00
|
|
|
],
|
|
|
|
[
|
2019-10-17 16:41:37 +00:00
|
|
|
'curl https://dw.github.io/mitogen/binaries/ubuntu-python-2.4.6.tar.bz2 | sudo tar -C / -jxv',
|
2019-01-23 12:44:08 +00:00
|
|
|
]
|
|
|
|
]
|
|
|
|
|
|
|
|
ci_lib.run_batches(batches)
|