mirror of
https://pagure.io/fm-orchestrator.git
synced 2026-04-26 03:32:10 +08:00
67 lines
2.6 KiB
Python
67 lines
2.6 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Copyright (c) 2016 Red Hat, Inc.
|
|
#
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
# of this software and associated documentation files (the "Software"), to deal
|
|
# in the Software without restriction, including without limitation the rights
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
# copies of the Software, and to permit persons to whom the Software is
|
|
# furnished to do so, subject to the following conditions:
|
|
#
|
|
# The above copyright notice and this permission notice shall be included in all
|
|
# copies or substantial portions of the Software.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
# SOFTWARE.
|
|
#
|
|
# Written by Ralph Bean <rbean@redhat.com>
|
|
|
|
""" Handlers for koji component build events on the message bus. """
|
|
|
|
import rida.builder
|
|
import rida.database
|
|
import rida.pdc
|
|
import logging
|
|
import koji
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
|
def complete(config, session, msg):
|
|
""" Called whenever a koji build completes. """
|
|
|
|
# First, find our ModuleBuild associated with this repo, if any.
|
|
component_build = rida.database.ComponentBuild.from_fedmsg(session, msg)
|
|
if not component_build:
|
|
template = "We have no record of {name}-{version}-{release}"
|
|
log.debug(template.format(**msg['msg']))
|
|
return
|
|
|
|
# Mark the state in the db.
|
|
component_build.state = koji.BUILD_STATES['COMPLETE']
|
|
session.commit()
|
|
|
|
# Find all of the sibling builds of this particular build.
|
|
parent = component_build.module_build
|
|
siblings = parent.component_builds
|
|
|
|
# Are any of them still executing?
|
|
if any([c.state == koji.BUILD_STATES['BUILDING'] for c in siblings]):
|
|
# Then they're not all done yet... continue to wait
|
|
return
|
|
|
|
# Otherwise, check to see if any failed.
|
|
if any([c.state != koji.BUILD_STATES['COMPLETE'] for c in siblings]):
|
|
# They didn't all succeed.. so mark this module build as a failure.
|
|
parent.transition(config, rida.BUILD_STATES['failed'])
|
|
session.commit()
|
|
return
|
|
|
|
# Otherwise.. if all of the builds succeeded, then mark the module as good.
|
|
parent.transition(config, rida.BUILD_STATES['done'])
|