2023-01-10 22:26:27 +00:00
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
pull_request:
|
2023-01-18 00:44:22 +00:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- "master"
|
2023-01-10 22:26:27 +00:00
|
|
|
|
|
|
|
name: libp2p multidimensional interop test
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
run-multidim-interop:
|
2023-07-07 22:41:38 +00:00
|
|
|
runs-on: ['self-hosted', 'linux', 'x64', '4xlarge'] # https://github.com/pl-strflt/tf-aws-gh-runner/blob/main/runners.tf
|
2023-02-01 23:17:22 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: ./.github/actions/run-interop-ping-test
|
2023-02-11 01:00:53 +00:00
|
|
|
with:
|
|
|
|
s3-cache-bucket: libp2p-by-tf-aws-bootstrap
|
|
|
|
s3-access-key-id: ${{ vars.S3_AWS_ACCESS_KEY_ID }}
|
|
|
|
s3-secret-access-key: ${{ secrets.S3_AWS_SECRET_ACCESS_KEY }}
|
2023-07-07 22:41:38 +00:00
|
|
|
worker-count: 16
|
2023-06-20 17:55:43 +00:00
|
|
|
build-without-secrets:
|
2023-02-11 01:00:53 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
2023-06-20 17:55:43 +00:00
|
|
|
# Purposely not using secrets to replicate how forks will behave.
|
2023-02-11 01:00:53 +00:00
|
|
|
- uses: ./.github/actions/run-interop-ping-test
|
|
|
|
with:
|
|
|
|
# It's okay to not run the tests, we only care to check if the tests build without cache.
|
|
|
|
test-filter: '"no test matches this, skip all"'
|