This is an automated email from the ASF dual-hosted git repository.
engelen pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/pekko-http.git
The following commit(s) were added to refs/heads/main by this push:
new 2f1f5ce03 Remove job publishing test reports (#692)
2f1f5ce03 is described below
commit 2f1f5ce03392c304cd83bb211fc83c9e45bd7f4f
Author: Arnout Engelen <[email protected]>
AuthorDate: Mon Jun 16 13:54:21 2025 +0200
Remove job publishing test reports (#692)
AFAICT we weren't using the results of this job.
---
.github/workflows/publish-test-reports.yml | 36 ------------------------------
1 file changed, 36 deletions(-)
diff --git a/.github/workflows/publish-test-reports.yml
b/.github/workflows/publish-test-reports.yml
deleted file mode 100644
index fb30b9559..000000000
--- a/.github/workflows/publish-test-reports.yml
+++ /dev/null
@@ -1,36 +0,0 @@
-# Licensed to the Apache Software Foundation (ASF) under one or more
-# license agreements; and to You under the Apache License, version 2.0:
-#
-# https://www.apache.org/licenses/LICENSE-2.0
-#
-# This file is part of the Apache Pekko project, which was derived from Akka.
-#
-
-name: 'Publish Test Reports'
-
-on:
- workflow_run:
- workflows: ['Validate and test'] # runs after CI
workflow
- types:
- - completed
-
-jobs:
- publish-test-results:
- name: "Publish details with dorny-test-reporter"
- runs-on: ubuntu-latest
- if: github.repository == 'apache/pekko-http'
- strategy:
- fail-fast: false
- matrix:
- SCALA_VERSION: [ 2.12, 2.13, 3 ]
- JDK: [ 8, 11 ]
- steps:
- - uses: dorny/test-reporter@v1
- # avoid excessive notification spam, fail-on-error seems broken
https://github.com/dorny/test-reporter/issues/161
- continue-on-error: true
- with:
- artifact: test-results-${{ matrix.JDK }}-${{ matrix.SCALA_VERSION }}
- name: Test Results Details / Scala ${{ matrix.SCALA_VERSION }} on
JDK ${{ matrix.JDK }}
- fail-on-error: false
- path: '**/target/test-reports/*.xml'
- reporter: java-junit
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]