2023-08-21 03:50:38 +00:00
|
|
|
name: Interoperability Testing
|
|
|
|
on:
|
2024-06-08 11:32:45 +00:00
|
|
|
workflow_dispatch:
|
2023-08-21 03:50:38 +00:00
|
|
|
pull_request:
|
2024-06-08 11:32:45 +00:00
|
|
|
paths:
|
|
|
|
- 'config/**'
|
|
|
|
- 'core/**'
|
|
|
|
- 'internal/**'
|
|
|
|
- 'p2p/**'
|
|
|
|
- 'test-plans/**'
|
2023-08-21 03:50:38 +00:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- "master"
|
2024-06-08 11:32:45 +00:00
|
|
|
paths:
|
|
|
|
- 'config/**'
|
|
|
|
- 'core/**'
|
|
|
|
- 'internal/**'
|
|
|
|
- 'p2p/**'
|
|
|
|
- 'test-plans/**'
|
2023-08-21 03:50:38 +00:00
|
|
|
|
|
|
|
jobs:
|
2024-06-08 11:32:45 +00:00
|
|
|
run-transport-interop:
|
|
|
|
name: Run transport interoperability tests
|
2023-08-21 03:50:38 +00:00
|
|
|
runs-on: ${{ fromJSON(vars['INTEROP_TEST_RUNNER_UBUNTU'] || '"ubuntu-22.04"') }}
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Build image
|
|
|
|
run: docker build -t go-libp2p-head -f test-plans/PingDockerfile .
|
2024-06-08 11:32:45 +00:00
|
|
|
- uses: libp2p/test-plans/.github/actions/run-transport-interop-test@master
|
2023-08-21 03:50:38 +00:00
|
|
|
with:
|
|
|
|
test-filter: go-libp2p-head
|
|
|
|
extra-versions: ${{ github.workspace }}/test-plans/ping-version.json
|
|
|
|
s3-cache-bucket: libp2p-by-tf-aws-bootstrap
|
|
|
|
s3-access-key-id: ${{ vars.TEST_PLANS_BUILD_CACHE_KEY_ID }}
|
|
|
|
s3-secret-access-key: ${{ secrets.TEST_PLANS_BUILD_CACHE_KEY }}
|