Fix gate source building
Fix a backtrace. Also add the default master locations for the various tarballs. Change-Id: I9675c2619b95c0ae6a467ffbf964c4b17ae4b791 Paritally-Implements: blueprint gate-source-builds
This commit is contained in:
parent
9bd3ea7207
commit
971d83645d
75
build.ini
75
build.ini
@ -1,4 +1,79 @@
|
||||
[barbican]
|
||||
type = url
|
||||
location = http://tarballs.openstack.org/barbican/barbican-master.tar.gz
|
||||
dest_filename = barbican.tar
|
||||
|
||||
[barbican-base]
|
||||
type = url
|
||||
location = http://tarballs.openstack.org/barbican/barbican-master.tar.gz
|
||||
dest_filename = barbican.tar
|
||||
|
||||
[ceilometer-base]
|
||||
type = url
|
||||
location = http://tarballs.openstack.org/ceilometer/ceilometer-master.tar.gz
|
||||
dest_filename = ceilometer.tar
|
||||
|
||||
[cinder-base]
|
||||
type = url
|
||||
location = http://tarballs.openstack.org/cinder/cinder-master.tar.gz
|
||||
dest_filename = cinder.tar
|
||||
|
||||
[designate-base]
|
||||
type = url
|
||||
location = http://tarballs.openstack.org/designate/designate-master.tar.gz
|
||||
dest_filename = designate.tar
|
||||
|
||||
[glance-base]
|
||||
type = url
|
||||
location = http://tarballs.openstack.org/glance/glance-master.tar.gz
|
||||
dest_filename = glance.tar
|
||||
|
||||
[gnocchi-base]
|
||||
type = url
|
||||
location = http://tarballs.openstack.org/gnocchi/gnocchi-master.tar.gz
|
||||
dest_filename = gnocchi.tar
|
||||
|
||||
[heat-base]
|
||||
type = url
|
||||
location = http://tarballs.openstack.org/heat/heat-master.tar.gz
|
||||
dest_filename = heat.tar
|
||||
|
||||
[horizon]
|
||||
type = url
|
||||
location = http://tarballs.openstack.org/horizon/horizon-master.tar.gz
|
||||
dest_filename = horizon.tar
|
||||
|
||||
[keystone]
|
||||
type = url
|
||||
location = http://tarballs.openstack.org/keystone/keystone-master.tar.gz
|
||||
dest_filename = keystone.tar
|
||||
|
||||
[magnum-base]
|
||||
type = url
|
||||
location = http://tarballs.openstack.org/magnum/magnum-master.tar.gz
|
||||
dest_filename = magnum.tar
|
||||
|
||||
[murano-base]
|
||||
type = url
|
||||
location = http://tarballs.openstack.org/murano/murano-master.tar.gz
|
||||
dest_filename = murano.tar
|
||||
|
||||
[neutron-base]
|
||||
type = url
|
||||
location = http://tarballs.openstack.org/neutron/neutron-master.tar.gz
|
||||
dest_filename = neutron.tar
|
||||
|
||||
[nova-base]
|
||||
type = url
|
||||
location = http://tarballs.openstack.org/nova/nova-master.tar.gz
|
||||
dest_filename = nova.tar
|
||||
|
||||
[swift-base]
|
||||
type = url
|
||||
location = http://tarballs.openstack.org/swift/swift-master.tar.gz
|
||||
dest_filename = swift.tar
|
||||
|
||||
[zaqar]
|
||||
type = url
|
||||
location = http://tarballs.openstack.org/zaqar/zaqar-master.tar.gz
|
||||
dest_filename = zaqar.tar
|
||||
|
@ -69,7 +69,7 @@ class WorkerThread(Thread):
|
||||
self.queue.task_done()
|
||||
|
||||
def process_source(self, source, dest_dir):
|
||||
if source['type'] == 'url':
|
||||
if source.get('type') == 'url':
|
||||
r = requests.get(source['source'])
|
||||
|
||||
if r.status_code == 200:
|
||||
|
Loading…
Reference in New Issue
Block a user