mirror of
https://github.com/status-im/libp2p-test-plans.git
synced 2025-02-04 19:15:07 +00:00
35ab35b1a4
* feat: run multidim-interop.yml on self-hosted runners * feat: make worker count configurable * feat: enable docker.io proxy on self-hosted runners * chore: provide s3 creds through env * Try 4 workers * ci: run-multidim-interop on 16 workers * chore: change self hosted labels * Update .github/workflows/multidim-interop.yml Co-authored-by: Piotr Galar <piotr.galar@gmail.com> * Use self-hosted runners for now This reverts commit 7e868ea6b486798c03ad5b88f14c1a78e51e7c26. --------- Co-authored-by: Marco Munizaga <git@marcopolo.io> Co-authored-by: Marco Munizaga <marco@marcopolo.io>
30 lines
1002 B
YAML
30 lines
1002 B
YAML
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- "master"
|
|
|
|
name: libp2p multidimensional interop test
|
|
|
|
jobs:
|
|
run-multidim-interop:
|
|
runs-on: ['self-hosted', 'linux', 'x64', '4xlarge'] # https://github.com/pl-strflt/tf-aws-gh-runner/blob/main/runners.tf
|
|
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 }}
|
|
worker-count: 16
|
|
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"'
|