0ca9567c4a
Oslo.messaging uses a single bindep.txt to define common and driver dependencies. The bindep_profile is used by the bindep role to select the driver specific packages. This patch: * Add bindep_profile var to jobs * Add kafka dependencies * update test-setup for use by amqp1 Depends-On: I6beb7b07a7dbc345e63e758ebbc86400e0ee16d3 Change-Id: Ib552152e841a9fc0bffdcb7c3f7bc75613d0ed62
39 lines
1.4 KiB
Bash
Executable File
39 lines
1.4 KiB
Bash
Executable File
#!/bin/bash -xe
|
|
|
|
# This script will be run by OpenStack CI before unit tests are run,
|
|
# it sets up the test system as needed.
|
|
# Developer should setup their test systems in a similar way.
|
|
|
|
# This setup for amqp1 needs to be run by a user that can run sudo.
|
|
|
|
function is_fedora {
|
|
[ -f /usr/bin/yum ] && cat /etc/*release | grep -q -e "Fedora"
|
|
}
|
|
|
|
# NOTE(sileht): we create the virtualenv only and use bindep directly
|
|
# because tox doesn't have a quiet option...
|
|
tox -ebindep --notest
|
|
|
|
# TODO(ansmith) for now setup amqp1 dependencies for any profile.
|
|
# Fix this when test-setup is passed environment profile setting.
|
|
|
|
# NOTE(sileht): bindep return 1 if some packages have to be installed
|
|
PACKAGES="$(.tox/bindep/bin/bindep -b -f bindep.txt amqp1 || true)"
|
|
|
|
[ -n "$PACKAGES" ] || exit 0
|
|
|
|
# inspired from project-config install-distro-packages.sh
|
|
if apt-get -v >/dev/null 2>&1 ; then
|
|
sudo add-apt-repository -y ppa:qpid/testing
|
|
sudo apt-get -qq update
|
|
sudo PATH=/usr/sbin:/sbin:$PATH DEBIAN_FRONTEND=noninteractive \
|
|
apt-get -q --option "Dpkg::Options::=--force-confold" \
|
|
--assume-yes install $PACKAGES
|
|
elif emerge --version >/dev/null 2>&1 ; then
|
|
sudo emerge -uDNq --jobs=4 @world
|
|
sudo PATH=/usr/sbin:/sbin:$PATH emerge -q --jobs=4 $PACKAGES
|
|
else
|
|
is_fedora && YUM=dnf || YUM=yum
|
|
sudo PATH=/usr/sbin:/sbin:$PATH $YUM install -y $PACKAGES
|
|
fi
|