mirror of
https://github.com/sobolevn/git-secret
synced 2024-10-31 21:20:29 +00:00
34 lines
911 B
Bash
34 lines
911 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 build-essential autoconf rpm
|
|
}
|
|
|
|
function install_ansible {
|
|
bash .ci/ansible-setup.sh
|
|
# 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
|