mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
17 lines
362 B
Bash
Executable file
17 lines
362 B
Bash
Executable file
#!/bin/bash -eux
|
|
|
|
set -o pipefail
|
|
|
|
add-apt-repository 'ppa:ubuntu-toolchain-r/test'
|
|
add-apt-repository 'ppa:jonathonf/python-3.6'
|
|
|
|
apt-get update -qq
|
|
apt-get install -qq \
|
|
g++-4.9 \
|
|
python3.6-dev \
|
|
|
|
ln -sf x86_64-linux-gnu-gcc-4.9 /usr/bin/x86_64-linux-gnu-gcc
|
|
|
|
pip install tox --disable-pip-version-check
|
|
|
|
ansible-test units --color -v --tox --coverage
|