mirror of
https://github.com/status-im/libp2p-test-plans.git
synced 2025-01-11 23:34:21 +00:00
af82e8fc5f
This workflow uses the public cache. It just can't update it. The goal of this workflow is to see how public forks behave. The name is a vestige from when we didn't have a public cache. But the original goal was always to see how public forks and external repos would behave.
29 lines
877 B
YAML
29 lines
877 B
YAML
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- "master"
|
|
|
|
name: libp2p multidimensional interop test
|
|
|
|
jobs:
|
|
run-multidim-interop:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: ./.github/actions/run-interop-ping-test
|
|
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 }}
|
|
build-without-secrets:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
# Purposely not using secrets to replicate how forks will behave.
|
|
- 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"'
|