Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/transport-interop-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ concurrency:

jobs:
resolve-parameters:
runs-on: [self-hosted, linux, x64, ephemeral]
runs-on: ubuntu-latest
outputs:
test-select: ${{ steps.resolve.outputs.test-select }}
test-ignore: ${{ steps.resolve.outputs.test-ignore }}
Expand Down Expand Up @@ -132,7 +132,7 @@ jobs:
run-tests:
needs: resolve-parameters
if: needs.resolve-parameters.outputs.should-run-tests == 'true'
runs-on: [self-hosted, linux, x64, ephemeral]
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand All @@ -142,7 +142,7 @@ jobs:
with:
test-select: '${{ needs.resolve-parameters.outputs.test-select }}'
test-ignore: '${{ needs.resolve-parameters.outputs.test-ignore }}'
cache-dir: /srv/cache
cache-dir: ${{ github.workspace }}/.cache
snapshot: ${{ needs.resolve-parameters.outputs.snapshot }}
export-docker-images: ${{ needs.resolve-parameters.outputs.export-docker-images }}
force-matrix-rebuild: ${{ needs.resolve-parameters.outputs.force-matrix-rebuild }}
Expand Down
15 changes: 7 additions & 8 deletions transport/images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ test-aliases:
- alias: "js"
value: "js-v1.x|js-v2.x|js-v3.x"
- alias: "nim"
value: "nim-v1.14"
value: "nim-v2.2.0"
- alias: "jvm"
value: "jvm-v1.2"
- alias: "c"
Expand All @@ -35,7 +35,7 @@ test-aliases:
- alias: "lua"
value: "lua-v0.1.0"
- alias: "failing" # everything except rust-v0.56 and js and python-v0.x implementations as of 25 Jan 2026
value: "~browsers|go-v0.38|go-v0.39|go-v0.40|go-v0.41|go-v0.42|go-v0.43|go-v0.44|go-v0.45|~nim|~jvm|~c|~dotnet|~zig|eth-p2p-z-v0.0.1|rust-v0.53|rust-v0.54|rust-v0.55|lua-v0.1.0 x python-v0.x"
value: "~browsers|go-v0.38|go-v0.39|go-v0.40|go-v0.41|go-v0.42|go-v0.43|go-v0.44|go-v0.45|~jvm|~c|~dotnet|~zig|eth-p2p-z-v0.0.1|rust-v0.53|rust-v0.54|rust-v0.55|lua-v0.1.0 x python-v0.x"

implementations:
# Leanp2p implementations
Expand Down Expand Up @@ -254,16 +254,15 @@ implementations:
dialOnly: [wss]

# Nim implementation
- id: nim-v1.14
- id: nim-v2.2.0
source:
type: github
repo: status-im/nim-libp2p
commit: 0309685cd27d4bf763c8b3be86a76c33bcfe67ea
dockerfile: interop/transport/Dockerfile
transports: [tcp, ws]
repo: vacp2p/nim-libp2p
commit: bd689933bddb3e3ef3a3b76cbf3916a328becf7f
dockerfile: interop/transport-v2/Dockerfile
transports: [tcp, ws, quic-v1]
secureChannels: [noise]
muxers: [mplex, yamux]
legacy: true

# JVM implementation
- id: jvm-v1.2
Expand Down
Loading