2016-06-16 19:34:25 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2017-09-27 22:30:54 +00:00
|
|
|
# Linux helper functions:
|
|
|
|
function update_linux() {
|
|
|
|
sudo apt-get update -qq
|
2019-01-04 16:30:59 +00:00
|
|
|
sudo apt-get install -qq python-apt python-pycurl git python-pip build-essential autoconf rpm
|
2017-09-27 22:30:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function install_ansible {
|
|
|
|
bash .ci/ansible-setup.sh
|
2018-04-16 16:23:19 +00:00
|
|
|
# pyOpen, ndg-* and pyasn1 are for 'InsecurePlatformWarning' error
|
|
|
|
~/.avm/v2.3/venv/bin/pip install netaddr ansible-lint pyOpenSSL ndg-httpsclient pyasn1
|
2018-04-16 17:30:21 +00:00
|
|
|
~/.avm/v2.5/venv/bin/pip install netaddr ansible-lint pyOpenSSL ndg-httpsclient pyasn1
|
2017-09-27 22:30:54 +00:00
|
|
|
}
|
2016-06-16 19:34:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Mac:
|
|
|
|
if [[ "$GITSECRET_DIST" == "brew" ]]; then
|
2017-09-28 14:05:19 +00:00
|
|
|
gnupg_installed="$(brew list | grep -c "gnupg")"
|
|
|
|
[[ "$gnupg_installed" -ge 1 ]] || brew install gnupg
|
2017-09-28 16:29:24 +00:00
|
|
|
if [[ -f "/usr/local/bin/gpg1" ]]; then
|
|
|
|
ln -s /usr/local/bin/gpg1 /usr/local/bin/gpg
|
|
|
|
fi
|
2017-09-28 05:01:40 +00:00
|
|
|
brew install gawk
|
2016-06-16 19:34:25 +00:00
|
|
|
fi
|
|
|
|
|
2017-09-27 22:30:54 +00:00
|
|
|
# Linux:
|
|
|
|
if [[ "$TRAVIS_OS_NAME" == "linux" ]] && [[ -n "$KITCHEN_REGEXP" ]]; then
|
|
|
|
update_linux
|
|
|
|
install_ansible
|
2016-06-16 19:34:25 +00:00
|
|
|
fi
|