-
Notifications
You must be signed in to change notification settings - Fork 0
357 lines (320 loc) · 11 KB
/
Copy pathrelease.yml
File metadata and controls
357 lines (320 loc) · 11 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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
# Unless explicitly stated otherwise all files in this repository are licensed under
# the Apache 2.0 License.
#
# This product includes software developed at Datadog
# (https://www.datadoghq.com/) Copyright 2025-Present Datadog, Inc.
name: Release
on:
workflow_dispatch:
push:
tags:
- "v*"
permissions:
contents: read
env:
# Keep the host Go toolchain aligned with the CI mock-server harness.
GO_VERSION: "1.25.0"
PYTHON_VERSION: "3.11"
concurrency:
group: release-${{ github.ref }}
cancel-in-progress: false
jobs:
release-validation:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Set up Python
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Set up Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version: ${{ env.GO_VERSION }}
- name: Run core Bazel tests
shell: bash
run: ./bazelw test //tools/...
- name: Run companion Bazel tests (go module)
shell: bash
run: |
(
cd modules/go &&
../../bazelw test //... \
--override_module=datadog-rules-test-optimization=../..
)
- name: Run companion Bazel tests (python module)
shell: bash
run: |
(
cd modules/python &&
../../bazelw test //... \
--override_module=datadog-rules-test-optimization=../..
)
- name: Run companion Bazel tests (java module)
shell: bash
run: |
(
cd modules/java &&
../../bazelw test //... \
--override_module=datadog-rules-test-optimization=../..
)
- name: Run companion Bazel tests (nodejs module)
shell: bash
run: |
(
cd modules/nodejs &&
../../bazelw test //... \
--override_module=datadog-rules-test-optimization=../..
)
- name: Run companion Bazel tests (dotnet module)
shell: bash
run: |
(
cd modules/dotnet &&
../../bazelw test //... \
--override_module=datadog-rules-test-optimization=../..
)
- name: Run companion Bazel tests (ruby module)
shell: bash
run: |
(
cd modules/ruby &&
../../bazelw test //... \
--override_module=datadog-rules-test-optimization=../..
)
- name: Build and test examples
shell: bash
run: |
./bazelw build //examples/...
./bazelw test //examples/...
- name: Run mock server integration tests
timeout-minutes: 20
shell: bash
run: ./tools/tests/integration/run_mock_server_tests.sh
- name: Release checklist reminder
shell: bash
run: |
echo "Release validation completed."
echo "Before publishing, follow CONTRIBUTING.md release runbook steps."
release-hermetic:
timeout-minutes: 45
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Run Bazel tests (hermetic lane)
timeout-minutes: 25
shell: bash
run: |
./bazelw test //tools/... \
--spawn_strategy=sandboxed \
--strategy=TestRunner=sandboxed \
--incompatible_strict_action_env \
--sandbox_default_allow_network=false \
--modify_execution_info=TestRunner=+block-network \
--test_env=TZ=UTC \
--test_env=LANG=C \
--test_env=LC_ALL=C \
--enable_runfiles
- name: Run Bazel tests (go companion hermetic lane)
timeout-minutes: 10
shell: bash
run: |
(
cd modules/go &&
../../bazelw test //... \
--override_module=datadog-rules-test-optimization=../.. \
--spawn_strategy=sandboxed \
--strategy=TestRunner=sandboxed \
--incompatible_strict_action_env \
--sandbox_default_allow_network=false \
--modify_execution_info=TestRunner=+block-network \
--test_env=TZ=UTC \
--test_env=LANG=C \
--test_env=LC_ALL=C \
--enable_runfiles
)
- name: Run Bazel tests (python companion hermetic lane)
timeout-minutes: 10
shell: bash
run: |
(
cd modules/python &&
../../bazelw test //... \
--override_module=datadog-rules-test-optimization=../.. \
--spawn_strategy=sandboxed \
--strategy=TestRunner=sandboxed \
--incompatible_strict_action_env \
--sandbox_default_allow_network=false \
--modify_execution_info=TestRunner=+block-network \
--test_env=TZ=UTC \
--test_env=LANG=C \
--test_env=LC_ALL=C \
--enable_runfiles
)
- name: Run Bazel tests (java companion hermetic lane)
timeout-minutes: 10
shell: bash
run: |
(
cd modules/java &&
../../bazelw test //... \
--override_module=datadog-rules-test-optimization=../.. \
--spawn_strategy=sandboxed \
--strategy=TestRunner=sandboxed \
--incompatible_strict_action_env \
--sandbox_default_allow_network=false \
--modify_execution_info=TestRunner=+block-network \
--test_env=TZ=UTC \
--test_env=LANG=C \
--test_env=LC_ALL=C \
--enable_runfiles
)
- name: Run Bazel tests (nodejs companion hermetic lane)
timeout-minutes: 10
shell: bash
run: |
(
cd modules/nodejs &&
../../bazelw test //... \
--override_module=datadog-rules-test-optimization=../.. \
--spawn_strategy=sandboxed \
--strategy=TestRunner=sandboxed \
--incompatible_strict_action_env \
--sandbox_default_allow_network=false \
--modify_execution_info=TestRunner=+block-network \
--test_env=TZ=UTC \
--test_env=LANG=C \
--test_env=LC_ALL=C \
--enable_runfiles
)
- name: Run Bazel tests (dotnet companion hermetic lane)
timeout-minutes: 10
shell: bash
run: |
(
cd modules/dotnet &&
../../bazelw test //... \
--override_module=datadog-rules-test-optimization=../.. \
--spawn_strategy=sandboxed \
--strategy=TestRunner=sandboxed \
--incompatible_strict_action_env \
--sandbox_default_allow_network=false \
--modify_execution_info=TestRunner=+block-network \
--test_env=TZ=UTC \
--test_env=LANG=C \
--test_env=LC_ALL=C \
--enable_runfiles
)
- name: Run Bazel tests (ruby companion hermetic lane)
timeout-minutes: 10
shell: bash
run: |
(
cd modules/ruby &&
../../bazelw test //... \
--override_module=datadog-rules-test-optimization=../.. \
--spawn_strategy=sandboxed \
--strategy=TestRunner=sandboxed \
--incompatible_strict_action_env \
--sandbox_default_allow_network=false \
--modify_execution_info=TestRunner=+block-network \
--test_env=TZ=UTC \
--test_env=LANG=C \
--test_env=LC_ALL=C \
--enable_runfiles
)
release-shared-validation:
uses: ./.github/workflows/shared-validation.yml
with:
python_version: "3.11"
run_buildifier: false
verify_bazelrc_sync: false
run_gofmt: true
run_powershell_lint: true
run_schema_validation: true
run_fixture_json_validation: false
run_schema_parser_parity: true
run_rules_go_fork_drift: true
release-docs-links:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Install lychee CLI
shell: bash
run: |
set -euo pipefail
version="0.23.0"
archive="lychee-x86_64-unknown-linux-gnu.tar.gz"
url="https://github.com/lycheeverse/lychee/releases/download/lychee-v${version}/${archive}"
sha256="1fcb6ccf10d04c22b8c5873c5b9cb7be32ee7423e12169d6f1a79a6f1962ef81"
curl -fsSL "$url" -o "/tmp/${archive}"
echo "${sha256} /tmp/${archive}" | sha256sum --check
mkdir -p "$RUNNER_TEMP/lychee-bin"
tar -xzf "/tmp/${archive}" -C "$RUNNER_TEMP/lychee-bin"
echo "$RUNNER_TEMP/lychee-bin" >> "$GITHUB_PATH"
"$RUNNER_TEMP/lychee-bin/lychee" --version
- name: Check markdown links
shell: bash
run: |
set -euo pipefail
shopt -s globstar nullglob
files=(
README.md
CONTRIBUTING.md
AGENTS.md
CHANGELOG.md
SECURITY.md
docs/**/*.md
examples/**/*.md
)
# lychee replaces the default success-code set when --accept is present.
lychee \
--no-progress \
--verbose \
--accept '200..=299,429' \
--max-retries 2 \
--retry-wait-time 2 \
"${files[@]}"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
release-platform-smoke:
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
os: [macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Set up Python
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Set up Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version: ${{ env.GO_VERSION }}
- name: Ensure jq is available (Windows)
if: runner.os == 'Windows'
shell: pwsh
run: |
if (Get-Command jq -ErrorAction SilentlyContinue) {
jq --version
exit 0
}
choco install jq --no-progress -y
jq --version
- name: Run mock server integration tests (macOS)
if: runner.os == 'macOS'
shell: bash
run: ./tools/tests/integration/run_mock_server_tests.sh
- name: Run mock server integration tests (Windows)
if: runner.os == 'Windows'
shell: pwsh
run: ./tools/tests/integration/run_mock_server_tests.ps1