diff --git a/.github/actions/process_test_results/action.yaml b/.github/actions/process_test_results/action.yaml index f994480b7b2..bce228e5ad7 100644 --- a/.github/actions/process_test_results/action.yaml +++ b/.github/actions/process_test_results/action.yaml @@ -16,12 +16,17 @@ 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 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 diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 45e7ef8e073..bfd96b5d001 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -133,7 +133,7 @@ jobs: matrix: platform: ${{ fromJson(needs.initialize.outputs.platforms) }} include: ${{ fromJson(needs.initialize.outputs.includes) }} - config: [devel, debug, qa, gold] + config: [devel, qa, gold] container: ${{ needs.docker-build-image.outputs.docker_tag }} env: TEST_ARTIFACTS_KEY: ${{ matrix.platform }}_${{ matrix.name }}_test_artifacts