Skip to content

Commit bfc9929

Browse files
committed
chore: move interop workflow to daily common
1 parent 60bb0b4 commit bfc9929

File tree

2 files changed

+19
-19
lines changed

2 files changed

+19
-19
lines changed

.github/workflows/daily_common.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,3 +95,22 @@ jobs:
9595
9696
export NIMFLAGS="${NIMFLAGS} --mm:${{ matrix.nim.memory_management }}"
9797
nimble testintegration
98+
99+
- name: Run interop hole punching test
100+
runs-on: ubuntu-22.04
101+
steps:
102+
- uses: actions/checkout@v4
103+
- uses: docker/setup-buildx-action@v3
104+
- name: Build image
105+
run: docker buildx build --load -t nim-libp2p-head -f interop/hole-punching/Dockerfile .
106+
- name: Run tests
107+
uses: libp2p/test-plans/.github/actions/run-interop-hole-punch-test@master
108+
with:
109+
test-filter: nim-libp2p-head
110+
test-ignore: rust # rust v0.53 fails for some reason unrelated to us
111+
extra-versions: ${{ github.workspace }}/interop/hole-punching/version.json
112+
s3-cache-bucket: ${{ vars.S3_LIBP2P_BUILD_CACHE_BUCKET_NAME }}
113+
s3-access-key-id: ${{ vars.S3_LIBP2P_BUILD_CACHE_AWS_ACCESS_KEY_ID }}
114+
s3-secret-access-key: ${{ secrets.S3_LIBP2P_BUILD_CACHE_AWS_SECRET_ACCESS_KEY }}
115+
aws-region: ${{ vars.S3_LIBP2P_BUILD_CACHE_AWS_REGION }}
116+

.github/workflows/interop.yml

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -41,25 +41,6 @@ jobs:
4141
s3-secret-access-key: ${{ secrets.S3_LIBP2P_BUILD_CACHE_AWS_SECRET_ACCESS_KEY }}
4242
aws-region: ${{ vars.S3_LIBP2P_BUILD_CACHE_AWS_REGION }}
4343

44-
# run-hole-punching-interop:
45-
# name: Run hole-punching interoperability tests
46-
# runs-on: ubuntu-22.04
47-
# steps:
48-
# - uses: actions/checkout@v4
49-
# - uses: docker/setup-buildx-action@v3
50-
# - name: Build image
51-
# run: docker buildx build --load -t nim-libp2p-head -f interop/hole-punching/Dockerfile .
52-
# - name: Run tests
53-
# uses: libp2p/test-plans/.github/actions/run-interop-hole-punch-test@master
54-
# with:
55-
# test-filter: nim-libp2p-head
56-
# test-ignore: rust # rust v0.53 fails for some reason unrelated to us
57-
# extra-versions: ${{ github.workspace }}/interop/hole-punching/version.json
58-
# s3-cache-bucket: ${{ vars.S3_LIBP2P_BUILD_CACHE_BUCKET_NAME }}
59-
# s3-access-key-id: ${{ vars.S3_LIBP2P_BUILD_CACHE_AWS_ACCESS_KEY_ID }}
60-
# s3-secret-access-key: ${{ secrets.S3_LIBP2P_BUILD_CACHE_AWS_SECRET_ACCESS_KEY }}
61-
# aws-region: ${{ vars.S3_LIBP2P_BUILD_CACHE_AWS_REGION }}
62-
6344
run-autonatv2-interop:
6445
name: Run AutoNATv2 interoperability tests
6546
runs-on: ubuntu-22.04

0 commit comments

Comments
 (0)