36164b0ccf
* Picked up the openstack driver code from docker/machine
55 lines
1.4 KiB
Bash
Executable File
55 lines
1.4 KiB
Bash
Executable File
#!/bin/bash -xe
|
|
# test-setup.sh - Install required stuffs
|
|
# Used in both CI jobs and locally
|
|
#
|
|
# Install the following tools:
|
|
# * glide
|
|
|
|
# Get OS
|
|
case $(uname -s) in
|
|
Darwin)
|
|
OS=darwin
|
|
;;
|
|
Linux)
|
|
if LSB_RELEASE=$(which lsb_release); then
|
|
OS=$($LSB_RELEASE -s -c)
|
|
else
|
|
# No lsb-release, trya hack or two
|
|
if which dpkg 1>/dev/null; then
|
|
OS=debian
|
|
elif which yum 1>/dev/null || which dnf 1>/dev/null; then
|
|
OS=redhat
|
|
else
|
|
echo "Linux distro not yet supported"
|
|
exit 1
|
|
fi
|
|
fi
|
|
;;
|
|
*)
|
|
echo "Unsupported OS"
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
case $OS in
|
|
darwin)
|
|
if which brew 1>/dev/null; then
|
|
if ! which glide 1>/dev/null; then
|
|
brew install glide
|
|
fi
|
|
else
|
|
echo "Homebrew not found, install Glide from source?"
|
|
fi
|
|
;;
|
|
xenial)
|
|
APT_GET="DEBIAN_FRONTEND=noninteractive \
|
|
apt-get -q --option "Dpkg::Options::=--force-confold" \
|
|
--assume-yes"
|
|
if ! which add-apt-repository 1>/dev/null; then
|
|
sudo $APT_GET install software-properties-common
|
|
fi
|
|
sudo add-apt-repository --yes ppa:masterminds/glide && sudo apt-get update
|
|
sudo $APT_GET install glide
|
|
;;
|
|
esac
|