f16ee2841b
* Add retry.py for auto-retry in CI scripts. * Add retries to other and units CI scripts.
22 lines
656 B
Bash
Executable file
22 lines
656 B
Bash
Executable file
#!/bin/bash -eux
|
|
|
|
set -o pipefail
|
|
|
|
retry.py add-apt-repository 'deb http://archive.ubuntu.com/ubuntu trusty-backports universe'
|
|
retry.py add-apt-repository 'ppa:ubuntu-toolchain-r/test'
|
|
retry.py add-apt-repository 'ppa:fkrull/deadsnakes'
|
|
|
|
retry.py apt-get update -qq
|
|
retry.py apt-get install -qq \
|
|
shellcheck \
|
|
python2.4 \
|
|
g++-4.9 \
|
|
python3.6-dev \
|
|
|
|
ln -sf x86_64-linux-gnu-gcc-4.9 /usr/bin/x86_64-linux-gnu-gcc
|
|
|
|
retry.py pip install tox --disable-pip-version-check
|
|
|
|
ansible-test compile --color -v
|
|
ansible-test sanity --color -v --tox --skip-test ansible-doc --python 2.7
|
|
ansible-test sanity --color -v --tox --test ansible-doc --coverage
|