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.
What are the reasons/motivation for this change?
push
andpull_request
which often results in duplicated jobs when maintainers push commits to this repo that are also a part of a PR. Concurrent skipping was enabled to reduce this duplicated work, but this has problems of its own and has resulted in a few PRs being merged to main and then failing.Explain how this is achieved.
workflow_dispatch
by manually triggering tests to run on their branch.test-build.yml
into a newtest-sanitizers.yml
. This new workflow doesn't automatically run on PRs, but again can be triggered withworkflow_dispatch
. This workflow is currently set to run on all pushes to main, but may in future be changed to run only on trigger, with the version bump triggering it to run, limiting to a max of once per day.If applicable, please suggest to reviewers how they can test the change.