6df06f4200
Add support for testing ansible roles against openSUSE Leap 42.1. This also improves the run_tests.sh script and also adds support for openSUSE bindep dependencies. Finally, it adds a new BINDEP_FILE variable which can be used to set an alternative bindep.txt dependency file. Change-Id: I57357b119eb1d8eb7726401b8feb48d1ae08c470
44 lines
1.4 KiB
Plaintext
44 lines
1.4 KiB
Plaintext
# This file facilitates OpenStack-CI package installation
|
|
# before the execution of any tests.
|
|
#
|
|
# See the following for details:
|
|
# - http://docs.openstack.org/infra/bindep/
|
|
# - https://git.openstack.org/cgit/openstack-infra/bindep
|
|
#
|
|
# 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.
|
|
|
|
# Base requirements for Ubuntu
|
|
build-essential [platform:dpkg]
|
|
git-core [platform:dpkg]
|
|
libssl-dev [platform:dpkg]
|
|
libffi-dev [platform:dpkg]
|
|
python2.7 [platform:dpkg]
|
|
python-dev [platform:dpkg]
|
|
|
|
# Base requirements for RPM distros
|
|
gcc [platform:rpm]
|
|
gcc-c++ [platform:rpm]
|
|
git [platform:rpm]
|
|
libffi-devel [platform:rpm]
|
|
openssl-devel [platform:rpm]
|
|
python-devel [platform:rpm]
|
|
|
|
# For SELinux
|
|
libselinux-python [platform:centos]
|
|
libsemanage-python [platform:centos]
|
|
|
|
# For SSL SNI support
|
|
python-pyasn1 [platform:dpkg platform:suselinux]
|
|
python-openssl [platform:dpkg platform:suselinux]
|
|
python-ndg-httpsclient [platform:ubuntu]
|
|
python2-pyasn1 [platform:centos]
|
|
python2-pyOpenSSL [platform:centos]
|
|
python-pyOpenSSL [platform:suselinux]
|
|
python-ndg_httpsclient [platform:centos]
|
|
|
|
# Required for compressing collected log files in CI
|
|
gzip
|