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
|
|
|
|
2017-03-08 04:09:17 +01:00
|
|
|
errors=0
|
|
|
|
|
2017-03-08 10:31:53 +01:00
|
|
|
set +e
|
|
|
|
|
2017-03-08 09:47:21 +01:00
|
|
|
ansible-test compile --color -v --junit --requirements || ((errors++))
|
2017-03-08 04:09:17 +01:00
|
|
|
ansible-test sanity --color -v --junit --tox --skip-test ansible-doc --python 2.7 || ((errors++))
|
|
|
|
ansible-test sanity --color -v --junit --tox --test ansible-doc --coverage || ((errors++))
|
|
|
|
|
2017-03-08 10:31:53 +01:00
|
|
|
set -e
|
|
|
|
|
2017-03-08 04:09:17 +01:00
|
|
|
if [ ${errors} -gt 0 ]; then
|
|
|
|
echo "${errors} of the above ansible-test command(s) failed."
|
|
|
|
exit 1
|
|
|
|
fi
|