ci: run prometheus regtest as final step for ASAN builds#24
Draft
ci: run prometheus regtest as final step for ASAN builds#24
Conversation
Co-authored-by: chipitsine <2217296+chipitsine@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add Prometheus query step in regtests for AddressSanitizer builds
ci: run prometheus regtest as final step for ASAN builds
Feb 20, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
ASAN builds include
USE_PROMEX=1but had no dedicated final step to exercise the prometheus exporter under the sanitizer. This adds an explicit prometheus query at the end of ASAN CI runs to catch memory errors that only surface during prometheus scrapes.Changes
.github/workflows/vtest.yml: Add a new step "Run Prometheus query (ASAN only)" conditioned oncontains(matrix.name, 'ASAN'), placed after the mainreg-testsstep:Uses
REG_TEST_FILESto run onlyreg-tests/contrib/prometheus.vtc— no full suite re-run. Thecontains(matrix.name, 'ASAN')condition is already used elsewhere in the same workflow (line 73) for ASAN detection.Original prompt
💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.