-
Notifications
You must be signed in to change notification settings - Fork 1
66 lines (64 loc) · 2.35 KB
/
container-tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<<<<<<< HEAD
on:
issue_comment:
types:
- created
jobs:
container-tests:
# This job only runs for '[test]' pull request comments by owner, member
runs-on: ubuntu-latest
name: "Container-tests: ${{ matrix.version }} - ${{ matrix.os_test }}"
concurrency:
group: container-${{ github.event.issue.number }}-${{ matrix.version }}-${{ matrix.os_test }}
cancel-in-progress: true
strategy:
fail-fast: false
matrix:
version: [ "6", "7" ]
os_test: [ "fedora", "rhel8", "rhel9", "c9s", "c10s" ]
test_case: [ "container" ]
if: |
github.event.issue.pull_request
&& (contains(github.event.comment.body, '[test]') || contains(github.event.comment.body, '[test-all]'))
&& contains(fromJson('["OWNER", "MEMBER"]'), github.event.comment.author_association)
steps:
- uses: sclorg/tfaga-wrapper@main
with:
os_test: ${{ matrix.os_test }}
version: ${{ matrix.version }}
test_case: ${{ matrix.test_case }}
public_api_key: ${{ secrets.TF_PUBLIC_API_KEY }}
private_api_key: ${{ secrets.TF_INTERNAL_API_KEY }}
||||||| parent of 44ec6b7 (Add TFaGA for testing valkey container)
=======
on:
issue_comment:
types:
- created
jobs:
container-tests:
# This job only runs for '[test]' pull request comments by owner, member
runs-on: ubuntu-latest
name: "Container-tests: ${{ matrix.version }} - ${{ matrix.os_test }}"
concurrency:
group: container-${{ github.event.issue.number }}-${{ matrix.version }}-${{ matrix.os_test }}
cancel-in-progress: true
strategy:
fail-fast: false
matrix:
version: [ "7" ]
os_test: [ "fedora", "c10s" ]
test_case: [ "container" ]
if: |
github.event.issue.pull_request
&& (contains(github.event.comment.body, '[test]') || contains(github.event.comment.body, '[test-all]'))
&& contains(fromJson('["OWNER", "MEMBER"]'), github.event.comment.author_association)
steps:
- uses: sclorg/tfaga-wrapper@main
with:
os_test: ${{ matrix.os_test }}
version: ${{ matrix.version }}
test_case: ${{ matrix.test_case }}
public_api_key: ${{ secrets.TF_PUBLIC_API_KEY }}
private_api_key: ${{ secrets.TF_INTERNAL_API_KEY }}
>>>>>>> 44ec6b7 (Add TFaGA for testing valkey container)