mirror of
https://github.com/sobolevn/git-secret
synced 2024-10-31 21:20:29 +00:00
937a2c8d9d
that we see only with 'gnupg-git-[debian|ubuntu]' kitchen configs with ansible < 2.5.0.0
36 lines
964 B
Bash
36 lines
964 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
# Linux helper functions:
|
|
function update_linux() {
|
|
sudo apt-get update -qq
|
|
sudo apt-get install -qq python-apt python-pycurl git python-pip ruby ruby-dev build-essential autoconf rpm
|
|
gem install bundler
|
|
}
|
|
|
|
function install_ansible {
|
|
bash .ci/ansible-setup.sh
|
|
bundle install
|
|
# pyOpen, ndg-* and pyasn1 are for 'InsecurePlatformWarning' error
|
|
~/.avm/v2.3/venv/bin/pip install netaddr ansible-lint pyOpenSSL ndg-httpsclient pyasn1
|
|
~/.avm/v2.5/venv/bin/pip install netaddr ansible-lint pyOpenSSL ndg-httpsclient pyasn1
|
|
}
|
|
|
|
|
|
# Mac:
|
|
if [[ "$GITSECRET_DIST" == "brew" ]]; then
|
|
gnupg_installed="$(brew list | grep -c "gnupg")"
|
|
[[ "$gnupg_installed" -ge 1 ]] || brew install gnupg
|
|
if [[ -f "/usr/local/bin/gpg1" ]]; then
|
|
ln -s /usr/local/bin/gpg1 /usr/local/bin/gpg
|
|
fi
|
|
brew install gawk
|
|
fi
|
|
|
|
# Linux:
|
|
if [[ "$TRAVIS_OS_NAME" == "linux" ]] && [[ -n "$KITCHEN_REGEXP" ]]; then
|
|
update_linux
|
|
install_ansible
|
|
fi
|