jobs/build: don't try to complete ongoing builds #822
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Since 973bcf9 ("jobs/build: rerun
build-arch
if previous build isincomplete"), there is a race possible where the
build
job rerun logiccould kick in before the
release
jobs initially triggered for thatbuild has finished. We don't want to queue builds in that case.
Gate the rerun logic on whether the multi-arch locks and release lock
are taken.
It's theoretically possible but highly unlikely that we probe the lock
status before the previous
release
job takes it. Ideally, we wouldhave a way to directly take the lock and "transfer" its ownership to the
job we trigger. Anyway, if that somehow happens, it would result in the
job being run twice, which is safe.