9f6f1dd295
It seems I added this --force with the original commit (I4943ae723b06b0ad808e7c7f20788109e21aa8bf) but I'm not really sure why. If we have built any siblings their wheels should have higher version numbers (e.g. like pbr versioning with a "dev" on it). Thus we shouldn't need to force the wheels to be installed. The --force here causes a lot of uninstalls that take up quite a bit of time, especialy under emulation. Change-Id: I88b824058dc1cee90bfe4c8c4fd43a86472bc478
53 lines
1.7 KiB
Bash
Executable File
53 lines
1.7 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 -ex
|
|
|
|
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.
|
|
pip install $CONSTRAINTS --cache-dir=/output/wheels /output/wheels/*.whl $EXTRAS
|
|
fi
|
|
|
|
# clean up after ourselves
|
|
apt-get clean
|
|
rm -rf /var/lib/apt/lists/*
|