mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-22 19:07:48 +08:00
35 lines
1.2 KiB
YAML
35 lines
1.2 KiB
YAML
---
|
|
name: Testground PR Checker
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
testground:
|
|
runs-on: ubuntu-latest
|
|
name: ${{ matrix.composition_file }}
|
|
strategy:
|
|
matrix:
|
|
include:
|
|
- backend_addr: ci.testground.ipfs.team
|
|
backend_proto: https
|
|
plan_directory: testplans/bitswap
|
|
composition_file: testplans/bitswap/_compositions/small-k8s.toml
|
|
- backend_addr: ci.testground.ipfs.team
|
|
backend_proto: https
|
|
plan_directory: testplans/bitswap
|
|
composition_file: testplans/bitswap/_compositions/medium-k8s.toml
|
|
- backend_addr: ci.testground.ipfs.team
|
|
backend_proto: https
|
|
plan_directory: testplans/bitswap
|
|
composition_file: testplans/bitswap/_compositions/large-k8s.toml
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: testground run
|
|
uses: testground/testground-github-action@v1
|
|
timeout-minutes: 5
|
|
with:
|
|
backend_addr: ${{ matrix.backend_addr }}
|
|
backend_proto: ${{ matrix.backend_proto }}
|
|
plan_directory: ${{ matrix.plan_directory }}
|
|
composition_file: ${{ matrix.composition_file }}
|