Skip to content

Test Report

Test Report #9465

Workflow file for this run

# This file is part of BOINC.
# http://boinc.berkeley.edu
# Copyright (C) 2023 University of California
#
# BOINC is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License
# as published by the Free Software Foundation,
# either version 3 of the License, or (at your option) any later version.
#
# BOINC is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
# See the GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with BOINC. If not, see <http://www.gnu.org/licenses/>.
name: 'Test Report'
on:
workflow_run:
workflows: [Linux, Android, Windows] # runs after these workflow
types:
- completed
jobs:
report:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b
- name: Download artifacts
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e
with:
github-token: ${{ secrets.ACTIONS_TEST_REPORT_TOKEN }}
run-id: ${{ github.event.workflow_run.id }}
path: test-reports
pattern: '*_tests_results'
- uses: dorny/test-reporter@c40d89d5e987cd80f3a32b3c233556e22bdca958
with:
name: 'Tests Report'
path: 'test-reports/**/*.xml'
reporter: java-junit
fail-on-error: false