ci: remove disabled testground workflow
galargh committed
Mar 2, 2023 at 10:34 UTC
74cfddc39e29671cc57fb2db6b8539fc3b1860c5
1 file changed
-38
.github/workflows/testground-on-push.yml
deleted
-38
@@ -1,38 +0,0 @@
1
----
2
-name: Testground PR Checker
3
-
4
-on:
5
- workflow_dispatch:
6
- push:
7
-
8
-
9
-jobs:
10
- testground:
11
- if: github.repository == 'ipfs/kubo' || github.event_name == 'workflow_dispatch'
12
- runs-on: ubuntu-latest
13
- name: ${{ matrix.composition_file }}
14
- strategy:
15
- matrix:
16
- include:
17
- - backend_addr: ci.testground.ipfs.team
18
- backend_proto: https
19
- plan_directory: testplans/bitswap
20
- composition_file: testplans/bitswap/_compositions/small-k8s.toml
21
- - backend_addr: ci.testground.ipfs.team
22
- backend_proto: https
23
- plan_directory: testplans/bitswap
24
- composition_file: testplans/bitswap/_compositions/medium-k8s.toml
25
- - backend_addr: ci.testground.ipfs.team
26
- backend_proto: https
27
- plan_directory: testplans/bitswap
28
- composition_file: testplans/bitswap/_compositions/large-k8s.toml
29
- steps:
30
- - uses: actions/checkout@v2
31
- - name: testground run
32
- uses: testground/testground-github-action@v1
33
- timeout-minutes: 5
34
- with:
35
- backend_addr: ${{ matrix.backend_addr }}
36
- backend_proto: ${{ matrix.backend_proto }}
37
- plan_directory: ${{ matrix.plan_directory }}
38
- composition_file: ${{ matrix.composition_file }}