Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 6 additions & 0 deletions .github/workflows/build_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,12 @@ jobs:
run: |
# Test that baselibs works when consumed as an external module dependency
cd examples/integration && bazel build //... && bazel mod deps --lockfile_mode=update
- name: Upload JUnit XML test reports
if: always()
uses: actions/upload-artifact@v7
with:
name: junit-xml-reports
path: bazel-testlogs/**/*.xml
- name: Upload test logs on failure
if: failure()
uses: actions/upload-artifact@v7
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/build_qnx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,3 +60,9 @@ jobs:
score-qnx-license: ${{ secrets.SCORE_QNX_LICENSE }}
score-qnx-user: ${{ secrets.SCORE_QNX_USER }}
score-qnx-password: ${{ secrets.SCORE_QNX_PASSWORD }}
steps:
- name: Upload JUnit XML
uses: actions/upload-artifact@v7
with:
name: junit-xml-qnx
path: bazel-testlogs/**/*.xml
1 change: 1 addition & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,6 @@ Summary
:caption: Contents:

json/index.rst
test_traceability.rst


37 changes: 37 additions & 0 deletions docs/test_traceability.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
..
# *******************************************************************************
# Copyright (c) 2026 Contributors to the Eclipse Foundation
#
# See the NOTICE file(s) distributed with this work for additional
# information regarding copyright ownership.
#
# This program and the accompanying materials are made available under the
# terms of the Apache License Version 2.0 which is available at
# https://www.apache.org/licenses/LICENSE-2.0
#
# SPDX-License-Identifier: Apache-2.0
# *******************************************************************************

Test Traceability Report
========================

This report shows test case needs parsed from Bazel JUnit XML files (test.xml)
by the SCORE docs-as-code toolchain.

All Parsed Test Cases
---------------------

.. needtable::
:types: testcase

Unlinked Test Cases
-------------------

.. needtable::
:types: testcase
:filter: not partially_verifies and not fully_verifies

JUnit XML Upload
-----------------

This workflow now uploads JUnit XML test reports as artifacts for traceability analysis.
Loading