diff --git a/ci/input_files/build.yaml.tpl b/ci/input_files/build.yaml.tpl index 54066af4..3372058e 100644 --- a/ci/input_files/build.yaml.tpl +++ b/ci/input_files/build.yaml.tpl @@ -86,7 +86,7 @@ unit-test ({{ $runtime.name }}-{{ $runtime.arch }}): - PYTHON_VERSION={{ $runtime.python_version }} ARCH={{ $runtime.arch }} ./scripts/setup_python_env.sh script: - source venv/bin/activate - - pytest -vv + - pytest -vv --ddtrace retry: 2 integration-test ({{ $runtime.name }}-{{ $runtime.arch }}): diff --git a/ddtrace_serverless-4.9.0rc1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl b/ddtrace_serverless-4.9.0rc1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl new file mode 100644 index 00000000..79b9d8fd Binary files /dev/null and b/ddtrace_serverless-4.9.0rc1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl differ diff --git a/repro.sh b/repro.sh new file mode 100755 index 00000000..853170a3 --- /dev/null +++ b/repro.sh @@ -0,0 +1,14 @@ +#!/usr/bin/env bash + +# repro.sh +docker run --rm -it --platform linux/amd64 \ + -v $(pwd):/src \ + --workdir=/src \ + -e "UPSTREAM_PIPELINE_ID=112946992" \ + -e "PYTHONFAULTHANDLER=1" \ + -e "PYTHON_VERSION=3.11" \ + -e "DD_PROFILING_ENABLED=true" \ + -e "DD_PROFILING_ADAPTIVE_SAMPLING_ENABLED=false" \ + -e "_DD_PROFILING_STACK_FAST_COPY=true" \ + -e "ARCH=amd64" \ + registry.ddbuild.io/images/mirror/python:3.11.6 bash -c "./scripts/setup_python_env.sh && source venv/bin/activate && pytest -vv" \ No newline at end of file