From ae02cb5442080fc1e6943a6ba32f2a4e5fd50022 Mon Sep 17 00:00:00 2001 From: Radoslaw Kaminski Date: Mon, 23 Mar 2026 16:18:10 +0000 Subject: [PATCH 1/7] update known errors --- transport-interop/knownErrors.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/transport-interop/knownErrors.json b/transport-interop/knownErrors.json index ac976185b..f1485cf0c 100644 --- a/transport-interop/knownErrors.json +++ b/transport-interop/knownErrors.json @@ -10,5 +10,6 @@ "^chromium-js-v1\\.x x go-v0\\.47 \\(webtransport\\)", "^chromium-js-v2\\.x x (chromium-js-v1\\.x|webkit-js-v2\\.x) \\(webrtc\\)", "firefox-js-v2\\.x x webkit-js-v1\\.x \\(webrtc\\)", - "^chromium-js-v2\\.x x go-v0\\.45 \\(wss, noise, yamux\\)" + "^chromium-js-v2\\.x x go-v0\\.45 \\(wss, noise, yamux\\)", + "eth-p2p-z-v0\\.0\\.1" ] From fca81a84c6edc236b4f09133757c88c1524187fe Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 23 Mar 2026 16:55:13 +0000 Subject: [PATCH 2/7] chore: update the link to the interop dashboard [skip ci] --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2f01ac210..1b9d9ebc6 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Interoperability/end to end test-plans & performance benchmarking for libp2p -[![Interop Dashboard](https://github.com/libp2p/test-plans/workflows/libp2p%20transport%20interop%20test/badge.svg?branch=master)](https://github.com/libp2p/test-plans/actions/runs/23318748897/attempts/1#summary-67827499487) +[![Interop Dashboard](https://github.com/rlve/test-plans/workflows/libp2p%20transport%20interop%20test/badge.svg?branch=master)](https://github.com/rlve/test-plans/actions/runs/23448200447/attempts/1#summary-68221942879) [![Made by Protocol Labs](https://img.shields.io/badge/made%20by-Protocol%20Labs-blue.svg?style=flat-square)](http://protocol.ai) From 771f4b72e95ba565681aed82e19a383b4137c4ef Mon Sep 17 00:00:00 2001 From: Radoslaw Kaminski Date: Tue, 24 Mar 2026 09:52:29 +0000 Subject: [PATCH 3/7] Revert "update known errors" This reverts commit ae02cb5442080fc1e6943a6ba32f2a4e5fd50022. --- transport-interop/knownErrors.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/transport-interop/knownErrors.json b/transport-interop/knownErrors.json index f1485cf0c..ac976185b 100644 --- a/transport-interop/knownErrors.json +++ b/transport-interop/knownErrors.json @@ -10,6 +10,5 @@ "^chromium-js-v1\\.x x go-v0\\.47 \\(webtransport\\)", "^chromium-js-v2\\.x x (chromium-js-v1\\.x|webkit-js-v2\\.x) \\(webrtc\\)", "firefox-js-v2\\.x x webkit-js-v1\\.x \\(webrtc\\)", - "^chromium-js-v2\\.x x go-v0\\.45 \\(wss, noise, yamux\\)", - "eth-p2p-z-v0\\.0\\.1" + "^chromium-js-v2\\.x x go-v0\\.45 \\(wss, noise, yamux\\)" ] From 654ad795d602244e2e2f9ecd75a3dda162e47ae1 Mon Sep 17 00:00:00 2001 From: Radoslaw Kaminski Date: Tue, 24 Mar 2026 10:00:10 +0000 Subject: [PATCH 4/7] add known-errors input --- .github/actions/run-transport-interop-test/action.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/actions/run-transport-interop-test/action.yml b/.github/actions/run-transport-interop-test/action.yml index a68903a41..bee965ee4 100644 --- a/.github/actions/run-transport-interop-test/action.yml +++ b/.github/actions/run-transport-interop-test/action.yml @@ -44,6 +44,10 @@ inputs: description: "Enable verbose output" required: false default: false + known-errors: + description: "Regex pattern matching known/expected test failures. Matched failures show as yellow (warning) instead of red (error) and won't fail the workflow." + required: false + default: "" runs: using: "composite" steps: @@ -103,7 +107,12 @@ runs: - name: Render results if: inputs.render == 'true' working-directory: ${{ steps.find-workdir.outputs.WORK_DIR }} - run: npm run renderResults > ./dashboard.md + run: | + if [ -n "${{ inputs.known-errors }}" ]; then + npm run renderResults -- --known-errors "${{ inputs.known-errors }}" > ./dashboard.md + else + npm run renderResults > ./dashboard.md + fi shell: bash - name: Show Dashboard Output From 30b9290288cd7e278ac64ae2169959c34b914eb2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 24 Mar 2026 10:24:53 +0000 Subject: [PATCH 5/7] chore: update the link to the interop dashboard [skip ci] --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1b9d9ebc6..527152bea 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Interoperability/end to end test-plans & performance benchmarking for libp2p -[![Interop Dashboard](https://github.com/rlve/test-plans/workflows/libp2p%20transport%20interop%20test/badge.svg?branch=master)](https://github.com/rlve/test-plans/actions/runs/23448200447/attempts/1#summary-68221942879) +[![Interop Dashboard](https://github.com/rlve/test-plans/workflows/libp2p%20transport%20interop%20test/badge.svg?branch=master)](https://github.com/rlve/test-plans/actions/runs/23483646960/attempts/1#summary-68336609147) [![Made by Protocol Labs](https://img.shields.io/badge/made%20by-Protocol%20Labs-blue.svg?style=flat-square)](http://protocol.ai) From 719f3828ccae54c79425b6eea7581a07b062423b Mon Sep 17 00:00:00 2001 From: Radoslaw Kaminski Date: Tue, 24 Mar 2026 10:57:08 +0000 Subject: [PATCH 6/7] revert readme change --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 527152bea..2f01ac210 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Interoperability/end to end test-plans & performance benchmarking for libp2p -[![Interop Dashboard](https://github.com/rlve/test-plans/workflows/libp2p%20transport%20interop%20test/badge.svg?branch=master)](https://github.com/rlve/test-plans/actions/runs/23483646960/attempts/1#summary-68336609147) +[![Interop Dashboard](https://github.com/libp2p/test-plans/workflows/libp2p%20transport%20interop%20test/badge.svg?branch=master)](https://github.com/libp2p/test-plans/actions/runs/23318748897/attempts/1#summary-67827499487) [![Made by Protocol Labs](https://img.shields.io/badge/made%20by-Protocol%20Labs-blue.svg?style=flat-square)](http://protocol.ai) From c23c37fa768fe37fc2519ba629be6492b3eabb4d Mon Sep 17 00:00:00 2001 From: Radoslaw Kaminski Date: Tue, 24 Mar 2026 11:02:47 +0000 Subject: [PATCH 7/7] update comment --- .github/actions/run-transport-interop-test/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/run-transport-interop-test/action.yml b/.github/actions/run-transport-interop-test/action.yml index bee965ee4..2e1bf25a2 100644 --- a/.github/actions/run-transport-interop-test/action.yml +++ b/.github/actions/run-transport-interop-test/action.yml @@ -45,7 +45,7 @@ inputs: required: false default: false known-errors: - description: "Regex pattern matching known/expected test failures. Matched failures show as yellow (warning) instead of red (error) and won't fail the workflow." + description: "Regex for known test failures. Matched failures show as yellow instead of red and won't fail the workflow. Merged with knownErrors.json if present." required: false default: "" runs: