Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove linux debug target, and change test results publisher to test-summary/action because it is faster. #4573

Merged
merged 30 commits into from
Jan 2, 2025
Merged
Changes from 26 commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
6006ecd
Resolve merge conflict
imindich Dec 16, 2024
b5f5979
Remove filter and update targets
imindich Dec 12, 2024
8ffd8aa
Remove test report action
imindich Dec 13, 2024
8c9a35d
Try other test result publishers
imindich Dec 13, 2024
88ee281
Pin version tag
imindich Dec 13, 2024
11814eb
use always() in conditionals
imindich Dec 13, 2024
7cbcced
trigger checks
imindich Dec 13, 2024
6e51aac
Update to Use results dir, and continue on test failure.
imindich Dec 16, 2024
38f4939
Only write summaries
imindich Dec 16, 2024
54c001d
Add back test targets and remove some failing tests from filters.
imindich Dec 17, 2024
ccb382f
Try new reporter, report all test runs
imindich Dec 19, 2024
e2bfde5
Upload test summary markdown file.
imindich Dec 20, 2024
5bc1c4c
typo
imindich Dec 20, 2024
c53f0b9
Try outputting markdown and try dorny test reporter again
imindich Dec 20, 2024
9ce3ba8
specify bash shell
imindich Dec 20, 2024
0ee4eb9
Try creating check with workflow_run
imindich Dec 21, 2024
70593a1
Show failed/skipped tests.
imindich Dec 23, 2024
e906edf
Remove filters
imindich Dec 23, 2024
4a0dd22
Clean up publishers.
imindich Dec 23, 2024
61520b1
Remove on workflow_run
imindich Dec 23, 2024
f94990b
Add back filter files
imindich Dec 23, 2024
97950a0
Add back debug,qa,gold envs
imindich Dec 23, 2024
f59b65b
Update step name
imindich Dec 23, 2024
9c84c7e
Undo changes to filter files.
imindich Dec 23, 2024
dbd40a7
Rename test-summary-foo=>test-report-summary
imindich Dec 23, 2024
c5cbfdd
Add continue-on-error=true
imindich Dec 23, 2024
ef1a62e
Remove debug config
imindich Dec 23, 2024
6834bcb
Add back debug
imindich Dec 23, 2024
85709a4
Remove debug from env because it takes >1 hour to build.
imindich Dec 23, 2024
32e518d
Merge branch 'main' into debug
imindich Jan 2, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 10 additions & 4 deletions .github/actions/process_test_results/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,18 @@ runs:
name: ${{ inputs.test_results_key }}
path: results/

- name: Publish Test Report
- name: Test Summary action
continue-on-error: true
uses: mikepenz/action-junit-report@992d97d6eb2e5f3de985fbf9df6a04386874114d
uses: test-summary/action@31493c76ec9e7aa675f1585d3ed6f1da69269a86
if: always()
imindich marked this conversation as resolved.
Show resolved Hide resolved
with:
report_paths: results/*.xml
skip_annotations: true
paths: "results/*.xml"
output: test-report-summary.md
show: "fail, skip"

- name: Output test summary markdown to github
run: cat test-report-summary.md >> $GITHUB_STEP_SUMMARY
shell: bash

- name: Get Datadog CLI
id: download-dd-cli
Expand Down
Loading