Skip to content

Commit c4cb52b

Browse files
authoredAug 20, 2024
Merge pull request #2002 from DataDog/release/2.16.0
Release 2.16.0
2 parents df7f98e + 5d1efdf commit c4cb52b

File tree

59 files changed

+1561
-365
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+1561
-365
lines changed
 

‎.gitlab-ci.yml

+19
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ stages:
55
- ui-test
66
- smoke-test
77
- e2e-test
8+
- benchmark-test
89
- dogfood
910
- release-build
1011
- release-publish
@@ -266,6 +267,24 @@ E2E Test (upload to s8s):
266267
- export DRY_RUN=${DRY_RUN:-0} # default to 0 if not specified
267268
- make e2e-build-upload ARTIFACTS_PATH="artifacts/e2e"
268269

270+
# ┌────────────────────────────┐
271+
# │ Benchmark Test app upload: │
272+
# └────────────────────────────┘
273+
274+
Benchmark Test (upload to s8s):
275+
stage: benchmark-test
276+
rules:
277+
- if: '$CI_COMMIT_BRANCH == $DEVELOP_BRANCH'
278+
artifacts:
279+
paths:
280+
- artifacts
281+
expire_in: 2 weeks
282+
script:
283+
- ./tools/runner-setup.sh --xcode "$DEFAULT_XCODE" --datadog-ci
284+
- make clean
285+
- export DRY_RUN=${DRY_RUN:-0} # default to 0 if not specified
286+
- make benchmark-build-upload ARTIFACTS_PATH="artifacts/benchmark"
287+
269288
# ┌─────────────────┐
270289
# │ SDK dogfooding: │
271290
# └─────────────────┘
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <array/> </plist>

0 commit comments

Comments
 (0)