Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ variables:
REPO_NOTIFICATION_CHANNEL: "#apm-python-release"
RELEASE_ALLOW_TEST_FAILURES: false
RELEASE_ALLOW_BENCHMARK_FAILURES: false
# Test the OpenTelemetry Operator-compatible Python image jobs from one-pipeline.
OTEL_OPERATOR_IMAGES_ENABLED: "true"
OTEL_OPERATOR_LANGUAGE: python
# VPA Template configuration
DD_VPA_TEMPLATE: "vpa-template-cpu-p70-10percent-2x-oom-min-cap"
# CI_DEBUG_SERVICES: "true"
Expand Down
2 changes: 1 addition & 1 deletion .gitlab/one-pipeline.locked.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# DO NOT EDIT THIS FILE MANUALLY
# This file is auto-generated by automation.
include:
- remote: https://gitlab-templates.ddbuild.io/libdatadog/include/versions/1.3.1/one-pipeline.yml
- remote: https://gitlab-templates.ddbuild.io/libdatadog/include/versions/1.5.0/one-pipeline.yml
7 changes: 7 additions & 0 deletions .gitlab/scripts/build-wheel-helpers.sh
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,13 @@ finalize() {

# Test wheel
test_wheel() {
# AIDEV-NOTE: These one-pipeline build controls are not OpenTelemetry SDK configuration.
unset \
OTEL_OPERATOR_IMAGES_ENABLED \
OTEL_OPERATOR_IMAGE_NAME \
OTEL_OPERATOR_LANGUAGE \
OTEL_OPERATOR_IMAGE_MAX_SIZE_BYTES

section_start "test_wheel" "Testing wheel"
export UV_LINK_MODE=copy
export TEST_WHEEL_DIR="${WORK_DIR}/test_wheel"
Expand Down
7 changes: 7 additions & 0 deletions .gitlab/testrunner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@ variables:
tags: [ "arch:amd64" ]
timeout: 20m
before_script:
# AIDEV-NOTE: These one-pipeline build controls are not OpenTelemetry SDK configuration.
- >-
unset
OTEL_OPERATOR_IMAGES_ENABLED
OTEL_OPERATOR_IMAGE_NAME
OTEL_OPERATOR_LANGUAGE
OTEL_OPERATOR_IMAGE_MAX_SIZE_BYTES
- ulimit -c unlimited
- git config --global --add safe.directory ${CI_PROJECT_DIR}
- pyenv global 3.12 3.9 3.10 3.11 3.13 3.14 3.15-dev
Expand Down
Loading