mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-02 16:53:11 +00:00
18 lines
362 B
Bash
Executable File
18 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
|