forked from SumoLogic/sumologic-otel-collector
-
Notifications
You must be signed in to change notification settings - Fork 0
226 lines (199 loc) · 6.52 KB
/
pull_requests.yml
File metadata and controls
226 lines (199 loc) · 6.52 KB
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
name: PRs checks
permissions:
contents: read
on:
pull_request:
branches:
- "**"
defaults:
run:
shell: bash
env:
GO_VERSION: "1.24.5"
jobs:
build-changed:
runs-on: ubuntu-24.04
outputs:
any_changed: ${{ steps.changed-files.outputs.any_changed }}
steps:
- uses: actions/checkout@v4
- name: Check if build related files changed
id: changed-files
uses: tj-actions/changed-files@v46
with:
files: |
**/go.mod
**/go.sum
**/*.go
**/*.yaml
**/*.yml
**/Makefile
**/Makefile.common
**/Dockerfile*
markdownlint:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Check if related files changed
id: changed-files
uses: tj-actions/changed-files@v46
with:
files: |
**/*.md
- uses: actions/setup-node@v4
if: steps.changed-files.outputs.any_changed == 'true'
- name: Install markdownlint
if: steps.changed-files.outputs.any_changed == 'true'
run: make install-markdownlint
- name: Markdownlint check
if: steps.changed-files.outputs.any_changed == 'true'
run: make markdownlint
yamllint:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Install yamllint
run: pip install yamllint
- name: yamllint
run: make yamllint
markdown-link-check:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Check if related files changed
id: changed-files
uses: tj-actions/changed-files@v46
with:
files: |
**/*.md
- uses: gaurav-nelson/github-action-markdown-link-check@v1
if: steps.changed-files.outputs.any_changed == 'true'
with:
config-file: ".markdown_link_check.json"
use-quiet-mode: yes
check-modified-files-only: yes
base-branch: ${{ github.base_ref }}
md-links-lint:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Check if related files changed
id: changed-files
uses: tj-actions/changed-files@v46
with:
files: |
**/*.md
- name: Lint markdown links
if: steps.changed-files.outputs.any_changed == 'true'
run: |
make markdown-links-lint
plugins-check:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Install yq
run: |
sudo wget https://github.com/mikefarah/yq/releases/download/v4.12.1/yq_linux_amd64 -O /usr/bin/yq && sudo chmod +x /usr/bin/yq
- name: Check plugins in README and builder config
run: ./ci/plugins_check.sh
pre-commit-check:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- uses: pre-commit/action@v3.0.1
check-uniform-dependencies:
name: Check uniform dependencies
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Check uniform dependencies
run: make check-uniform-dependencies
shellcheck:
runs-on: ubuntu-24.04
env:
SHELLCHECK_VERSION: 0.10.0
steps:
- uses: actions/checkout@v4
- name: install shellcheck
run: |
curl --retry 10 --retry-max-time 120 --retry-delay 5 -Lo- https://github.com/koalaman/shellcheck/releases/download/v${{ env.SHELLCHECK_VERSION }}/shellcheck-v${{ env.SHELLCHECK_VERSION }}.linux.x86_64.tar.xz | tar -xJf -
sudo cp shellcheck-v${{ env.SHELLCHECK_VERSION }}/shellcheck /usr/local/bin && rm -rf shellcheck-v${{ env.SHELLCHECK_VERSION }}
- name: shellcheck
run: make shellcheck
test-otelcol:
name: Test (otelcol)
if: needs.build-changed.outputs.any_changed == 'true'
uses: ./.github/workflows/workflow-test-otelcol.yml
needs:
- build-changed
- determine-build-info
with:
go-version: ${{ needs.determine-build-info.outputs.go-version }}
test-otelcol-config:
name: Test (otelcol-config)
uses: ./.github/workflows/workflow-test-otelcol-config.yml
needs:
- determine-build-info
with:
go-version: ${{ needs.determine-build-info.outputs.go-version }}
lint:
name: Lint (staticcheck)
runs-on: ubuntu-24.04
needs: [build-changed]
if: needs.build-changed.outputs.any_changed == 'true'
strategy:
matrix:
platform: ["linux_amd64"]
steps:
- uses: actions/checkout@v4
- name: Setup go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
cache: false
- name: Get GOCACHE and GOMODCACHE
run: |
echo "GOMODCACHE=$(go env GOMODCACHE)" >> "$GITHUB_ENV"
echo "GOCACHE=$(go env GOCACHE)" >> "$GITHUB_ENV"
- uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684
with:
path: |
${{ env.GOMODCACHE }}/cache
${{ env.GOCACHE }}
key: go-test-${{ env.GO_VERSION }}-${{matrix.platform}}-${{ hashFiles('pkg/**/go.sum', 'otelcolbuilder/.otelcol-builder.yaml') }}
restore-keys: |
go-test-${{ env.GO_VERSION }}-${{matrix.platform}}-
- uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684
with:
path: |
/home/runner/.cache/staticcheck
key: staticcheck-${{ env.GO_VERSION }}-${{matrix.platform}}-${{ hashFiles('pkg/**/go.sum', 'otelcolbuilder/.otelcol-builder.yaml') }}
restore-keys: |
staticcheck-${{ env.GO_VERSION }}-${{matrix.platform}}-
- name: Install staticcheck
run: make install-staticcheck
- name: Add opentelemetry-collector-builder installation dir to PATH
run: echo "$HOME/bin" >> "$GITHUB_PATH"
- name: Run staticcheck
run: make golint
determine-build-info:
name: Build Info
uses: ./.github/workflows/workflow-determine-build-info.yml
build-otelcol:
name: Build - Collector
uses: ./.github/workflows/workflow-build-otelcol.yml
needs:
- determine-build-info
with:
go-version: ${{ needs.determine-build-info.outputs.go-version }}
version: ${{ needs.determine-build-info.outputs.version-with-sha }}
secrets: inherit
build-otelcol-config:
name: Build - Config Tool
uses: ./.github/workflows/workflow-build-otelcol-config.yml
needs:
- determine-build-info
with:
go-version: ${{ needs.determine-build-info.outputs.go-version }}
secrets: inherit