-
Notifications
You must be signed in to change notification settings - Fork 10
109 lines (99 loc) · 2.95 KB
/
pull_requests.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
name: PRs checks
on:
pull_request:
branches:
- main
jobs:
test-fluent-plugin-datapoint:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- uses: actions/[email protected]
with:
ruby-version: '3.1'
- name: Install bundler
run: gem install bundler
- name: Test fluent-plugin-datapoint
run: make test-fluent-plugin-datapoint
test-fluent-plugin-enhance-k8s-metadata:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- uses: actions/[email protected]
with:
ruby-version: '3.1'
- name: Install bundler
run: gem install bundler
- name: Test fluent-plugin-enhance-k8s-metadata
run: make test-fluent-plugin-enhance-k8s-metadata
test-fluent-plugin-events:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- uses: actions/[email protected]
with:
ruby-version: '3.1'
- name: Install bundler
run: gem install bundler
- name: Test fluent-plugin-events
run: make test-fluent-plugin-events
test-fluent-plugin-kubernetes-metadata-filter:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- uses: actions/[email protected]
with:
ruby-version: '3.1'
- name: Install bundler
run: gem install bundler
- name: Test fluent-plugin-kubernetes-metadata-filter
run: make test-fluent-plugin-kubernetes-metadata-filter
test-fluent-plugin-kubernetes-sumologic:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- uses: actions/[email protected]
with:
ruby-version: '3.1'
- name: Install bundler
run: gem install bundler
- name: Test fluent-plugin-kubernetes-sumologic
run: make test-fluent-plugin-kubernetes-sumologic
test-fluent-plugin-prometheus-format:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- uses: actions/[email protected]
with:
ruby-version: '3.1'
- name: Install bundler
run: gem install bundler
- name: Test fluent-plugin-prometheus-format
run: make test-fluent-plugin-prometheus-format
test-fluent-plugin-protobuf:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- uses: actions/[email protected]
with:
ruby-version: '3.1'
- name: Install bundler
run: gem install bundler
- name: Test fluent-plugin-protobuf
run: make test-fluent-plugin-protobuf
image-test-debian:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Build Debian image
run: make build
- name: Test Debian image
run: make image-test
image-test-alpine:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Build Alpine image
run: make build-alpine
- name: Test Alpine image
run: make image-test-alpine