Attempt to add some arm builders to staging koji.

This commit is contained in:
Kevin Fenzi 2015-09-10 22:30:37 +00:00
parent 7701b80b82
commit fb10ea2712
2 changed files with 14 additions and 0 deletions

View file

@ -110,6 +110,10 @@ arm01-builder21.arm.fedoraproject.org
arm01-builder22.arm.fedoraproject.org
arm01-builder23.arm.fedoraproject.org
[arm-stg]
arm01-builder22.arm.fedoraproject.org
arm01-builder23.arm.fedoraproject.org
#
# These are primary arch builders.
#

View file

@ -82,6 +82,16 @@ insert into host_channels (host_id, channel_id) values (
{% endfor %}
{% endfor %}
{% for host in groups['arm-stg'] %}
insert into users (name, usertype, status) values ('{{ host }}', 1, 0);
insert into host (user_id, name, arches) values (
(select id from users where name='{{host}}'), '{{host}}', 'armhfp');
{% for channel in [ 'default', 'createrepo', 'maven', 'appliance', 'livecd', 'vm', 'secure-boot', 'compose', 'eclipse', 'images', 'image'] %}
insert into host_channels (host_id, channel_id) values (
(select id from host where name='{{host}}'), (select id from channels where name='{{channel}}'));
{% endfor %}
{% endfor %}
-- Add some people to be admins, only in staging. Feel free to grow this list..
select now() as time, 'adding staging admin(s)' as msg;