mirror of
https://github.com/status-im/libp2p-test-plans.git
synced 2025-03-01 15:00:40 +00:00
* Update Go test implementations to match new spec * Update JS test implementation * Update Rust test Implementation * Update root Makefile * Update runner to new spec * Use composite action and S3 caching * Not using GHA cache anymore * Try removing access key from env * Test workflow without cache keys (#131) * Test if it works without s3 cache keys * Fix if statement * Fix if statement * Always use buildkit * Undo debug change * Add no cache workflow * Skip test in no-cache workflow * Update .github/workflows/no-cache-multidim-interop.yml * Same workflow; use CACHING_OPTIONS * Add Browser WebRTC test (#130) * Add webrtc to JS test * Add onlyDial to all queries * Update versions.ts * Remove unneeded timeout overrides
29 lines
873 B
YAML
29 lines
873 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-cache:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
# Purposely not using cache 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"'
|