bba0d90ab7
This helps debug what might be missing when a wheel build fails Change-Id: I775bb3eb577b104002d045bc337f20e72a03adff
15 lines
485 B
Bash
Executable File
15 lines
485 B
Bash
Executable File
#!/bin/bash -xe
|
|
|
|
# Working variables
|
|
WHEELHOUSE_DIR=$1
|
|
PROJECT=openstack/requirements
|
|
WORKING_DIR=`pwd`/$PROJECT
|
|
|
|
# Extract and iterate over all the branch names.
|
|
BRANCHES=`git --git-dir=$WORKING_DIR/.git branch -r | grep '^ origin/[^H]'`
|
|
for BRANCH in $BRANCHES; do
|
|
git --git-dir=$WORKING_DIR/.git show $BRANCH:upper-constraints.txt \
|
|
2>/dev/null > /tmp/upper-constraints.txt || true
|
|
pip --verbose wheel -r /tmp/upper-constraints.txt -w $WHEELHOUSE_DIR || true
|
|
done
|