From 94cbb74aad8be086120cea26bda98adce5c3d64a Mon Sep 17 00:00:00 2001 From: Sean McGinnis Date: Tue, 20 Mar 2018 10:27:53 -0500 Subject: [PATCH] Add bindep.txt file to prevent fallback to generic list Jobs will look for bindep.txt in each repo to get a list of required system packages to be installed. If that file is not found, it will fallback to a generic bindep.txt file that contains many things that are not needed for running oslo.utils jobs (things such as mysql and postgres packages). This adds a basic bindep.txt file with just a few packages to speed up job setup times and prevent unnecessary work in the gate. Change-Id: I9cc50095b7b9a151184f131b1a4735da6c3f83dd --- bindep.txt | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 bindep.txt diff --git a/bindep.txt b/bindep.txt new file mode 100644 index 00000000..ba561888 --- /dev/null +++ b/bindep.txt @@ -0,0 +1,9 @@ +# This is a cross-platform list tracking distribution packages needed by tests; +# see http://docs.openstack.org/infra/bindep/ for additional information. + +locales [platform:debian] +python-dev [platform:dpkg] +python-devel [platform:rpm] +python3-all-dev [platform:ubuntu !platform:ubuntu-precise] +python3-dev [platform:dpkg] +python3-devel [platform:fedora]