2016-11-30 06:21:53 +01:00
|
|
|
#!/bin/bash -eux
|
|
|
|
|
|
|
|
set -o pipefail
|
|
|
|
|
2017-02-08 01:33:45 +01:00
|
|
|
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'
|
2016-11-30 06:21:53 +01:00
|
|
|
|
2017-02-08 01:33:45 +01:00
|
|
|
retry.py apt-get update -qq
|
|
|
|
retry.py apt-get install -qq \
|
2017-01-10 19:30:41 +01:00
|
|
|
shellcheck \
|
|
|
|
python2.4 \
|
2017-01-13 23:30:41 +01:00
|
|
|
g++-4.9 \
|
|
|
|
python3.6-dev \
|
|
|
|
|
|
|
|
ln -sf x86_64-linux-gnu-gcc-4.9 /usr/bin/x86_64-linux-gnu-gcc
|
2016-11-30 06:21:53 +01:00
|
|
|
|
2017-02-08 01:33:45 +01:00
|
|
|
retry.py pip install tox --disable-pip-version-check
|
2016-11-30 06:21:53 +01:00
|
|
|
|
|
|
|
ansible-test compile --color -v
|
2017-03-02 21:36:46 +01:00
|
|
|
ansible-test sanity --color -v --junit --tox --skip-test ansible-doc --python 2.7
|
|
|
|
ansible-test sanity --color -v --junit --tox --test ansible-doc --coverage
|