Remove test of project against buildable list

This list should never have existed, If we are not capable
of building a package for a particular project then it wont
be in rdoinfo and map-project-name wont return anything.

Change-Id: I0c4e58851c36019ea11ef5fb2605bb854bac1de9
This commit is contained in:
Derek Higgins 2015-09-21 23:37:07 +01:00
parent 913f5b4668
commit 736741b877
2 changed files with 0 additions and 14 deletions

View File

@ -66,13 +66,3 @@ function filterref(){
PROJ=${PROJ##*/}
echo $PROJ
}
# This is the list of projects we are capable of testing master of
# tripleo-ci should not be added to projects outside of this list without
# ensuring we can build and use its packages in this test
# NB. keep the leading and trailing spaces, keeps the matching simpler
BUILDPACKAGES=" diskimage-builder heat instack instack-undercloud ironic ironic-discoverd neutron nova openstack-puppet-modules os-apply-config os-cloud-config os-collect-config os-refresh-config python-ironic-inspector-client python-tripleoclient python-tuskarclient tripleo-common tripleo-heat-templates tripleo-image-elements tuskar tuskar-ui-extras "
function buildpackage(){
[[ "$BUILDPACKAGES" =~ " $1 " ]] && return 0
return 1
}

View File

@ -113,10 +113,6 @@ for PROJ in $ZUUL_CHANGES ; do
NO_CI_REPO_OK=1
fi
buildpackage $PROJ || continue
PROJDIR=$TRIPLEO_ROOT/$PROJ
MAPPED_PROJ=$(./venv/bin/python scripts/map-project-name $PROJ || true)
[ -e data/$MAPPED_PROJ ] && continue
cp -r $TRIPLEO_ROOT/$PROJ data/$MAPPED_PROJ