2016-03-03 15:15:39 +00:00
|
|
|
# This file facilitates OpenStack-CI package installation
|
|
|
|
# before the execution of any tests.
|
|
|
|
#
|
|
|
|
# See the following for details:
|
2017-09-04 13:05:27 +00:00
|
|
|
# - https://docs.openstack.org/infra/bindep/
|
2017-06-22 15:20:04 +00:00
|
|
|
# - https://git.openstack.org/cgit/openstack-infra/bindep
|
2016-03-03 15:15:39 +00:00
|
|
|
#
|
|
|
|
# Even if the role does not make use of this facility, it
|
|
|
|
# is better to have this file empty, otherwise OpenStack-CI
|
|
|
|
# will fall back to installing its default packages which
|
|
|
|
# will potentially be detrimental to the tests executed.
|
2017-06-22 15:20:04 +00:00
|
|
|
#
|
|
|
|
# Note:
|
|
|
|
# This file is maintained in the openstack-ansible-tests repository.
|
|
|
|
# https://git.openstack.org/cgit/openstack/openstack-ansible-tests/tree/bindep.txt
|
|
|
|
# If you need to remove or add extra dependencies, you should modify
|
|
|
|
# the central file instead and once your change is accepted then update
|
|
|
|
# this file as well. The purpose of this file is to ensure that Python and
|
|
|
|
# Ansible have all their necessary binary requirements on the test host before
|
|
|
|
# tox executes. Any binary requirements needed by services/roles should be
|
|
|
|
# installed by those roles in their applicable package install tasks, not through
|
|
|
|
# using this file.
|
|
|
|
#
|
2016-03-04 19:24:04 +00:00
|
|
|
|
2017-12-06 00:06:39 +00:00
|
|
|
# The gcc compiler
|
|
|
|
gcc
|
|
|
|
|
2016-08-17 22:29:14 +00:00
|
|
|
# Base requirements for Ubuntu
|
|
|
|
git-core [platform:dpkg]
|
|
|
|
libssl-dev [platform:dpkg]
|
|
|
|
libffi-dev [platform:dpkg]
|
|
|
|
python2.7 [platform:dpkg]
|
2017-07-06 21:08:54 +00:00
|
|
|
python-apt [platform:dpkg]
|
2016-08-17 22:29:14 +00:00
|
|
|
python-dev [platform:dpkg]
|
2017-07-31 19:11:31 +00:00
|
|
|
python3 [platform:dpkg]
|
|
|
|
python3-apt [platform:dpkg]
|
|
|
|
python3-dev [platform:dpkg]
|
2016-05-03 08:57:01 +01:00
|
|
|
|
2017-06-22 15:20:04 +00:00
|
|
|
# Base requirements for RPM distros
|
2016-08-17 22:29:14 +00:00
|
|
|
gcc-c++ [platform:rpm]
|
|
|
|
git [platform:rpm]
|
2017-12-06 00:06:39 +00:00
|
|
|
libffi-devel [platform:rpm]
|
|
|
|
openssl-devel [platform:rpm]
|
2017-06-22 15:20:04 +00:00
|
|
|
python-devel [platform:rpm]
|
2017-07-06 21:08:54 +00:00
|
|
|
python2-dnf [platform:fedora]
|
2016-08-17 22:29:14 +00:00
|
|
|
|
|
|
|
# For SELinux
|
2017-06-22 15:20:04 +00:00
|
|
|
libselinux-python [platform:redhat]
|
|
|
|
libsemanage-python [platform:redhat]
|
2016-08-17 22:29:14 +00:00
|
|
|
|
2016-09-09 10:48:44 +01:00
|
|
|
# Required for compressing collected log files in CI
|
|
|
|
gzip
|