GH Actions/test: allow concurrency for code coverage builds - take two #735
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.
Description
Follow up on #710, which was added with the following reasoning:
Let's try this again.
The previous attempt to prevent cancelling code coverage builds for merges to the "main" branches is not working as intended and is still cancelling builds.
This is likely due to the way GH looks at concurrency groups:
Interpreting this strictly, this appears to mean that, as soon as a
concurrency
group
name is defined, there can now only be - at most - two builds for that group - one running, one queued -, while without theconcurrency
group
name being associated with a build, there can be unlimited concurrent builds.This means that code coverage builds for merges in quick succession are still being killed off.
This new attempt now moves the
concurrency
setting from the workflow level to the "job" level and adds thejob
name to thegroup
key. This should hopefully still allow for cancelling in progress builds for thebuild
andtest
jobs, while leaving thecoverage
(andcoveralls-finish
) jobs alone.The down-side of this change (providing it works) is that it can't be limited to the "main" branches, which means that the
coverage
jobs will now continue running for every push to an open pull request as well. While a little wasteful, that appears to be the price to pay.Refs:
Suggested changelog entry
N/A