chore: use dorny/test-reporter for reporting gh action test results#2036
Merged
Conversation
1447906 to
33f4bec
Compare
33f4bec to
84fb7d7
Compare
0c9b710 to
8b8915f
Compare
8b8915f to
a70854d
Compare
chenba
commented
Feb 3, 2026
| "RUSTSEC-2024-0365", # Bound by diesel 1.4 (4GB limit n/a to tokenserver) | ||
| "RUSTSEC-2024-0421", # Bound by diesel 1.4, `idna` < 0.1.5, Upgrade to >=1.0.0 | ||
| "RUSTSEC-2024-0437", # Bound by grpcio 0.13, | ||
| "RUSTSEC-2026-0002", # Bound by mysql_async, via diesel-async |
Collaborator
Author
There was a problem hiding this comment.
chenba
commented
Feb 3, 2026
| SYNC_SYNCSTORAGE__ENFORCE_QUOTA: 1 | ||
|
|
||
| - name: Publish Test Report | ||
| uses: dorny/test-reporter@a810f9bf83f2344124a920a7a0a85a6716e791f0 |
Collaborator
Author
There was a problem hiding this comment.
This is the version that's approved and allow-listed by GH Org admins.
chenba
commented
Feb 3, 2026
| EPOCH_TIME := $(shell date +"%s") | ||
| TEST_RESULTS_DIR ?= workflow/test-results | ||
| TEST_PROFILE := $(if $(CIRCLECI),ci,default) | ||
| TEST_PROFILE := $(if $(or $(CIRCLECI),$(GITHUB_ACTIONS)),ci,default) |
Collaborator
Author
There was a problem hiding this comment.
The 'ci' profile enables the junit output format on nextest.
Collaborator
Author
Collaborator
Author
|
😆 yeah not sure what's with that screenshot preview in the comment above |
pjenvey
approved these changes
Feb 4, 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.

We run tests with gh actions but we don't have a nice test reporter to view the results. Let's try dorny/test-reporter.
Closes STOR-471