45da85124f
The pip install -f flag is for find-links which is a list of locations to look for python packages. What we hvae at this path for extras installation is a list of packages themselves not locations to find them. We need to use the -r flag for requirements lists to specify this instead. This change should update our zuul and nodepool images to include useful debugging extras. Change-Id: I647bb835d0c85c3772e1593866a54cfc5ea1db2f
56 lines
1.9 KiB
Bash
Executable File
56 lines
1.9 KiB
Bash
Executable File
#!/bin/bash
|
|
# Copyright (c) 2019 Red Hat, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
# implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
set -e
|
|
|
|
apt-get update
|
|
DEBIAN_FRONTEND=noninteractive apt-get -y install $(cat /output/bindep/run.txt)
|
|
|
|
# If there's a constraints file, use it.
|
|
if [ -f /output/upper-constraints.txt ] ; then
|
|
CONSTRAINTS="-c /output/upper-constraints.txt"
|
|
fi
|
|
|
|
# If a requirements.txt file exists,
|
|
# install it directly so that people can use git url syntax
|
|
# to do things like pick up patched but unreleased versions
|
|
# of dependencies.
|
|
if [ -f /output/requirements.txt ] ; then
|
|
pip install $CONSTRAINTS --cache-dir=/output/wheels -r /output/requirements.txt
|
|
fi
|
|
|
|
# Add any requested extras to the list of things to install
|
|
EXTRAS=""
|
|
for extra in $* ; do
|
|
EXTRAS="${EXTRAS} -r /output/$extra/requirements.txt"
|
|
done
|
|
|
|
if [ -f /output/packages.txt ] ; then
|
|
# If a package list was passed to assemble, install that in the final
|
|
# image.
|
|
pip install $CONSTRAINTS --cache-dir=/output/wheels -r /output/packages.txt $EXTRAS
|
|
else
|
|
# Install the wheels. Use --force here because sibling wheels might
|
|
# be built with the same version number as the latest release, but we
|
|
# really want the speculatively built wheels installed over any
|
|
# automatic dependencies.
|
|
pip install $CONSTRAINTS --force --cache-dir=/output/wheels /output/wheels/*.whl $EXTRAS
|
|
fi
|
|
|
|
# clean up after ourselves
|
|
apt-get clean
|
|
rm -rf /var/lib/apt/lists/*
|