From ab6ee3bff4ddd2095d4bf19310811caf947b0b73 Mon Sep 17 00:00:00 2001 From: Sean McGinnis Date: Tue, 20 Mar 2018 10:26:30 -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: I9be96f4d5fc5833e29f89e96df0099cbc9f3b5fa --- 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]