Steven Dake 6355a63ac0 Fix building of swift images
The swift images are not in the global build script
2014-09-20 20:16:59 -07:00

13 lines
497 B
Bash
Executable File

#!/bin/bash
# If the directories were numbered, a simple find could be used to build ;-)
CONTAINERS=(fedora-rdo-base cinder glance/glance-base glance/glance-api glance/glance-registry heat/heat-base heat/heat-api heat/heat-engine keystone mariadb rabbitmq swift/swift-base swift/swift-account swift/swift-container swift/swift-object swift/swift-proxy-server)
for IMAGE in ${CONTAINERS[@]}; do
echo "Building $IMAGE"
pushd .
cd ${IMAGE}
./build
popd
done