mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 11:37:28 +08:00
99bbbf810b
As is github tradition, workflows started yelling about running on a node version that was getting sunset, so here we go again. Relevant bumps: - https://github.com/actions/checkout/releases/tag/v4.0.0 - https://github.com/actions/setup-dotnet/releases/tag/v4.0.0 - https://github.com/actions/cache/releases/tag/v4.0.0 - https://github.com/actions/setup-java/releases/tag/v4.0.0 - https://github.com/peter-evans/create-pull-request/releases/tag/v6.0.0 - https://github.com/dorny/test-reporter/releases/tag/v1.8.0 Notably, `actions/upload-artifact` is _not_ bumped to v4, although it should be to resolve the node deprecation warnings, because it has more breaking changes and bumping would break `dorny/test-reporter` (see https://github.com/dorny/test-reporter/issues/363).
39 lines
1.3 KiB
YAML
39 lines
1.3 KiB
YAML
# This is a workaround to allow PRs to report their coverage. This will run inside the base repository.
|
|
# See:
|
|
# * https://github.com/dorny/test-reporter#recommended-setup-for-public-repositories
|
|
# * https://docs.github.com/en/actions/reference/authentication-in-a-workflow#permissions-for-the-github_token
|
|
name: Annotate CI run with test results
|
|
on:
|
|
workflow_run:
|
|
workflows: ["Continuous Integration"]
|
|
types:
|
|
- completed
|
|
permissions: {}
|
|
jobs:
|
|
annotate:
|
|
permissions:
|
|
checks: write # to create checks (dorny/test-reporter)
|
|
|
|
name: Annotate CI run with test results
|
|
runs-on: ubuntu-latest
|
|
if: ${{ github.event.workflow_run.conclusion != 'cancelled' }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os:
|
|
- { prettyname: Windows }
|
|
- { prettyname: macOS }
|
|
- { prettyname: Linux }
|
|
threadingMode: ['SingleThread', 'MultiThreaded']
|
|
timeout-minutes: 5
|
|
steps:
|
|
- name: Annotate CI run with test results
|
|
uses: dorny/test-reporter@v1.8.0
|
|
with:
|
|
artifact: osu-test-results-${{matrix.os.prettyname}}-${{matrix.threadingMode}}
|
|
name: Test Results (${{matrix.os.prettyname}}, ${{matrix.threadingMode}})
|
|
path: "*.trx"
|
|
reporter: dotnet-trx
|
|
list-suites: 'failed'
|
|
list-tests: 'failed'
|