Skip to content

Commit

Permalink
Disable test report publishing for all tests workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
TadeasKriz committed Aug 10, 2024
1 parent 38ed19c commit b78dd55
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions .github/workflows/all-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@ jobs:
env:
KOTLIN_LINK_MODE: ${{ matrix.linkage }}
KOTLIN_BUILD_CONFIGURATION: ${{ matrix.configuration }}
- name: Publish Test Report
uses: mikepenz/action-junit-report@v3
if: always()
with:
check_name: "Test Reports - Acceptance Tests (${{ matrix.linkage }}, ${{ matrix.configuration }})"
report_paths: 'SKIE/acceptance-tests/build/test-results/functional__*/TEST-*.xml'
require_tests: true
# - name: Publish Test Report
# uses: mikepenz/action-junit-report@v3
# if: always()
# with:
# check_name: "Test Reports - Acceptance Tests (${{ matrix.linkage }}, ${{ matrix.configuration }})"
# report_paths: 'SKIE/acceptance-tests/functional/build/test-results/kgp_*/TEST-*.xml'
# require_tests: true

type-mapping-tests:
name: Type Mapping Tests
Expand Down Expand Up @@ -72,13 +72,13 @@ jobs:
KOTLIN_LINK_MODE: ${{ matrix.linkage }}
KOTLIN_TARGET: ${{ matrix.target }}
KOTLIN_BUILD_CONFIGURATION: ${{ matrix.configuration }}
- name: Publish Test Report
uses: mikepenz/action-junit-report@v3
if: always()
with:
check_name: "Test Reports - Type Mapping Tests (${{ matrix.target }}, ${{ matrix.linkage }}, ${{ matrix.configuration }})"
report_paths: 'SKIE/acceptance-tests/build/test-results/type-mapping__*/TEST-*.xml'
require_tests: true
# - name: Publish Test Report
# uses: mikepenz/action-junit-report@v3
# if: always()
# with:
# check_name: "Test Reports - Type Mapping Tests (${{ matrix.target }}, ${{ matrix.linkage }}, ${{ matrix.configuration }})"
# report_paths: 'SKIE/acceptance-tests/type-mapping/build/test-results/kgp_*/TEST-*.xml'
# require_tests: true

external-libraries-tests:
name: External Libraries Tests
Expand All @@ -105,10 +105,10 @@ jobs:
env:
KOTLIN_LINK_MODE: ${{ matrix.linkage }}
KOTLIN_BUILD_CONFIGURATION: ${{ matrix.configuration }}
- name: Publish Test Report
uses: mikepenz/action-junit-report@v3
if: always()
with:
check_name: "Test Reports - External Libraries Tests (${{ matrix.linkage }}, ${{ matrix.configuration }})"
report_paths: 'SKIE/acceptance-tests/build/test-results/libraries__*/TEST-*.xml'
require_tests: true
# - name: Publish Test Report
# uses: mikepenz/action-junit-report@v3
# if: always()
# with:
# check_name: "Test Reports - External Libraries Tests (${{ matrix.linkage }}, ${{ matrix.configuration }})"
# report_paths: 'SKIE/acceptance-tests/libraries/build/test-results/kgp_*/TEST-*.xml'
# require_tests: true

0 comments on commit b78dd55

Please sign in to comment.