From 0ae7247c9b9524b6f6e7efb4efc71bb1d4624ff5 Mon Sep 17 00:00:00 2001 From: Levi Morrison Date: Thu, 2 Apr 2026 20:59:54 -0600 Subject: [PATCH 01/30] build: migrate clang 17 -> 19 This matches Rust 1.84, but libdatadog recently introduced a flag which was introduced in this version. Although this should not cause a hard failure and libdatadog should be patched, it's also a good idea to upgrade. --- dockerfiles/ci/bookworm/.env | 2 +- dockerfiles/ci/bookworm/Dockerfile | 34 ++++++++++++------------- dockerfiles/ci/centos/7/base.Dockerfile | 4 +-- 3 files changed, 20 insertions(+), 20 deletions(-) diff --git a/dockerfiles/ci/bookworm/.env b/dockerfiles/ci/bookworm/.env index 6d5f820f4d5..1a92ca601b5 100644 --- a/dockerfiles/ci/bookworm/.env +++ b/dockerfiles/ci/bookworm/.env @@ -1,2 +1,2 @@ BOOKWORM_CURRENT_VERSION=6 -BOOKWORM_NEXT_VERSION=6 +BOOKWORM_NEXT_VERSION=7 diff --git a/dockerfiles/ci/bookworm/Dockerfile b/dockerfiles/ci/bookworm/Dockerfile index ef314993bbf..53ca77f14ab 100644 --- a/dockerfiles/ci/bookworm/Dockerfile +++ b/dockerfiles/ci/bookworm/Dockerfile @@ -9,10 +9,10 @@ ENV ACCEPT_EULA=Y # with cross-language link-time optimization. Needs to match rustc -Vv's llvm # version. ENV DEVLIBS \ - libclang-17-dev \ - libclang-rt-17-dev \ - llvm-17-dev \ - lld-17 \ + libclang-19-dev \ + libclang-rt-19-dev \ + llvm-19-dev \ + lld-19 \ libbrotli-dev \ libcurl4-openssl-dev \ libedit-dev \ @@ -48,8 +48,8 @@ ENV RUNTIME_DEPS \ apache2 \ apache2-dev \ ca-certificates \ - clang-format-17 \ - clang-tidy-17 \ + clang-format-19 \ + clang-tidy-19 \ curl \ debian-goodies \ git \ @@ -70,7 +70,7 @@ ENV RUNTIME_DEPS \ ENV PHPIZE_DEPS \ autoconf \ bison \ - clang-17 \ + clang-19 \ cmake \ dpkg-dev \ file \ @@ -97,12 +97,12 @@ RUN set -eux; \ echo "deb http://deb.debian.org/debian-debug/ bookworm-debug main" | \ tee -a /etc/apt/sources.list; \ \ -# Use LLVM from orig vendor (also LLVM 17 is not shipped with bookworm) +# Use LLVM from orig vendor (also LLVM 19 is not shipped with bookworm) apt-get update; \ apt-get install -y curl gnupg software-properties-common; \ curl https://apt.llvm.org/llvm-snapshot.gpg.key | tee /etc/apt/trusted.gpg.d/apt.llvm.org.asc; \ - add-apt-repository "deb http://apt.llvm.org/bookworm/ llvm-toolchain-bookworm-17 main"; \ - add-apt-repository "deb-src http://apt.llvm.org/bookworm/ llvm-toolchain-bookworm-17 main"; \ + add-apt-repository "deb http://apt.llvm.org/bookworm/ llvm-toolchain-bookworm-19 main"; \ + add-apt-repository "deb-src http://apt.llvm.org/bookworm/ llvm-toolchain-bookworm-19 main"; \ \ # prevent Debian's PHP packages from being installed # https://github.com/docker-library/php/pull/542 @@ -136,14 +136,14 @@ RUN set -eux; \ chown -R circleci:circleci /var/log/nginx/ /var/lib/nginx/; \ \ # Make clang the default compiler - update-alternatives --install /usr/bin/cc cc /usr/bin/clang-17 100; \ - update-alternatives --install /usr/bin/c++ c++ /usr/bin/clang++-17 100; \ - update-alternatives --install /usr/bin/clang clang /usr/bin/clang-17 100; \ - update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-17 100; \ - update-alternatives --install /usr/bin/ld ld /usr/bin/ld.lld-17 100; \ - echo "-L /usr/lib/llvm-17/lib/clang/17/lib/linux" > /usr/lib/llvm-17/bin/clang.cfg; \ + update-alternatives --install /usr/bin/cc cc /usr/bin/clang-19 100; \ + update-alternatives --install /usr/bin/c++ c++ /usr/bin/clang++-19 100; \ + update-alternatives --install /usr/bin/clang clang /usr/bin/clang-19 100; \ + update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-19 100; \ + update-alternatives --install /usr/bin/ld ld /usr/bin/ld.lld-19 100; \ + echo "-L /usr/lib/llvm-19/lib/clang/19/lib/linux" > /usr/lib/llvm-19/bin/clang.cfg; \ # Include libasan library path - echo /usr/lib/llvm-17/lib/clang/17/lib/linux > /etc/ld.so.conf.d/libasan.conf && ldconfig + echo /usr/lib/llvm-19/lib/clang/19/lib/linux > /etc/ld.so.conf.d/libasan.conf && ldconfig ENV CMAKE_VERSION="3.24.4" diff --git a/dockerfiles/ci/centos/7/base.Dockerfile b/dockerfiles/ci/centos/7/base.Dockerfile index 23198e0e55b..a066aebd786 100644 --- a/dockerfiles/ci/centos/7/base.Dockerfile +++ b/dockerfiles/ci/centos/7/base.Dockerfile @@ -188,7 +188,7 @@ RUN source scl_source enable devtoolset-7; set -ex; \ ENV PKG_CONFIG_PATH="${PKG_CONFIG_PATH}:/usr/local/lib/pkgconfig:/usr/local/lib64/pkgconfig:/usr/local/openssl/lib/pkgconfig:/usr/local/zlib/lib/pkgconfig:/usr/local/curl/lib/pkgconfig:/usr/local/sqlite3/lib/pkgconfig" # Caution, takes a very long time! Since we have to build one from source, -# I picked LLVM 17, which matches Rust 1.76. +# I picked LLVM 19, which matches Rust 1.84. # Ordinarily we leave sources, but LLVM is 2GiB just for the sources... # Minimum: libclang. Nice-to-have: full toolchain including linker to play # with cross-language link-time optimization. Needs to match rustc -Vv's llvm @@ -204,7 +204,7 @@ RUN source scl_source enable devtoolset-9 \ && cd - \ && rm -fr "${SRC_DIR}/ninja" \ && cd /usr/local/src \ - && git clone --depth 1 -b release/17.x https://github.com/llvm/llvm-project.git \ + && git clone --depth 1 -b release/19.x https://github.com/llvm/llvm-project.git \ && mkdir -vp llvm-project/build \ && cd llvm-project/build \ && cmake -G Ninja -DLLVM_ENABLE_PROJECTS="clang;lld" -DLLVM_TARGETS_TO_BUILD=host -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr/local ../llvm \ From eb6cef62a2ec15201c7cd2a5a9a4f58326146bf5 Mon Sep 17 00:00:00 2001 From: Levi Morrison Date: Mon, 6 Apr 2026 09:23:46 -0600 Subject: [PATCH 02/30] ci: avoid interactive mode for docker login --- .gitlab/ci-images.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab/ci-images.yml b/.gitlab/ci-images.yml index 2a13c35123b..f16a6c04de6 100644 --- a/.gitlab/ci-images.yml +++ b/.gitlab/ci-images.yml @@ -34,7 +34,7 @@ CentOS: - php-7.0 script: - cd dockerfiles/ci/centos/7 - - docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_TOKEN" $CI_REGISTRY + - echo "$CI_REGISTRY_TOKEN" | docker login --password-stdin -u "$CI_REGISTRY_USER" "$CI_REGISTRY" - docker buildx bake --no-cache --pull --push $PHP_VERSION Alpine: @@ -63,7 +63,7 @@ Alpine: - 7.0-alpine script: - cd dockerfiles/ci/alpine_compile_extension - - docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_TOKEN" $CI_REGISTRY + - echo "$CI_REGISTRY_TOKEN" | docker login --password-stdin -u "$CI_REGISTRY_USER" "$CI_REGISTRY" - docker buildx bake --no-cache --pull --push $PHP_VERSION Bookworm: @@ -94,7 +94,7 @@ Bookworm: - php-7.0 script: - cd dockerfiles/ci/bookworm - - docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_TOKEN" $CI_REGISTRY + - echo "$CI_REGISTRY_TOKEN" | docker login --password-stdin -u "$CI_REGISTRY_USER" "$CI_REGISTRY" - docker buildx bake --no-cache --pull --push $PHP_VERSION Buster: @@ -125,5 +125,5 @@ Buster: - php-7.0 script: - cd dockerfiles/ci/buster - - docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_TOKEN" $CI_REGISTRY + - echo "$CI_REGISTRY_TOKEN" | docker login --password-stdin -u "$CI_REGISTRY_USER" "$CI_REGISTRY" - docker buildx bake --no-cache --pull --push $PHP_VERSION From 7e770e9e38811d7f2d3c6971754b89b34c932859 Mon Sep 17 00:00:00 2001 From: Levi Morrison Date: Mon, 6 Apr 2026 09:36:22 -0600 Subject: [PATCH 03/30] ci: -u must come before --pasword-stdin --- .gitlab/ci-images.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab/ci-images.yml b/.gitlab/ci-images.yml index f16a6c04de6..52fd5cd2c62 100644 --- a/.gitlab/ci-images.yml +++ b/.gitlab/ci-images.yml @@ -34,7 +34,7 @@ CentOS: - php-7.0 script: - cd dockerfiles/ci/centos/7 - - echo "$CI_REGISTRY_TOKEN" | docker login --password-stdin -u "$CI_REGISTRY_USER" "$CI_REGISTRY" + - echo "$CI_REGISTRY_TOKEN" | docker login -u "$CI_REGISTRY_USER" --password-stdin "$CI_REGISTRY" - docker buildx bake --no-cache --pull --push $PHP_VERSION Alpine: @@ -63,7 +63,7 @@ Alpine: - 7.0-alpine script: - cd dockerfiles/ci/alpine_compile_extension - - echo "$CI_REGISTRY_TOKEN" | docker login --password-stdin -u "$CI_REGISTRY_USER" "$CI_REGISTRY" + - echo "$CI_REGISTRY_TOKEN" | docker login -u "$CI_REGISTRY_USER" --password-stdin "$CI_REGISTRY" - docker buildx bake --no-cache --pull --push $PHP_VERSION Bookworm: @@ -94,7 +94,7 @@ Bookworm: - php-7.0 script: - cd dockerfiles/ci/bookworm - - echo "$CI_REGISTRY_TOKEN" | docker login --password-stdin -u "$CI_REGISTRY_USER" "$CI_REGISTRY" + - echo "$CI_REGISTRY_TOKEN" | docker login -u "$CI_REGISTRY_USER" --password-stdin "$CI_REGISTRY" - docker buildx bake --no-cache --pull --push $PHP_VERSION Buster: @@ -125,5 +125,5 @@ Buster: - php-7.0 script: - cd dockerfiles/ci/buster - - echo "$CI_REGISTRY_TOKEN" | docker login --password-stdin -u "$CI_REGISTRY_USER" "$CI_REGISTRY" + - echo "$CI_REGISTRY_TOKEN" | docker login -u "$CI_REGISTRY_USER" --password-stdin "$CI_REGISTRY" - docker buildx bake --no-cache --pull --push $PHP_VERSION From d5713ad03acc44638c95324cf89de2fdf174173b Mon Sep 17 00:00:00 2001 From: Levi Morrison Date: Mon, 6 Apr 2026 10:41:44 -0600 Subject: [PATCH 04/30] build: drop LLVM components that need python, drop protobuf --- dockerfiles/ci/centos/7/base.Dockerfile | 20 +------------------- 1 file changed, 1 insertion(+), 19 deletions(-) diff --git a/dockerfiles/ci/centos/7/base.Dockerfile b/dockerfiles/ci/centos/7/base.Dockerfile index a066aebd786..c1ef32d1983 100644 --- a/dockerfiles/ci/centos/7/base.Dockerfile +++ b/dockerfiles/ci/centos/7/base.Dockerfile @@ -207,7 +207,7 @@ RUN source scl_source enable devtoolset-9 \ && git clone --depth 1 -b release/19.x https://github.com/llvm/llvm-project.git \ && mkdir -vp llvm-project/build \ && cd llvm-project/build \ - && cmake -G Ninja -DLLVM_ENABLE_PROJECTS="clang;lld" -DLLVM_TARGETS_TO_BUILD=host -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr/local ../llvm \ + && cmake -G Ninja -DLLVM_ENABLE_PROJECTS="clang;lld" -DLLVM_TARGETS_TO_BUILD=host -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr/local -DLLVM_INCLUDE_TESTS=OFF -DLLVM_ENABLE_BINDINGS=OFF ../llvm \ && cmake --build . --parallel $(nproc) --target "install/strip" \ && rm -f /usr/local/lib/libclang*.a /usr/local/lib/libLLVM*.a \ && cd - \ @@ -215,24 +215,6 @@ RUN source scl_source enable devtoolset-9 \ && yum remove -y python3 \ && yum clean all -ARG PROTOBUF_VERSION="3.19.4" -ARG PROTOBUF_SHA256="89ac31a93832e204db6d73b1e80f39f142d5747b290f17340adce5be5b122f94" -RUN source scl_source enable devtoolset-7 \ - && FILENAME=protobuf-cpp-${PROTOBUF_VERSION}.tar.gz \ - && cd /usr/local/src \ - && curl -L -O "https://github.com/protocolbuffers/protobuf/releases/download/v${PROTOBUF_VERSION}/${FILENAME}" \ - && tar --no-same-owner -xf "$FILENAME" \ - && cd protobuf-${PROTOBUF_VERSION} \ - && ./configure \ - --prefix=/usr/local \ - --libdir=/usr/local/lib64 \ - --with-pic \ - --disable-shared \ - --enable-static \ - && make -j $(nproc) \ - && make install \ - && cd - \ - && rm -fr "$FILENAME" "${FILENAME%.tar.gz}" "protobuf-${PROTOBUF_VERSION}" # rust sha256sum generated locally after verifying it with sha256 ARG RUST_VERSION="1.84.1" From 1417cce31bbb36a939d85a3a9f10055c697698ce Mon Sep 17 00:00:00 2001 From: Levi Morrison Date: Mon, 6 Apr 2026 18:46:48 -0600 Subject: [PATCH 05/30] build: shrink centos-7 base image by ~2.4 GB - Exclude kernel-core, kernel-modules, linux-firmware globally via yum.conf (~183 MB; these are useless in containers) - Move devtoolset-9 into the LLVM RUN layer and remove it afterward (~196 MB) - Build LLVM with CLANG_BUILD_TOOLS=OFF and LLVM_INSTALL_TOOLCHAIN_ONLY=ON to skip building unused tools (~1.3 GB) - Remove LLVM internal C++ headers and cmake config dirs post-install (~54 MB) - Add --disable-static to libxml2, libffi, oniguruma, curl, sqlite3 configure - Remove .a static archives from openssl and zlib after install - Fix catch2 build/source cleanup (cd - && rm -fr build was a no-op) - Remove cmake Help docs and man pages post-install (~10 MB) Co-Authored-By: Claude Sonnet 4.6 --- dockerfiles/ci/centos/7/base.Dockerfile | 42 +++++++++++++++---------- 1 file changed, 25 insertions(+), 17 deletions(-) diff --git a/dockerfiles/ci/centos/7/base.Dockerfile b/dockerfiles/ci/centos/7/base.Dockerfile index c1ef32d1983..b67809b013f 100644 --- a/dockerfiles/ci/centos/7/base.Dockerfile +++ b/dockerfiles/ci/centos/7/base.Dockerfile @@ -7,6 +7,9 @@ RUN set -eux; \ sed -i s/^#.*baseurl=http/baseurl=http/g /etc/yum.repos.d/*.repo; \ sed -i s/^mirrorlist=http/#mirrorlist=http/g /etc/yum.repos.d/*.repo; \ echo 'ip_resolve = IPv4' >>/etc/yum.conf; \ +# kernel and linux-firmware are useless in containers (host kernel is used); +# excluding them globally prevents ~183 MB of waste from being pulled in as side-effects. + echo 'exclude=kernel-core* kernel-modules* linux-firmware' >>/etc/yum.conf; \ yum update -y; \ yum install -y \ centos-release-scl \ @@ -33,7 +36,6 @@ RUN set -eux; \ sed -i s/^mirrorlist=http/#mirrorlist=http/g /etc/yum.repos.d/CentOS-SCLo-*.repo; \ yum update nss nss-util nss-sysinit nss-tools; \ yum install -y --nogpgcheck devtoolset-7; \ - yum install -y --nogpgcheck devtoolset-9; \ yum clean all; ENV SRC_DIR=/usr/local/src @@ -46,7 +48,7 @@ RUN source scl_source enable devtoolset-7; set -eux; \ cd "${SRC_DIR}/m4"; \ mkdir -v 'build' && cd 'build'; \ ../configure && make -j $(nproc) && make install; \ - cd - && rm -fr build + cd - && rm -fr build "${SRC_DIR}/m4" # Latest version of autoconf required RUN set -eux; \ @@ -54,7 +56,7 @@ RUN set -eux; \ cd "${SRC_DIR}/autoconf"; \ mkdir -v 'build' && cd 'build'; \ ../configure && make -j $(nproc) && make install; \ - cd - && rm -fr build + cd - && rm -fr build "${SRC_DIR}/autoconf" # Automake required RUN set -eux; \ @@ -62,7 +64,7 @@ RUN set -eux; \ cd "${SRC_DIR}/automake"; \ mkdir -v 'build' && cd 'build'; \ ../configure && make -j $(nproc) && make install; \ - cd - && rm -fr build + cd - && rm -fr build "${SRC_DIR}/automake" # Libtool required RUN set -eux; \ @@ -70,14 +72,14 @@ RUN set -eux; \ cd "${SRC_DIR}/libtool"; \ mkdir -v 'build' && cd 'build'; \ ../configure && make -j $(nproc) && make install; \ - cd - && rm -fr build + cd - && rm -fr build "${SRC_DIR}/libtool" # Required: libxml >= 2.9.0 (default version is 2.7.6) RUN source scl_source enable devtoolset-7; set -eux; \ /root/download-src.sh libxml2 http://xmlsoft.org/sources/libxml2-2.9.10.tar.gz; \ cd "${SRC_DIR}/libxml2"; \ mkdir -v 'build' && cd 'build'; \ - ../configure --with-python=no && make -j $(nproc) && make install; \ + ../configure --with-python=no --disable-static && make -j $(nproc) && make install; \ cd - && rm -fr build # Required: libffi >= 3.0.11 (default version is 3.0.5) @@ -85,7 +87,7 @@ RUN source scl_source enable devtoolset-7; set -eux; \ /root/download-src.sh libffi https://github.com/libffi/libffi/releases/download/v3.4.2/libffi-3.4.2.tar.gz; \ cd "${SRC_DIR}/libffi"; \ mkdir -v 'build' && cd 'build'; \ - ../configure && make -j $(nproc) && make install; \ + ../configure --disable-static && make -j $(nproc) && make install; \ cd - && rm -fr build # Required: oniguruma (not installed by default) @@ -93,7 +95,7 @@ RUN source scl_source enable devtoolset-7; set -eux; \ /root/download-src.sh oniguruma https://github.com/kkos/oniguruma/releases/download/v6.9.5_rev1/onig-6.9.5-rev1.tar.gz; \ cd "${SRC_DIR}/oniguruma"; \ mkdir -v 'build' && cd 'build'; \ - ../configure && make -j $(nproc) && make install; \ + ../configure --disable-static && make -j $(nproc) && make install; \ cd - && rm -fr build # Required: bison >= 3.0.0 (not installed by default) @@ -102,7 +104,7 @@ RUN source scl_source enable devtoolset-7; set -eux; \ cd "${SRC_DIR}/bison"; \ mkdir -v 'build' && cd 'build'; \ ../configure && make -j $(nproc) && make install; \ - cd - && rm -fr build + cd - && rm -fr build "${SRC_DIR}/bison" # Required: re2c >= 0.13.4 (not installed by default) RUN source scl_source enable devtoolset-7; set -eux; \ @@ -110,7 +112,7 @@ RUN source scl_source enable devtoolset-7; set -eux; \ cd "${SRC_DIR}/re2c"; \ mkdir -v 'build' && cd 'build'; \ ../configure && make -j $(nproc) && make install; \ - cd - && rm -fr build + cd - && rm -fr build "${SRC_DIR}/re2c" # Required: CMake >= 3.20.0 (default version is 2.8.12.2) RUN source scl_source enable devtoolset-7; set -eux; \ @@ -118,7 +120,8 @@ RUN source scl_source enable devtoolset-7; set -eux; \ cd "${SRC_DIR}/cmake"; \ mkdir -v 'build' && cd 'build'; \ ../bootstrap && make -j $(nproc) && make install; \ - cd - && rm -fr build + cd - && rm -fr build "${SRC_DIR}/cmake" \ + && rm -rf /usr/local/share/cmake-*/Help /usr/local/share/doc/cmake* /usr/local/share/man/man1/cmake* # Install Catch2 RUN set -eux; \ @@ -126,7 +129,7 @@ RUN set -eux; \ cd "${SRC_DIR}/catch2"; \ cmake -Bbuild -H. -DBUILD_TESTING=OFF -DCMAKE_INSTALL_PREFIX=/opt/catch2 -DCATCH_BUILD_STATIC_LIBRARY=ON; \ cmake --build build/ --target install; \ - cd - && rm -fr build + rm -fr "${SRC_DIR}/catch2" # PHP 8.4+ requires OpenSSL >= 1.1.1 RUN source scl_source enable devtoolset-7; set -ex; \ @@ -135,6 +138,7 @@ RUN source scl_source enable devtoolset-7; set -ex; \ mkdir -v 'build' && cd 'build'; \ ../config --prefix=/usr/local/openssl --openssldir=/usr/local/openssl shared zlib; \ make -j $(nproc) && make install; \ + rm -f /usr/local/openssl/lib/*.a; \ echo "export PATH=/usr/local/openssl/bin:\$PATH" > /etc/profile.d/openssl.sh; \ echo "export LD_LIBRARY_PATH=/usr/local/openssl/lib:\$LD_LIBRARY_PATH" >> /etc/profile.d/openssl.sh; \ source /etc/profile.d/openssl.sh; \ @@ -148,6 +152,7 @@ RUN source scl_source enable devtoolset-7; set -ex; \ mkdir -v 'build' && cd 'build'; \ ../configure --prefix=/usr/local/zlib; \ make -j $(nproc) && make install; \ + rm -f /usr/local/zlib/lib/*.a; \ cd - && rm -fr build RUN source scl_source enable devtoolset-7; set -eux; \ @@ -172,7 +177,7 @@ RUN source scl_source enable devtoolset-7; set -ex; \ /root/download-src.sh curl https://curl.se/download/curl-7.61.1.tar.gz; \ cd "${SRC_DIR}/curl"; \ mkdir -v 'build' && cd 'build'; \ - ../configure --prefix=/usr/local/curl --with-ssl=/usr/local/openssl; \ + ../configure --prefix=/usr/local/curl --with-ssl=/usr/local/openssl --disable-static; \ make -j $(nproc) && make install; \ cd - && rm -fr build @@ -181,7 +186,7 @@ RUN source scl_source enable devtoolset-7; set -ex; \ /root/download-src.sh sqlite3 https://www.sqlite.org/2024/sqlite-autoconf-3460000.tar.gz; \ cd "${SRC_DIR}/sqlite3"; \ mkdir -v 'build' && cd 'build'; \ - ../configure --prefix=/usr/local/sqlite3; \ + ../configure --prefix=/usr/local/sqlite3 --disable-static; \ make -j $(nproc) && make install; \ cd - && rm -fr build @@ -193,7 +198,8 @@ ENV PKG_CONFIG_PATH="${PKG_CONFIG_PATH}:/usr/local/lib/pkgconfig:/usr/local/lib6 # Minimum: libclang. Nice-to-have: full toolchain including linker to play # with cross-language link-time optimization. Needs to match rustc -Vv's llvm # version. -RUN source scl_source enable devtoolset-9 \ +RUN yum install -y --nogpgcheck devtoolset-9 \ + && source scl_source enable devtoolset-9 \ && yum install -y python3 \ && /root/download-src.sh ninja https://github.com/ninja-build/ninja/archive/refs/tags/v1.11.0.tar.gz \ && mkdir -vp "${SRC_DIR}/ninja/build" \ @@ -207,12 +213,14 @@ RUN source scl_source enable devtoolset-9 \ && git clone --depth 1 -b release/19.x https://github.com/llvm/llvm-project.git \ && mkdir -vp llvm-project/build \ && cd llvm-project/build \ - && cmake -G Ninja -DLLVM_ENABLE_PROJECTS="clang;lld" -DLLVM_TARGETS_TO_BUILD=host -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr/local -DLLVM_INCLUDE_TESTS=OFF -DLLVM_ENABLE_BINDINGS=OFF ../llvm \ + && cmake -G Ninja -DLLVM_ENABLE_PROJECTS="clang;lld" -DLLVM_TARGETS_TO_BUILD=host -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr/local -DLLVM_INCLUDE_TESTS=OFF -DLLVM_ENABLE_BINDINGS=OFF -DCLANG_BUILD_TOOLS=OFF -DLLVM_INSTALL_TOOLCHAIN_ONLY=ON ../llvm \ && cmake --build . --parallel $(nproc) --target "install/strip" \ && rm -f /usr/local/lib/libclang*.a /usr/local/lib/libLLVM*.a \ + && rm -rf /usr/local/include/llvm /usr/local/include/clang \ + && rm -rf /usr/local/lib/cmake/llvm /usr/local/lib/cmake/clang /usr/local/lib/cmake/lld \ && cd - \ && rm -fr llvm-project \ - && yum remove -y python3 \ + && yum remove -y python3 'devtoolset-9*' \ && yum clean all From f371b5f7b6522621a7d53cc884d88e4601f7d6f0 Mon Sep 17 00:00:00 2001 From: Levi Morrison Date: Mon, 6 Apr 2026 18:52:58 -0600 Subject: [PATCH 06/30] build: bump PHP versions across CI images - PHP 8.5: RC3 -> 8.5.4 (stable) across centos-7, bookworm - PHP 8.4: 8.4.1/8.4.16 -> 8.4.19 across centos-7, bookworm - PHP 8.3: 8.3.14/8.3.29 -> 8.3.30 across centos-7, bookworm - PHP 8.2: 8.2.26/8.2.28 -> 8.2.30 across centos-7, bookworm - PHP 8.1: 8.1.8/8.1.31 -> 8.1.32 across centos-6, centos-7 - PHP 8.0: 8.0.15/8.0.21/8.0.27 -> 8.0.30 across centos-6, centos-7, alpine - PHP 7.4: 7.4.30 -> 7.4.33 on centos-6 Co-Authored-By: Claude Sonnet 4.6 --- dockerfiles/ci/alpine/docker-compose.yml | 4 ++-- dockerfiles/ci/bookworm/docker-compose.yml | 16 +++++++-------- dockerfiles/ci/centos/6/docker-compose.yml | 12 +++++------ dockerfiles/ci/centos/7/docker-compose.yml | 24 +++++++++++----------- 4 files changed, 28 insertions(+), 28 deletions(-) diff --git a/dockerfiles/ci/alpine/docker-compose.yml b/dockerfiles/ci/alpine/docker-compose.yml index 525bb61fb44..18c0ad47d60 100644 --- a/dockerfiles/ci/alpine/docker-compose.yml +++ b/dockerfiles/ci/alpine/docker-compose.yml @@ -17,5 +17,5 @@ services: context: ./php-8.0 args: phpVersion: 8.0 - phpTarGzUrl: https://www.php.net/distributions/php-8.0.15.tar.gz - phpSha256Hash: 47f0be6188b05390bb457eb1968ea19463acada79650afc35ec763348d5c2370 + phpTarGzUrl: https://www.php.net/distributions/php-8.0.30.tar.gz + phpSha256Hash: 449d2048fcb20a314d8c218097c6d1047a9f1c5bb72aa54d5d3eba0a27a4c80c diff --git a/dockerfiles/ci/bookworm/docker-compose.yml b/dockerfiles/ci/bookworm/docker-compose.yml index fa7315ca71b..b771375e0b3 100644 --- a/dockerfiles/ci/bookworm/docker-compose.yml +++ b/dockerfiles/ci/bookworm/docker-compose.yml @@ -22,8 +22,8 @@ services: args: <<: *build-base phpVersion: "8.5" - phpTarGzUrl: https://www.php.net/distributions/php-8.5.1.tar.gz - phpSha256Hash: "915492958081409a5e3ef99df969bcfa5b33bdf9517bd077991747e17fa2c1b7" + phpTarGzUrl: https://www.php.net/distributions/php-8.5.4.tar.gz + phpSha256Hash: "4fef7f44eff3c18e329504cb0d3eb30b41cf54e2db05cb4ebe8b78fc37d38ce1" php-8.4: image: datadog/dd-trace-ci:php-8.4_bookworm-$BOOKWORM_NEXT_VERSION @@ -34,8 +34,8 @@ services: args: <<: *build-base phpVersion: "8.4" - phpTarGzUrl: https://www.php.net/distributions/php-8.4.16.tar.gz - phpSha256Hash: "8e35d24f148ea7c2a93e9b9bcc329e8bf78b5bb922f3723a727c74c19d184e98" + phpTarGzUrl: https://www.php.net/distributions/php-8.4.19.tar.gz + phpSha256Hash: "9e862435ffb533dc5b0eb486170a74e5f7c8095e8eb8819a2ff5aad430292a18" php-8.3: image: datadog/dd-trace-ci:php-8.3_bookworm-$BOOKWORM_NEXT_VERSION @@ -46,8 +46,8 @@ services: args: <<: *build-base phpVersion: "8.3" - phpTarGzUrl: https://www.php.net/distributions/php-8.3.29.tar.gz - phpSha256Hash: "8565fa8733c640b60da5ab4944bf2d4081f859915b39e29b3af26cf23443ed97" + phpTarGzUrl: https://www.php.net/distributions/php-8.3.30.tar.gz + phpSha256Hash: "e587dc95fb7f62730299fa7b36b6e4f91e6708aaefa2fff68a0098d320c16386" php-8.2: image: datadog/dd-trace-ci:php-8.2_bookworm-$BOOKWORM_NEXT_VERSION @@ -58,8 +58,8 @@ services: args: <<: *build-base phpVersion: "8.2" - phpTarGzUrl: https://www.php.net/distributions/php-8.2.28.tar.gz - phpSha256Hash: "3318300888de5023720cc84efad5e005e53f30b5f0072fae65a750dabcaf6ec3" + phpTarGzUrl: https://www.php.net/distributions/php-8.2.30.tar.gz + phpSha256Hash: "a0fa6673ba4b0c8335fbab08afb7c2e13a3791f2b5a0928c7ad3d7ad872edf26" php-8.1: image: datadog/dd-trace-ci:php-8.1_bookworm-$BOOKWORM_NEXT_VERSION diff --git a/dockerfiles/ci/centos/6/docker-compose.yml b/dockerfiles/ci/centos/6/docker-compose.yml index 3226b1c0e54..5a77e744e06 100644 --- a/dockerfiles/ci/centos/6/docker-compose.yml +++ b/dockerfiles/ci/centos/6/docker-compose.yml @@ -53,8 +53,8 @@ services: dockerfile: php7.Dockerfile args: phpVersion: "7.4" - phpTarGzUrl: https://www.php.net/distributions/php-7.4.30.tar.gz - phpSha256Hash: e37ea37e0f79109351ac615da85eb7c2c336101fc5bc802ee79a124a4310dc10 + phpTarGzUrl: https://www.php.net/distributions/php-7.4.33.tar.gz + phpSha256Hash: 5a2337996f07c8a097e03d46263b5c98d2c8e355227756351421003bea8f463e image: 'datadog/dd-trace-ci:php-7.4_centos-6' php-8.0: @@ -63,8 +63,8 @@ services: dockerfile: php8.Dockerfile args: phpVersion: "8.0" - phpTarGzUrl: https://www.php.net/distributions/php-8.0.21.tar.gz - phpSha256Hash: 2f51f6e90e2e8efd3a20db08f0dd61d7f8d5a9362f8c7325f1ad28ccea5be0ac + phpTarGzUrl: https://www.php.net/distributions/php-8.0.30.tar.gz + phpSha256Hash: 449d2048fcb20a314d8c218097c6d1047a9f1c5bb72aa54d5d3eba0a27a4c80c image: 'datadog/dd-trace-ci:php-8.0_centos-6' php-8.1: @@ -73,7 +73,7 @@ services: dockerfile: php8.Dockerfile args: phpVersion: "8.1" - phpTarGzUrl: https://www.php.net/distributions/php-8.1.8.tar.gz - phpSha256Hash: 889d910558d2492f7f2236921b9bcde620674c8b684ec02d126060f8ca45dc8d + phpTarGzUrl: https://www.php.net/distributions/php-8.1.32.tar.gz + phpSha256Hash: 4846836d1de27dbd28e89180f073531087029a77e98e8e019b7b2eddbdb1baff image: 'datadog/dd-trace-ci:php-8.1_centos-6' diff --git a/dockerfiles/ci/centos/7/docker-compose.yml b/dockerfiles/ci/centos/7/docker-compose.yml index d33190384a7..fd29fa339a0 100644 --- a/dockerfiles/ci/centos/7/docker-compose.yml +++ b/dockerfiles/ci/centos/7/docker-compose.yml @@ -73,8 +73,8 @@ services: x-bake: *bake args: phpVersion: "8.0" - phpTarGzUrl: https://www.php.net/distributions/php-8.0.27.tar.gz - phpSha256Hash: fe2376faaf91c28ead89a36e118c177f4a8c9a7280a189b97265da1af1f4d305 + phpTarGzUrl: https://www.php.net/distributions/php-8.0.30.tar.gz + phpSha256Hash: 449d2048fcb20a314d8c218097c6d1047a9f1c5bb72aa54d5d3eba0a27a4c80c image: 'datadog/dd-trace-ci:php-8.0_centos-7' php-8.1: @@ -84,8 +84,8 @@ services: x-bake: *bake args: phpVersion: "8.1" - phpTarGzUrl: https://www.php.net/distributions/php-8.1.31.tar.gz - phpSha256Hash: "618923b407c4575bfee085f00c4aaa16a5cc86d4b1eb893c0f352d61541bbfb1" + phpTarGzUrl: https://www.php.net/distributions/php-8.1.32.tar.gz + phpSha256Hash: "4846836d1de27dbd28e89180f073531087029a77e98e8e019b7b2eddbdb1baff" image: 'datadog/dd-trace-ci:php-8.1_centos-7' php-8.2: @@ -95,8 +95,8 @@ services: x-bake: *bake args: phpVersion: "8.2" - phpTarGzUrl: https://www.php.net/distributions/php-8.2.26.tar.gz - phpSha256Hash: "04e47b46b347ed6404dcc9e9989486710b075eafc8490500fd271aeeac5d83cb" + phpTarGzUrl: https://www.php.net/distributions/php-8.2.30.tar.gz + phpSha256Hash: "a0fa6673ba4b0c8335fbab08afb7c2e13a3791f2b5a0928c7ad3d7ad872edf26" image: 'datadog/dd-trace-ci:php-8.2_centos-7' php-8.3: @@ -106,8 +106,8 @@ services: x-bake: *bake args: phpVersion: "8.3" - phpTarGzUrl: https://www.php.net/distributions/php-8.3.14.tar.gz - phpSha256Hash: "e4ee602c31e2f701c9f0209a2902dd4802727431246a9155bf56dda7bcf7fb4a" + phpTarGzUrl: https://www.php.net/distributions/php-8.3.30.tar.gz + phpSha256Hash: "e587dc95fb7f62730299fa7b36b6e4f91e6708aaefa2fff68a0098d320c16386" image: 'datadog/dd-trace-ci:php-8.3_centos-7' php-8.4: @@ -117,8 +117,8 @@ services: x-bake: *bake args: phpVersion: "8.4" - phpTarGzUrl: https://www.php.net/distributions/php-8.4.1.tar.gz - phpSha256Hash: "c3d1ce4157463ea43004289c01172deb54ce9c5894d8722f4e805461bf9feaec" + phpTarGzUrl: https://www.php.net/distributions/php-8.4.19.tar.gz + phpSha256Hash: "9e862435ffb533dc5b0eb486170a74e5f7c8095e8eb8819a2ff5aad430292a18" image: 'datadog/dd-trace-ci:php-8.4_centos-7' php-8.5: @@ -128,6 +128,6 @@ services: x-bake: *bake args: phpVersion: "8.5" - phpTarGzUrl: https://downloads.php.net/~daniels/php-8.5.0RC3.tar.gz - phpSha256Hash: "937e544d72ee1eb28d2190cadaadf8e5e8d7d8c365b5c1f6a99b4f979a1f3a1b" + phpTarGzUrl: https://www.php.net/distributions/php-8.5.4.tar.gz + phpSha256Hash: "4fef7f44eff3c18e329504cb0d3eb30b41cf54e2db05cb4ebe8b78fc37d38ce1" image: 'datadog/dd-trace-ci:php-8.5_centos-7' From 33b0807548f2ab578154adc2affe36432cd9bb06 Mon Sep 17 00:00:00 2001 From: Levi Morrison Date: Mon, 6 Apr 2026 19:58:34 -0600 Subject: [PATCH 07/30] ci: drop ccmake, cpack, ctest --- dockerfiles/ci/centos/7/base.Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dockerfiles/ci/centos/7/base.Dockerfile b/dockerfiles/ci/centos/7/base.Dockerfile index b67809b013f..f02d36aec0c 100644 --- a/dockerfiles/ci/centos/7/base.Dockerfile +++ b/dockerfiles/ci/centos/7/base.Dockerfile @@ -119,8 +119,9 @@ RUN source scl_source enable devtoolset-7; set -eux; \ /root/download-src.sh cmake https://github.com/Kitware/CMake/releases/download/v3.28.6/cmake-3.28.6.tar.gz; \ cd "${SRC_DIR}/cmake"; \ mkdir -v 'build' && cd 'build'; \ - ../bootstrap && make -j $(nproc) && make install; \ + ../bootstrap -- -DBUILD_CursesDialog=OFF && make -j $(nproc) && make install; \ cd - && rm -fr build "${SRC_DIR}/cmake" \ + && rm -f /usr/local/bin/cpack /usr/local/bin/ctest \ && rm -rf /usr/local/share/cmake-*/Help /usr/local/share/doc/cmake* /usr/local/share/man/man1/cmake* # Install Catch2 From 8cc639eba6872d8d63d4d88562066eb410fd82e7 Mon Sep 17 00:00:00 2001 From: Levi Morrison Date: Mon, 6 Apr 2026 23:38:31 -0600 Subject: [PATCH 08/30] build: pin sqlsrv and grpc PECL versions for PHP compatibility - sqlsrv 5.13.0 raised minimum to PHP 8.3; pin PHP 8.1-8.2 to 5.12.0 - grpc 1.80.0 uses EG(max_allowed_stack_size) gated on PHP_VERSION_ID>=80300 but the field is absent in ASan builds because the ZEND_CHECK_STACK_LIMIT autoconf test cannot execute sanitized binaries during configure; pin to 1.78.0 which predates that change Co-Authored-By: Claude Sonnet 4.6 --- dockerfiles/ci/bookworm/build-extensions.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dockerfiles/ci/bookworm/build-extensions.sh b/dockerfiles/ci/bookworm/build-extensions.sh index bb643e266b8..a4b7eb475e1 100755 --- a/dockerfiles/ci/bookworm/build-extensions.sh +++ b/dockerfiles/ci/bookworm/build-extensions.sh @@ -64,6 +64,8 @@ elif [[ $PHP_VERSION_ID -le 74 ]]; then SQLSRV_VERSION=-5.8.0 elif [[ $PHP_VERSION_ID -le 80 ]]; then SQLSRV_VERSION=-5.11.0 +elif [[ $PHP_VERSION_ID -le 82 ]]; then + SQLSRV_VERSION=-5.12.0 fi HOST_ARCH=$(if [[ $(file $(readlink -f $(which php))) == *aarch64* ]]; then echo "aarch64"; else echo "x86_64"; fi) @@ -195,7 +197,7 @@ else # ext-grpc is needed for google spanner if [[ $PHP_VERSION_ID -ge 80 && $PHP_VERSION_ID -lt 85 ]]; then - pecl install grpc; + pecl install grpc-1.78.0; # avoid installing it by default, it seems to stall some testsuites. fi From 09b85da851ccdf7ece706a606616ce530bd04d67 Mon Sep 17 00:00:00 2001 From: Levi Morrison Date: Tue, 7 Apr 2026 08:29:17 -0600 Subject: [PATCH 09/30] build: patch PHP 8.5 to disable preserve_none under ASan preserve_none + -fsanitize=address crashes clang 19+ on x86-64 (llvm/llvm-project#95928). Apply a patch at source-tree build time that guards ZEND_PRESERVE_NONE with __has_feature(address_sanitizer), following the fix pattern from llvm-project commit 996157c. Co-Authored-By: Claude Sonnet 4.6 --- ...001-Disable-preserve_none-under-ASan.patch | 29 +++++++++++++++++++ dockerfiles/ci/bookworm/php-8.5/Dockerfile | 2 ++ 2 files changed, 31 insertions(+) create mode 100644 dockerfiles/ci/bookworm/php-8.5/0001-Disable-preserve_none-under-ASan.patch diff --git a/dockerfiles/ci/bookworm/php-8.5/0001-Disable-preserve_none-under-ASan.patch b/dockerfiles/ci/bookworm/php-8.5/0001-Disable-preserve_none-under-ASan.patch new file mode 100644 index 00000000000..7be34d2a81f --- /dev/null +++ b/dockerfiles/ci/bookworm/php-8.5/0001-Disable-preserve_none-under-ASan.patch @@ -0,0 +1,29 @@ +From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 +From: Levi Morrison +Date: Mon, 07 Apr 2026 00:00:00 +0000 +Subject: [PATCH] Disable preserve_none under ASan + +preserve_none combined with -fsanitize=address crashes clang 19+ on +x86-64. Disable it when ASan is active, following the same fix applied +in llvm-project (commit 996157c). + +See: https://github.com/llvm/llvm-project/issues/95928 +--- + Zend/zend_portability.h | 6 +++++- + 1 file changed, 5 insertions(+), 1 deletion(-) + +diff --git a/Zend/zend_portability.h b/Zend/zend_portability.h +index 1111111..2222222 100644 +--- a/Zend/zend_portability.h ++++ b/Zend/zend_portability.h +@@ -333,7 +333,11 @@ static zend_always_inline double _zend_get_nan(void) /* {{{ */ + + #ifdef HAVE_PRESERVE_NONE +-# define ZEND_PRESERVE_NONE __attribute__((preserve_none)) ++# if __has_feature(address_sanitizer) || defined(__SANITIZE_ADDRESS__) ++/* preserve_none + ASan crashes clang 19+ on x86-64, see llvm/llvm-project#95928 */ ++# define ZEND_PRESERVE_NONE ++# else ++# define ZEND_PRESERVE_NONE __attribute__((preserve_none)) ++# endif + #endif diff --git a/dockerfiles/ci/bookworm/php-8.5/Dockerfile b/dockerfiles/ci/bookworm/php-8.5/Dockerfile index c342f2c81ba..5a98c2832af 100644 --- a/dockerfiles/ci/bookworm/php-8.5/Dockerfile +++ b/dockerfiles/ci/bookworm/php-8.5/Dockerfile @@ -10,12 +10,14 @@ COPY php-8.5/suppr.txt /home/circleci/suppr.txt FROM --platform=$BUILDPLATFORM $BUILD_BASE AS src ARG phpTarGzUrl ARG phpSha256Hash +COPY php-8.5/0001-Disable-preserve_none-under-ASan.patch /home/circleci RUN set -eux; \ curl -fsSL -o /tmp/php.tar.gz "${phpTarGzUrl}"; \ (echo "${phpSha256Hash} /tmp/php.tar.gz" | sha256sum -c -); \ tar xf /tmp/php.tar.gz -C "${PHP_SRC_DIR}" --strip-components=1; \ rm -f /tmp/php.tar.gz; \ cd ${PHP_SRC_DIR}; \ + git apply /home/circleci/0001-Disable-preserve_none-under-ASan.patch; \ # We need to remove the dl() calls from run-tests as some extensions don't properly switch interned string storage for INIs. \ sed -i 's/\bdl(/(bool)(/' run-tests.php; \ ./buildconf --force; From 7da2707b35ba70e0353722a808c598cca4e96b22 Mon Sep 17 00:00:00 2001 From: Levi Morrison Date: Tue, 7 Apr 2026 09:03:34 -0600 Subject: [PATCH 10/30] build: silence make recipe output in bookworm PHP builds Adds -s (silent) to all make invocations in build-php.sh and to MAKEFLAGS in build-extensions.sh (which covers pecl installs too). Compiler errors still print via stderr; only the cc/ld recipe lines are suppressed. Reduces log volume significantly given parallel stages. Co-Authored-By: Claude Sonnet 4.6 --- dockerfiles/ci/bookworm/build-extensions.sh | 2 +- dockerfiles/ci/bookworm/build-php.sh | 6 +++--- .../0001-Disable-preserve_none-under-ASan.patch | 13 ++++++++----- 3 files changed, 12 insertions(+), 9 deletions(-) diff --git a/dockerfiles/ci/bookworm/build-extensions.sh b/dockerfiles/ci/bookworm/build-extensions.sh index a4b7eb475e1..8a6ebe891bb 100755 --- a/dockerfiles/ci/bookworm/build-extensions.sh +++ b/dockerfiles/ci/bookworm/build-extensions.sh @@ -8,7 +8,7 @@ PHP_ZTS=$(php -r 'echo PHP_ZTS;') EXTENSION_DIR=$(php-config --extension-dir) # This make `pecl install` use all available cores -export MAKEFLAGS="-j $(nproc)" +export MAKEFLAGS="-s -j $(nproc)" XDEBUG_VERSIONS=(-3.1.2) if [[ $PHP_VERSION_ID -le 70 ]]; then diff --git a/dockerfiles/ci/bookworm/build-php.sh b/dockerfiles/ci/bookworm/build-php.sh index 1f3a60de6f7..29e622b447d 100755 --- a/dockerfiles/ci/bookworm/build-php.sh +++ b/dockerfiles/ci/bookworm/build-php.sh @@ -91,7 +91,7 @@ ${PHP_SRC_DIR}/configure \ --with-config-file-path=${INSTALL_DIR} \ --with-config-file-scan-dir=${INSTALL_DIR}/conf.d -make -j "$((`nproc`+1))" || true +make -s -j "$((`nproc`+1))" || true if ! [[ -f ext/phar/phar.phar ]] && [[ ${INSTALL_VERSION} == *asan* ]]; then # Cross-compilation with asan and qemu will fail with a segfault instead. Handle this. @@ -99,7 +99,7 @@ if ! [[ -f ext/phar/phar.phar ]] && [[ ${INSTALL_VERSION} == *asan* ]]; then mkdir -p ext/phar/ touch ext/phar/phar.phar # ensure compilation finishes, then back up php - make || true; + make -s || true; exit; fi @@ -109,7 +109,7 @@ if [[ ${INSTALL_VERSION} != *asan* ]]; then # In two steps, because: You've configured multiple SAPIs to be built. You can build only one SAPI module plus CGI, CLI and FPM binaries at the same time. sed -i 's/--enable-embed/--with-apxs2=\/usr\/bin\/apxs2/' config.nice ./config.nice - make -j "$((`nproc`+1))" + make -s -j "$((`nproc`+1))" cp .libs/libphp*.so ${INSTALL_DIR}/lib/apache2handler-libphp.so fi diff --git a/dockerfiles/ci/bookworm/php-8.5/0001-Disable-preserve_none-under-ASan.patch b/dockerfiles/ci/bookworm/php-8.5/0001-Disable-preserve_none-under-ASan.patch index 7be34d2a81f..7014fac1c71 100644 --- a/dockerfiles/ci/bookworm/php-8.5/0001-Disable-preserve_none-under-ASan.patch +++ b/dockerfiles/ci/bookworm/php-8.5/0001-Disable-preserve_none-under-ASan.patch @@ -9,15 +9,16 @@ in llvm-project (commit 996157c). See: https://github.com/llvm/llvm-project/issues/95928 --- - Zend/zend_portability.h | 6 +++++- - 1 file changed, 5 insertions(+), 1 deletion(-) + Zend/zend_portability.h | 7 ++++++- + 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Zend/zend_portability.h b/Zend/zend_portability.h -index 1111111..2222222 100644 +index 6546ebfb5b7..3b657f7b9d9 100644 --- a/Zend/zend_portability.h +++ b/Zend/zend_portability.h -@@ -333,7 +333,11 @@ static zend_always_inline double _zend_get_nan(void) /* {{{ */ - +@@ -333,7 +333,12 @@ char *alloca(); + #endif + #ifdef HAVE_PRESERVE_NONE -# define ZEND_PRESERVE_NONE __attribute__((preserve_none)) +# if __has_feature(address_sanitizer) || defined(__SANITIZE_ADDRESS__) @@ -27,3 +28,5 @@ index 1111111..2222222 100644 +# define ZEND_PRESERVE_NONE __attribute__((preserve_none)) +# endif #endif + + From dac12dfb7bff8d2317608f46a6528373f13322df Mon Sep 17 00:00:00 2001 From: Levi Morrison Date: Tue, 7 Apr 2026 12:59:22 -0600 Subject: [PATCH 11/30] build: bump CI images from bookworm-6/5 to bookworm-7 Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/prof_asan.yml | 2 +- .gitlab/generate-appsec.php | 10 +++++----- .gitlab/generate-package.php | 12 ++++++------ .gitlab/generate-profiler.php | 4 ++-- .gitlab/generate-shared.php | 10 +++++----- .gitlab/generate-tracer.php | 4 ++-- docker-compose.yml | 22 +++++++++++----------- dockerfiles/ci/bookworm/.env | 4 ++-- 8 files changed, 34 insertions(+), 34 deletions(-) diff --git a/.github/workflows/prof_asan.yml b/.github/workflows/prof_asan.yml index 7513ad148f5..1b39db2e7aa 100644 --- a/.github/workflows/prof_asan.yml +++ b/.github/workflows/prof_asan.yml @@ -16,7 +16,7 @@ jobs: CARGO_TARGET_DIR: /tmp/build-cargo RUST_TOOLCHAIN: nightly-2025-06-13 container: - image: datadog/dd-trace-ci:php-${{matrix.php-version}}_bookworm-6 + image: datadog/dd-trace-ci:php-${{matrix.php-version}}_bookworm-7 # https://docs.github.com/en/actions/creating-actions/dockerfile-support-for-github-actions#user options: --user root --privileged diff --git a/.gitlab/generate-appsec.php b/.gitlab/generate-appsec.php index cd8ef347a1d..47e6ef64d98 100644 --- a/.gitlab/generate-appsec.php +++ b/.gitlab/generate-appsec.php @@ -68,7 +68,7 @@ "test appsec extension": stage: test extends: .appsec_test - image: registry.ddbuild.io/images/mirror/datadog/dd-trace-ci:php-${PHP_MAJOR_MINOR}_bookworm-6 + image: registry.ddbuild.io/images/mirror/datadog/dd-trace-ci:php-${PHP_MAJOR_MINOR}_bookworm-7 variables: KUBERNETES_CPU_REQUEST: 3 KUBERNETES_MEMORY_REQUEST: 4Gi @@ -371,7 +371,7 @@ "appsec code coverage": stage: test extends: .appsec_test - image: registry.ddbuild.io/images/mirror/datadog/dd-trace-ci:php-8.3_bookworm-6 + image: registry.ddbuild.io/images/mirror/datadog/dd-trace-ci:php-8.3_bookworm-7 variables: KUBERNETES_CPU_REQUEST: 3 KUBERNETES_MEMORY_REQUEST: 3Gi @@ -493,7 +493,7 @@ "appsec lint": stage: test extends: .appsec_test - image: registry.ddbuild.io/images/mirror/datadog/dd-trace-ci:php-8.3_bookworm-6 + image: registry.ddbuild.io/images/mirror/datadog/dd-trace-ci:php-8.3_bookworm-7 variables: KUBERNETES_CPU_REQUEST: 3 KUBERNETES_MEMORY_REQUEST: 9Gi @@ -515,7 +515,7 @@ "test appsec helper asan": stage: test extends: .appsec_test - image: registry.ddbuild.io/images/mirror/datadog/dd-trace-ci:bookworm-6 + image: registry.ddbuild.io/images/mirror/datadog/dd-trace-ci:bookworm-7 variables: KUBERNETES_CPU_REQUEST: 3 KUBERNETES_MEMORY_REQUEST: 3Gi @@ -541,7 +541,7 @@ #"fuzz appsec helper": # stage: test # extends: .appsec_test -# image: registry.ddbuild.io/images/mirror/datadog/dd-trace-ci:bookworm-6 +# image: registry.ddbuild.io/images/mirror/datadog/dd-trace-ci:bookworm-7 # variables: # KUBERNETES_CPU_REQUEST: 3 # KUBERNETES_MEMORY_REQUEST: 5Gi diff --git a/.gitlab/generate-package.php b/.gitlab/generate-package.php index 13b800e5cd7..ce8a1141dd2 100644 --- a/.gitlab/generate-package.php +++ b/.gitlab/generate-package.php @@ -48,13 +48,13 @@ $asan_build_platforms = [ [ "triplet" => "x86_64-unknown-linux-gnu", - "image_template" => "registry.ddbuild.io/images/mirror/datadog/dd-trace-ci:php-%s_bookworm-6", + "image_template" => "registry.ddbuild.io/images/mirror/datadog/dd-trace-ci:php-%s_bookworm-7", "arch" => "amd64", "host_os" => "linux-gnu", ], [ "triplet" => "aarch64-unknown-linux-gnu", - "image_template" => "registry.ddbuild.io/images/mirror/datadog/dd-trace-ci:php-%s_bookworm-6", + "image_template" => "registry.ddbuild.io/images/mirror/datadog/dd-trace-ci:php-%s_bookworm-7", "arch" => "arm64", "host_os" => "linux-gnu", ] @@ -319,7 +319,7 @@ "pecl build": stage: tracing - image: "registry.ddbuild.io/images/mirror/datadog/dd-trace-ci:php-7.4_bookworm-6" + image: "registry.ddbuild.io/images/mirror/datadog/dd-trace-ci:php-7.4_bookworm-7" tags: [ "arch:amd64" ] needs: [ "prepare code" ] script: @@ -369,7 +369,7 @@ "aggregate tracing extension: []": stage: tracing - image: "registry.ddbuild.io/images/mirror/datadog/dd-trace-ci:php-7.4_bookworm-6" + image: "registry.ddbuild.io/images/mirror/datadog/dd-trace-ci:php-7.4_bookworm-7" tags: [ "arch:amd64" ] script: ls ./ variables: @@ -1136,7 +1136,7 @@ "pecl tests": stage: verify - image: "registry.ddbuild.io/images/mirror/datadog/dd-trace-ci:php-${PHP_VERSION}_bookworm-6" + image: "registry.ddbuild.io/images/mirror/datadog/dd-trace-ci:php-${PHP_VERSION}_bookworm-7" tags: [ "arch:amd64" ] services: - !reference [.services, request-replayer] @@ -1307,7 +1307,7 @@ variables: VALGRIND: false ARCH: "" - CONTAINER_SUFFIX: bookworm-6 + CONTAINER_SUFFIX: bookworm-7 needs: - job: "package loader: []" artifacts: true diff --git a/.gitlab/generate-profiler.php b/.gitlab/generate-profiler.php index 0ed90db7330..bf1c6e27a6c 100644 --- a/.gitlab/generate-profiler.php +++ b/.gitlab/generate-profiler.php @@ -82,7 +82,7 @@ "clippy NTS": stage: test tags: [ "arch:amd64" ] - image: registry.ddbuild.io/images/mirror/datadog/dd-trace-ci:php-${PHP_MAJOR_MINOR}_bookworm-6 + image: registry.ddbuild.io/images/mirror/datadog/dd-trace-ci:php-${PHP_MAJOR_MINOR}_bookworm-7 variables: KUBERNETES_CPU_REQUEST: 5 KUBERNETES_MEMORY_REQUEST: 3Gi @@ -101,7 +101,7 @@ "Cargo test": stage: test tags: [ "arch:amd64" ] - image: registry.ddbuild.io/images/mirror/datadog/dd-trace-ci:php-8.5_bookworm-5 + image: registry.ddbuild.io/images/mirror/datadog/dd-trace-ci:php-8.5_bookworm-7 variables: KUBERNETES_CPU_REQUEST: 5 KUBERNETES_MEMORY_REQUEST: 3Gi diff --git a/.gitlab/generate-shared.php b/.gitlab/generate-shared.php index 6b6cb13990f..0886bd0a6f1 100644 --- a/.gitlab/generate-shared.php +++ b/.gitlab/generate-shared.php @@ -21,7 +21,7 @@ - IMAGE: - "datadog/dd-trace-ci:centos-7" - "datadog/dd-trace-ci:php-compile-extension-alpine" - - "datadog/dd-trace-ci:bookworm-6" + - "datadog/dd-trace-ci:bookworm-7" script: - if [ -f "/opt/libuv/lib/pkgconfig/libuv.pc" ]; then export PKG_CONFIG_PATH="/opt/libuv/lib/pkgconfig:$PKG_CONFIG_PATH"; fi - if [ -d "/opt/catch2" ]; then export CMAKE_PREFIX_PATH=/opt/catch2; fi @@ -45,7 +45,7 @@ "C components UBSAN": tags: [ "arch:amd64" ] stage: test - image: "registry.ddbuild.io/images/mirror/datadog/dd-trace-ci:bookworm-6" + image: "registry.ddbuild.io/images/mirror/datadog/dd-trace-ci:bookworm-7" needs: [] script: - if [ -f "/opt/libuv/lib/pkgconfig/libuv.pc" ]; then export PKG_CONFIG_PATH="/opt/libuv/lib/pkgconfig:$PKG_CONFIG_PATH"; fi @@ -69,7 +69,7 @@ "Build & Test Tea": tags: [ "arch:amd64" ] stage: build - image: "registry.ddbuild.io/images/mirror/datadog/dd-trace-ci:php-${PHP_MAJOR_MINOR}_bookworm-6" + image: "registry.ddbuild.io/images/mirror/datadog/dd-trace-ci:php-${PHP_MAJOR_MINOR}_bookworm-7" parallel: matrix: - PHP_MAJOR_MINOR: *no_asan_minor_major_targets @@ -98,7 +98,7 @@ .tea_test: tags: [ "arch:amd64" ] stage: test - image: "registry.ddbuild.io/images/mirror/datadog/dd-trace-ci:php-${PHP_MAJOR_MINOR}_bookworm-6" + image: "registry.ddbuild.io/images/mirror/datadog/dd-trace-ci:php-${PHP_MAJOR_MINOR}_bookworm-7" interruptible: true rules: - if: $CI_COMMIT_BRANCH == "master" @@ -122,7 +122,7 @@ needs: [] variables: PHP_MAJOR_MINOR: "" - image: "registry.ddbuild.io/images/mirror/datadog/dd-trace-ci:php-${PHP_MAJOR_MINOR}_bookworm-6" + image: "registry.ddbuild.io/images/mirror/datadog/dd-trace-ci:php-${PHP_MAJOR_MINOR}_bookworm-7" script: - | if ! command -v cc >/dev/null 2>&1 && ! command -v clang >/dev/null 2>&1 && ! command -v gcc >/dev/null 2>&1; then diff --git a/.gitlab/generate-tracer.php b/.gitlab/generate-tracer.php index 029fa85ee0e..eec801a5e25 100644 --- a/.gitlab/generate-tracer.php +++ b/.gitlab/generate-tracer.php @@ -67,7 +67,7 @@ function before_script_steps($with_docker_auth = false) { "compile extension: debug": stage: compile tags: [ "arch:${ARCH}" ] - image: registry.ddbuild.io/images/mirror/datadog/dd-trace-ci:php-${PHP_MAJOR_MINOR}_bookworm-6 + image: registry.ddbuild.io/images/mirror/datadog/dd-trace-ci:php-${PHP_MAJOR_MINOR}_bookworm-7 parallel: matrix: - PHP_MAJOR_MINOR: *all_minor_major_targets @@ -187,7 +187,7 @@ function before_script_steps($with_docker_auth = false) { .base_test: stage: test tags: [ "arch:${ARCH}" ] - image: registry.ddbuild.io/images/mirror/datadog/dd-trace-ci:php-${PHP_MAJOR_MINOR}_bookworm-6 + image: registry.ddbuild.io/images/mirror/datadog/dd-trace-ci:php-${PHP_MAJOR_MINOR}_bookworm-7 timeout: 60m interruptible: true rules: diff --git a/docker-compose.yml b/docker-compose.yml index 9bf6080cffd..a77598f7ed3 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -73,19 +73,19 @@ services: # --- Alpine --- '8.0-alpine': { <<: *linux_php_service, image: 'datadog/dd-trace-ci:php-8.0_alpine' } # --- Bookworm --- - '7.0-bookworm': { <<: *linux_php_service, image: 'datadog/dd-trace-ci:php-7.0_bookworm-6' } - '7.1-bookworm': { <<: *linux_php_service, image: 'datadog/dd-trace-ci:php-7.1_bookworm-6' } - '7.2-bookworm': { <<: *linux_php_service, image: 'datadog/dd-trace-ci:php-7.2_bookworm-6' } - '7.3-bookworm': { <<: *linux_php_service, image: 'datadog/dd-trace-ci:php-7.3_bookworm-6' } - '7.4-bookworm': { <<: *linux_php_service, image: 'datadog/dd-trace-ci:php-7.4_bookworm-6' } + '7.0-bookworm': { <<: *linux_php_service, image: 'datadog/dd-trace-ci:php-7.0_bookworm-7' } + '7.1-bookworm': { <<: *linux_php_service, image: 'datadog/dd-trace-ci:php-7.1_bookworm-7' } + '7.2-bookworm': { <<: *linux_php_service, image: 'datadog/dd-trace-ci:php-7.2_bookworm-7' } + '7.3-bookworm': { <<: *linux_php_service, image: 'datadog/dd-trace-ci:php-7.3_bookworm-7' } + '7.4-bookworm': { <<: *linux_php_service, image: 'datadog/dd-trace-ci:php-7.4_bookworm-7' } '7.4-bookworm-shared-ext': { <<: *linux_php_service, image: 'datadog/dd-trace-ci:php-7.4-shared-ext-6' } - '8.0-bookworm': { <<: *linux_php_service, image: 'datadog/dd-trace-ci:php-8.0_bookworm-6' } + '8.0-bookworm': { <<: *linux_php_service, image: 'datadog/dd-trace-ci:php-8.0_bookworm-7' } '8.0-bookworm-shared-ext': { <<: *linux_php_service, image: 'datadog/dd-trace-ci:php-8.0-shared-ext-6' } - '8.1-bookworm': { <<: *linux_php_service, image: 'datadog/dd-trace-ci:php-8.1_bookworm-6' } - '8.2-bookworm': { <<: *linux_php_service, image: 'datadog/dd-trace-ci:php-8.2_bookworm-6' } - '8.3-bookworm': { <<: *linux_php_service, image: 'datadog/dd-trace-ci:php-8.3_bookworm-6' } - '8.4-bookworm': { <<: *linux_php_service, image: 'datadog/dd-trace-ci:php-8.4_bookworm-6' } - '8.5-bookworm': { <<: *linux_php_service, image: 'datadog/dd-trace-ci:php-8.5_bookworm-6' } + '8.1-bookworm': { <<: *linux_php_service, image: 'datadog/dd-trace-ci:php-8.1_bookworm-7' } + '8.2-bookworm': { <<: *linux_php_service, image: 'datadog/dd-trace-ci:php-8.2_bookworm-7' } + '8.3-bookworm': { <<: *linux_php_service, image: 'datadog/dd-trace-ci:php-8.3_bookworm-7' } + '8.4-bookworm': { <<: *linux_php_service, image: 'datadog/dd-trace-ci:php-8.4_bookworm-7' } + '8.5-bookworm': { <<: *linux_php_service, image: 'datadog/dd-trace-ci:php-8.5_bookworm-7' } 'php-master-buster': { <<: *linux_php_service, image: 'datadog/dd-trace-ci:php-master_buster' } # --- CentOS 6 --- '7.0-centos7': { <<: *linux_php_service, image: 'datadog/dd-trace-ci:php-7.0_centos-7' } diff --git a/dockerfiles/ci/bookworm/.env b/dockerfiles/ci/bookworm/.env index 1a92ca601b5..c262c5f2817 100644 --- a/dockerfiles/ci/bookworm/.env +++ b/dockerfiles/ci/bookworm/.env @@ -1,2 +1,2 @@ -BOOKWORM_CURRENT_VERSION=6 -BOOKWORM_NEXT_VERSION=7 +BOOKWORM_CURRENT_VERSION=7 +BOOKWORM_NEXT_VERSION=8 From 86e867b1eb4bab5c7b2884c441ce90085d492087 Mon Sep 17 00:00:00 2001 From: Levi Morrison Date: Tue, 7 Apr 2026 16:20:21 -0600 Subject: [PATCH 12/30] build: update clang/llvm references from 17 to 19 Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/prof_asan.yml | 2 +- .gitlab/generate-appsec.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/prof_asan.yml b/.github/workflows/prof_asan.yml index 1b39db2e7aa..80d385a4e6f 100644 --- a/.github/workflows/prof_asan.yml +++ b/.github/workflows/prof_asan.yml @@ -49,7 +49,7 @@ jobs: set -eux switch-php nts-asan cd profiling - export CC=clang-17 + export CC=clang-19 export CFLAGS='-fsanitize=address -fno-omit-frame-pointer' export LDFLAGS='-fsanitize=address -shared-libasan' export RUSTC_LINKER=lld-17 diff --git a/.gitlab/generate-appsec.php b/.gitlab/generate-appsec.php index 47e6ef64d98..dc3e926e303 100644 --- a/.gitlab/generate-appsec.php +++ b/.gitlab/generate-appsec.php @@ -386,7 +386,7 @@ sudo cp -v vault /usr/local/bin cd - sudo sed -i 's|http://deb.debian.org/debian|http://archive.debian.org/debian|g; s|http://security.debian.org/debian-security|http://archive.debian.org/debian-security|g' /etc/apt/sources.list - sudo apt-get update && sudo apt-get install -y jq gcovr llvm-17 clang-17 + sudo apt-get update && sudo apt-get install -y jq gcovr llvm-19 clang-19 echo "Installing codecov" @@ -406,7 +406,7 @@ - | cmake .. -DCMAKE_BUILD_TYPE=Debug -DDD_APPSEC_ENABLE_COVERAGE=ON \ -DDD_APPSEC_TESTING=ON -DCMAKE_CXX_FLAGS="-stdlib=libc++" \ - -DCMAKE_C_COMPILER=/usr/bin/clang-17 -DCMAKE_CXX_COMPILER=/usr/bin/clang++-17 \ + -DCMAKE_C_COMPILER=/usr/bin/clang-19 -DCMAKE_CXX_COMPILER=/usr/bin/clang++-19 \ -DCMAKE_CXX_LINK_FLAGS="-stdlib=libc++" \ -DBOOST_CACHE_PREFIX="$CI_PROJECT_DIR/boost-cache" - | From f17823a879aa97b80809833211e9c3391ea0de9b Mon Sep 17 00:00:00 2001 From: Levi Morrison Date: Tue, 7 Apr 2026 16:36:03 -0600 Subject: [PATCH 13/30] =?UTF-8?q?fix(centos-7):=20restore=20ctest,=20updat?= =?UTF-8?q?e=20clang/llvm/clang-tidy=2017=20=E2=86=92=2019?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ctest is required by the appsec C components ASAN job (make test calls ctest internally). cpack remains removed as it is genuinely unused. Also updates clang-tidy, llvm-cov, llvm-profdata, clang-format, and libc++ references from version 17 to 19 in appsec CI and cmake config. Co-Authored-By: Claude Sonnet 4.6 --- .gitlab/generate-appsec.php | 26 ++++++++++++------------- appsec/cmake/clang-tidy.cmake | 20 +++++++++---------- dockerfiles/ci/centos/7/base.Dockerfile | 2 +- 3 files changed, 24 insertions(+), 24 deletions(-) diff --git a/.gitlab/generate-appsec.php b/.gitlab/generate-appsec.php index dc3e926e303..b429f5ed7e3 100644 --- a/.gitlab/generate-appsec.php +++ b/.gitlab/generate-appsec.php @@ -50,7 +50,7 @@ before_script: - git config --global --add safe.directory "$(pwd)/appsec/third_party/libddwaf" - - sudo apt install -y clang-tidy-17 libc++-17-dev libc++abi-17-dev + - sudo apt install -y clang-tidy-19 libc++-19-dev libc++abi-19-dev - mkdir -p appsec/build boost-cache boost-cache cache: - key: "appsec boost cache" @@ -420,8 +420,8 @@ ./appsec/build/tests/helper/ddappsec_helper_test - | cd /tmp/cov-ext - llvm-profdata-17 merge -sparse *.profraw -o default.profdata - llvm-cov-17 export "$CI_PROJECT_DIR"/appsec/build/ddappsec.so \ + llvm-profdata-19 merge -sparse *.profraw -o default.profdata + llvm-cov-19 export "$CI_PROJECT_DIR"/appsec/build/ddappsec.so \ -format=lcov -instr-profile=default.profdata \ > "$CI_PROJECT_DIR"/appsec/build/coverage-ext.lcov echo "Uploading extension coverage to codecov" @@ -429,8 +429,8 @@ codecov -t "$CODECOV_TOKEN" -n appsec-extension -v -f appsec/build/coverage-ext.lcov - | cd /tmp/cov-helper - llvm-profdata-17 merge -sparse *.profraw -o default.profdata - llvm-cov-17 export "$CI_PROJECT_DIR"/appsec/build/tests/helper/ddappsec_helper_test \ + llvm-profdata-19 merge -sparse *.profraw -o default.profdata + llvm-cov-19 export "$CI_PROJECT_DIR"/appsec/build/tests/helper/ddappsec_helper_test \ -format=lcov -instr-profile=default.profdata \ > "$CI_PROJECT_DIR/appsec/build/coverage-helper.lcov" echo "Uploading helper coverage to codecov" @@ -500,15 +500,15 @@ KUBERNETES_MEMORY_LIMIT: 10Gi ARCH: amd64 script: - - sudo apt install -y clang-format-17 + - sudo apt install -y clang-format-19 - cd appsec/build - | cmake .. -DCMAKE_BUILD_TYPE=Debug -DDD_APPSEC_ENABLE_COVERAGE=OFF \ -DDD_APPSEC_TESTING=OFF -DCMAKE_CXX_FLAGS="-stdlib=libc++" \ -DCMAKE_CXX_LINK_FLAGS="-stdlib=libc++" \ -DBOOST_CACHE_PREFIX="$CI_PROJECT_DIR/boost-cache" \ - -DCLANG_TIDY=/usr/bin/run-clang-tidy-17 \ - -DCLANG_FORMAT=/usr/bin/clang-format-17 + -DCLANG_TIDY=/usr/bin/run-clang-tidy-19 \ + -DCLANG_FORMAT=/usr/bin/clang-format-19 - make -j 4 extension ddappsec-helper - make format tidy @@ -533,7 +533,7 @@ -DASAN_BUILD" -DCMAKE_EXE_LINKER_FLAGS="-fsanitize=address -fsanitize=leak" \ -DCMAKE_MODULE_LINKER_FLAGS="-fsanitize=address -fsanitize=leak" \ -DBOOST_CACHE_PREFIX="$CI_PROJECT_DIR/boost-cache" \ - -DCLANG_TIDY=/usr/bin/run-clang-tidy-17 + -DCLANG_TIDY=/usr/bin/run-clang-tidy-19 - make -j 4 ddappsec_helper_test - cd ../..; ./appsec/build/tests/helper/ddappsec_helper_test @@ -559,7 +559,7 @@ # - cd - # # - cd appsec/build -# - cmake .. -DCMAKE_BUILD_TYPE=Debug -DDD_APPSEC_BUILD_EXTENSION=OFF -DCMAKE_CXX_FLAGS="-stdlib=libc++" -DCMAKE_CXX_LINK_FLAGS="-stdlib=libc++" -DFUZZER_ARCHIVE_PATH=$fuzzer -DBOOST_CACHE_PREFIX=/boost-cache -DCLANG_TIDY=/usr/bin/run-clang-tidy-17 +# - cmake .. -DCMAKE_BUILD_TYPE=Debug -DDD_APPSEC_BUILD_EXTENSION=OFF -DCMAKE_CXX_FLAGS="-stdlib=libc++" -DCMAKE_CXX_LINK_FLAGS="-stdlib=libc++" -DFUZZER_ARCHIVE_PATH=$fuzzer -DBOOST_CACHE_PREFIX=/boost-cache -DCLANG_TIDY=/usr/bin/run-clang-tidy-19 # - make -j 4 ddappsec_helper_fuzzer corpus_generator # - cd .. # - mkdir -p tests/fuzzer/{corpus,results,logs} @@ -580,9 +580,9 @@ # - LLVM_PROFILE_FILE=body.profraw ./build/tests/fuzzer/ddappsec_helper_fuzzer --log_level=off --fuzz-mode=body -max_total_time=60 -rss_limit_mb=4096 -artifact_prefix=tests/fuzzer/results/ tests/fuzzer/corpus/ # # - '# Generate coverage' -# - llvm-profdata-17 merge -sparse *.profraw -o default.profdata -# - llvm-cov-17 show build/tests/fuzzer/ddappsec_helper_fuzzer -instr-profile=default.profdata -ignore-filename-regex="(tests|third_party|build)" -format=html > fuzzer-coverage.html -# - llvm-cov-17 report -instr-profile default.profdata build/tests/fuzzer/ddappsec_helper_fuzzer -ignore-filename-regex="(tests|third_party|build)" -show-region-summary=false +# - llvm-profdata-19 merge -sparse *.profraw -o default.profdata +# - llvm-cov-19 show build/tests/fuzzer/ddappsec_helper_fuzzer -instr-profile=default.profdata -ignore-filename-regex="(tests|third_party|build)" -format=html > fuzzer-coverage.html +# - llvm-cov-19 report -instr-profile default.profdata build/tests/fuzzer/ddappsec_helper_fuzzer -ignore-filename-regex="(tests|third_party|build)" -show-region-summary=false # artifacts: # paths: # - appsec/fuzzer-coverage.html diff --git a/appsec/cmake/clang-tidy.cmake b/appsec/cmake/clang-tidy.cmake index f10567020d5..fd334caeb63 100644 --- a/appsec/cmake/clang-tidy.cmake +++ b/appsec/cmake/clang-tidy.cmake @@ -1,17 +1,17 @@ -# Prefer a locally installed LLVM 17 run-clang-tidy (e.g. via brew install llvm@17) +# Prefer a locally installed LLVM 19 run-clang-tidy (e.g. via brew install llvm@19) # over the Docker-based wrapper, since native execution avoids SDK incompatibilities. -set(_LLVM17_BIN /opt/homebrew/opt/llvm@17/bin) -set(_LLVM17_TIDY ${_LLVM17_BIN}/run-clang-tidy) +set(_LLVM19_BIN /opt/homebrew/opt/llvm@19/bin) +set(_LLVM19_TIDY ${_LLVM19_BIN}/run-clang-tidy) set(CLANG_TIDY_BINARY_OPT "") -if(EXISTS ${_LLVM17_TIDY}) - set(CLANG_TIDY ${_LLVM17_TIDY}) - set(CLANG_TIDY_BINARY_OPT -clang-tidy-binary ${_LLVM17_BIN}/clang-tidy) - message(STATUS "Using Homebrew LLVM 17 run-clang-tidy: ${CLANG_TIDY}") +if(EXISTS ${_LLVM19_TIDY}) + set(CLANG_TIDY ${_LLVM19_TIDY}) + set(CLANG_TIDY_BINARY_OPT -clang-tidy-binary ${_LLVM19_BIN}/clang-tidy) + message(STATUS "Using Homebrew LLVM 19 run-clang-tidy: ${CLANG_TIDY}") else() - find_program(_RCT_VERSIONED run-clang-tidy-17) + find_program(_RCT_VERSIONED run-clang-tidy-19) if(NOT _RCT_VERSIONED STREQUAL _RCT_VERSIONED-NOTFOUND) set(CLANG_TIDY ${_RCT_VERSIONED}) - find_program(_CT_VERSIONED clang-tidy-17) + find_program(_CT_VERSIONED clang-tidy-19) if(NOT _CT_VERSIONED STREQUAL _CT_VERSIONED-NOTFOUND) set(CLANG_TIDY_BINARY_OPT -clang-tidy-binary ${_CT_VERSIONED}) endif() @@ -37,7 +37,7 @@ else() if(NOT CLANG_TIDY) set(CLANG_TIDY ${CMAKE_CURRENT_LIST_DIR}/clang-tools/run-clang-tidy) if(NOT EXISTS ${CLANG_TIDY}) - message(STATUS "Cannot find clang-tidy version 17, either set CLANG_TIDY or make it discoverable") + message(STATUS "Cannot find clang-tidy version 19, either set CLANG_TIDY or make it discoverable") return() endif() message(STATUS "Using Docker-based run-clang-tidy wrapper: ${CLANG_TIDY}") diff --git a/dockerfiles/ci/centos/7/base.Dockerfile b/dockerfiles/ci/centos/7/base.Dockerfile index f02d36aec0c..f9e41509a56 100644 --- a/dockerfiles/ci/centos/7/base.Dockerfile +++ b/dockerfiles/ci/centos/7/base.Dockerfile @@ -121,7 +121,7 @@ RUN source scl_source enable devtoolset-7; set -eux; \ mkdir -v 'build' && cd 'build'; \ ../bootstrap -- -DBUILD_CursesDialog=OFF && make -j $(nproc) && make install; \ cd - && rm -fr build "${SRC_DIR}/cmake" \ - && rm -f /usr/local/bin/cpack /usr/local/bin/ctest \ + && rm -f /usr/local/bin/cpack \ && rm -rf /usr/local/share/cmake-*/Help /usr/local/share/doc/cmake* /usr/local/share/man/man1/cmake* # Install Catch2 From e5f9a20d59fb30353aeb4c128e62aee867ad70ce Mon Sep 17 00:00:00 2001 From: Levi Morrison Date: Tue, 7 Apr 2026 16:39:14 -0600 Subject: [PATCH 14/30] ci: put bookworm next down to 7 in case I need to rebuild --- dockerfiles/ci/bookworm/.env | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/ci/bookworm/.env b/dockerfiles/ci/bookworm/.env index c262c5f2817..dbdc61249fe 100644 --- a/dockerfiles/ci/bookworm/.env +++ b/dockerfiles/ci/bookworm/.env @@ -1,2 +1,2 @@ BOOKWORM_CURRENT_VERSION=7 -BOOKWORM_NEXT_VERSION=8 +BOOKWORM_NEXT_VERSION=7 From edb04adcdaf2acb9fe2a04a54d37b0866855154b Mon Sep 17 00:00:00 2001 From: Levi Morrison Date: Tue, 7 Apr 2026 21:58:35 -0600 Subject: [PATCH 15/30] fix: update remaining llvm17/clang17 references to 19 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Alpine compile extension image: llvm17-libs/clang17-dev/llvm17 → 19 - build-profiler.sh, generate-profiler.php, build-debug-artifact: Alpine aarch64 clang symlink llvm17 → llvm19 - appsec/cmake/clang-format.cmake: llvm@17 → llvm@19 - centos-7 base.Dockerfile: remove -DCLANG_BUILD_TOOLS=OFF which prevented the clang binary itself from being built/installed, leaving broken symlinks and breaking bindgen Co-Authored-By: Claude Sonnet 4.6 --- .gitlab/build-profiler.sh | 2 +- .gitlab/generate-profiler.php | 2 +- appsec/cmake/clang-format.cmake | 14 +++++++------- .../ci/alpine_compile_extension/base.Dockerfile | 2 +- dockerfiles/ci/centos/7/base.Dockerfile | 2 +- tooling/bin/build-debug-artifact | 2 +- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.gitlab/build-profiler.sh b/.gitlab/build-profiler.sh index c4182c48817..21c94a8ba4b 100755 --- a/.gitlab/build-profiler.sh +++ b/.gitlab/build-profiler.sh @@ -17,7 +17,7 @@ fi # /usr/lib/llvm20/lib/clang/20/include/arm_neon.h:6374:25: error: incompatible constant for this __builtin_neon function # etc. if [ -f /sbin/apk ] && [ $(uname -m) = "aarch64" ]; then - ln -sf ../lib/llvm17/bin/clang /usr/bin/clang + ln -sf ../lib/llvm19/bin/clang /usr/bin/clang fi set -u diff --git a/.gitlab/generate-profiler.php b/.gitlab/generate-profiler.php index bf1c6e27a6c..8fd01b50873 100644 --- a/.gitlab/generate-profiler.php +++ b/.gitlab/generate-profiler.php @@ -43,7 +43,7 @@ IMAGE_SUFFIX: _centos-7 script: - if [ -d '/opt/rh/devtoolset-7' ]; then set +eo pipefail; source scl_source enable devtoolset-7; set -eo pipefail; fi - - if [ -f /sbin/apk ] && [ $(uname -m) = "aarch64" ]; then ln -sf ../lib/llvm17/bin/clang /usr/bin/clang; fi + - if [ -f /sbin/apk ] && [ $(uname -m) = "aarch64" ]; then ln -sf ../lib/llvm19/bin/clang /usr/bin/clang; fi - cd profiling - 'echo "nproc: $(nproc)"' diff --git a/appsec/cmake/clang-format.cmake b/appsec/cmake/clang-format.cmake index 22d9f47ae28..ee33f590420 100644 --- a/appsec/cmake/clang-format.cmake +++ b/appsec/cmake/clang-format.cmake @@ -1,9 +1,9 @@ -set(_LLVM17_FORMAT /opt/homebrew/opt/llvm@17/bin/clang-format) -if(EXISTS ${_LLVM17_FORMAT}) - set(CLANG_FORMAT ${_LLVM17_FORMAT}) - message(STATUS "Using Homebrew LLVM 17 clang-format: ${CLANG_FORMAT}") +set(_LLVM19_FORMAT /opt/homebrew/opt/llvm@19/bin/clang-format) +if(EXISTS ${_LLVM19_FORMAT}) + set(CLANG_FORMAT ${_LLVM19_FORMAT}) + message(STATUS "Using Homebrew LLVM 19 clang-format: ${CLANG_FORMAT}") else() - find_program(_CF_VERSIONED clang-format-17) + find_program(_CF_VERSIONED clang-format-19) if(NOT _CF_VERSIONED STREQUAL _CF_VERSIONED-NOTFOUND) set(CLANG_FORMAT ${_CF_VERSIONED}) else() @@ -14,7 +14,7 @@ else() OUTPUT_VARIABLE _CF_VERSION OUTPUT_STRIP_TRAILING_WHITESPACE ERROR_QUIET) - if(_CF_VERSION MATCHES " 17\\.") + if(_CF_VERSION MATCHES " 19\\.") set(CLANG_FORMAT ${_CF_UNVERSIONED}) endif() endif() @@ -22,7 +22,7 @@ else() if(NOT CLANG_FORMAT) set(CLANG_FORMAT ${CMAKE_CURRENT_LIST_DIR}/clang-tools/clang-format) if(NOT EXISTS ${CLANG_FORMAT}) - message(STATUS "Cannot find clang-format version 17, either set CLANG_FORMAT or make it discoverable") + message(STATUS "Cannot find clang-format version 19, either set CLANG_FORMAT or make it discoverable") return() endif() message(STATUS "Using Docker-based clang-format wrapper: ${CLANG_FORMAT}") diff --git a/dockerfiles/ci/alpine_compile_extension/base.Dockerfile b/dockerfiles/ci/alpine_compile_extension/base.Dockerfile index 86d3c905770..aff36105b8e 100644 --- a/dockerfiles/ci/alpine_compile_extension/base.Dockerfile +++ b/dockerfiles/ci/alpine_compile_extension/base.Dockerfile @@ -34,7 +34,7 @@ RUN set -eux; \ # Minimum: libclang. Nice-to-have: full toolchain including linker to play # with cross-language link-time optimization. Needs to match rustc -Vv's llvm # version. -RUN apk add --no-cache llvm17-libs clang17-dev lld llvm17 rust-stdlib rust-src cargo clang git protoc unzip +RUN apk add --no-cache llvm19-libs clang19-dev lld llvm19 rust-stdlib rust-src cargo clang git protoc unzip RUN cargo install --force --locked bindgen-cli && mv /root/.cargo/bin/bindgen /usr/local/bin/ && rm -rf /root/.cargo diff --git a/dockerfiles/ci/centos/7/base.Dockerfile b/dockerfiles/ci/centos/7/base.Dockerfile index f9e41509a56..7c697400776 100644 --- a/dockerfiles/ci/centos/7/base.Dockerfile +++ b/dockerfiles/ci/centos/7/base.Dockerfile @@ -214,7 +214,7 @@ RUN yum install -y --nogpgcheck devtoolset-9 \ && git clone --depth 1 -b release/19.x https://github.com/llvm/llvm-project.git \ && mkdir -vp llvm-project/build \ && cd llvm-project/build \ - && cmake -G Ninja -DLLVM_ENABLE_PROJECTS="clang;lld" -DLLVM_TARGETS_TO_BUILD=host -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr/local -DLLVM_INCLUDE_TESTS=OFF -DLLVM_ENABLE_BINDINGS=OFF -DCLANG_BUILD_TOOLS=OFF -DLLVM_INSTALL_TOOLCHAIN_ONLY=ON ../llvm \ + && cmake -G Ninja -DLLVM_ENABLE_PROJECTS="clang;lld" -DLLVM_TARGETS_TO_BUILD=host -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr/local -DLLVM_INCLUDE_TESTS=OFF -DLLVM_ENABLE_BINDINGS=OFF -DLLVM_INSTALL_TOOLCHAIN_ONLY=ON ../llvm \ && cmake --build . --parallel $(nproc) --target "install/strip" \ && rm -f /usr/local/lib/libclang*.a /usr/local/lib/libLLVM*.a \ && rm -rf /usr/local/include/llvm /usr/local/include/clang \ diff --git a/tooling/bin/build-debug-artifact b/tooling/bin/build-debug-artifact index 1786c2af69a..8cf8bfaa41c 100755 --- a/tooling/bin/build-debug-artifact +++ b/tooling/bin/build-debug-artifact @@ -218,7 +218,7 @@ cp tmp/build_extension/modules/ddtrace.so /output/ddtrace.so")" if [[ "$BUILD_PROFILER" == "1" ]]; then PROFILER_SCRIPT="$(_preamble "if [ -f /sbin/apk ] && [ \$(uname -m) = 'aarch64' ]; then - ln -sf ../lib/llvm17/bin/clang /usr/bin/clang + ln -sf ../lib/llvm19/bin/clang /usr/bin/clang fi (cd profiling && CARGO_TARGET_DIR=${HOME_DIR}/tmp/build_profiler cargo build --profile profiler-release) cp ${HOME_DIR}/tmp/build_profiler/profiler-release/libdatadog_php_profiling.so /output/datadog-profiling${EXT_SUFFIX}.so")" From 27fc984838c1037c9d771bcd79cbb957f575150e Mon Sep 17 00:00:00 2001 From: Levi Morrison Date: Wed, 8 Apr 2026 11:31:22 -0600 Subject: [PATCH 16/30] fix(appsec): find fuzzer runtime lib in Debian's linux/ layout Newer clang versions return a per-target path from -print-runtime-dir (e.g. .../lib/x86_64-pc-linux-gnu) but Debian/Ubuntu packages install compiler-rt runtime libs in a sibling "linux/" directory. Add that as a fallback search path for both find_library and target_link_directories. Co-Authored-By: Claude Sonnet 4.6 --- appsec/tests/fuzzer/CMakeLists.txt | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/appsec/tests/fuzzer/CMakeLists.txt b/appsec/tests/fuzzer/CMakeLists.txt index 221be2d7a50..6880518269f 100644 --- a/appsec/tests/fuzzer/CMakeLists.txt +++ b/appsec/tests/fuzzer/CMakeLists.txt @@ -19,20 +19,24 @@ if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang" AND CMAKE_CXX_COMPILER_VERSION VERSIO OUTPUT_VARIABLE LLVM_RUNTIME_DIR OUTPUT_STRIP_TRAILING_WHITESPACE ) + # Newer clang versions return a per-target path (e.g. .../lib/x86_64-pc-linux-gnu) but + # Debian/Ubuntu packages install runtime libs in the sibling "linux" directory. + get_filename_component(LLVM_RUNTIME_PARENT "${LLVM_RUNTIME_DIR}" DIRECTORY) + set(LLVM_RUNTIME_LINUX_DIR "${LLVM_RUNTIME_PARENT}/linux") execute_process(COMMAND uname -m COMMAND tr -d '\n' OUTPUT_VARIABLE ARCHITECTURE) target_compile_definitions(ddappsec_helper_fuzzer PUBLIC ZLIB_CONST=1) - target_link_directories(ddappsec_helper_fuzzer PRIVATE ${LLVM_RUNTIME_DIR}) + target_link_directories(ddappsec_helper_fuzzer PRIVATE ${LLVM_RUNTIME_DIR} ${LLVM_RUNTIME_LINUX_DIR}) target_link_libraries(ddappsec_helper_fuzzer PRIVATE libddwaf_objects pthread spdlog cpp-base64 msgpack_c rapidjson_appsec boost_system zlibstatic) set(FUZZER_LIB_NAME "libclang_rt.fuzzer_no_main-${ARCHITECTURE}.a") - find_library(FUZZER_LIB ${FUZZER_LIB_NAME} PATHS ${LLVM_RUNTIME_DIR}) + find_library(FUZZER_LIB ${FUZZER_LIB_NAME} PATHS ${LLVM_RUNTIME_DIR} ${LLVM_RUNTIME_LINUX_DIR}) if(NOT FUZZER_LIB) set(FUZZER_LIB_NAME_FALLBACK "libclang_rt.fuzzer_no_main.a") - find_library(FUZZER_LIB ${FUZZER_LIB_NAME_FALLBACK} PATHS ${LLVM_RUNTIME_DIR}) + find_library(FUZZER_LIB ${FUZZER_LIB_NAME_FALLBACK} PATHS ${LLVM_RUNTIME_DIR} ${LLVM_RUNTIME_LINUX_DIR}) endif() if(NOT FUZZER_LIB) From 3ee233627bd323d52f5d7541ada88dd990949885 Mon Sep 17 00:00:00 2001 From: Levi Morrison Date: Wed, 8 Apr 2026 11:54:52 -0600 Subject: [PATCH 17/30] fix(appsec): pass __VA_ARGS__ through CONFIG to SYSCFG to avoid empty variadic MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit clang 19 with -Werror,-Wc23-extensions rejects calling a variadic macro with no argument for '...'. CONFIG's body called SYSCFG(type, name) with only 2 args. Pass CONFIG's own __VA_ARGS__ through instead — CONFIG is always called with at least a default value, so the variadic arg is never empty. SYSCFG ignores the extra args in this context anyway. Co-Authored-By: Claude Sonnet 4.6 --- appsec/cmake/extension.cmake | 2 +- appsec/src/extension/.clang-tidy | 2 +- appsec/src/extension/configuration.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/appsec/cmake/extension.cmake b/appsec/cmake/extension.cmake index 64a1e5832a2..12e77ba1d6e 100644 --- a/appsec/cmake/extension.cmake +++ b/appsec/cmake/extension.cmake @@ -56,7 +56,7 @@ if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU" AND CMAKE_CXX_COMPILER_VERSION VERSION_L target_compile_options(extension PRIVATE -Wall) else() target_compile_options(extension PRIVATE -Wall -Wextra $<$:-pedantic> - -Werror -Wno-nullability-extension -Wno-gnu-zero-variadic-macro-arguments + -Werror -Wno-nullability-extension -Wno-gnu-zero-variadic-macro-arguments -Wno-c23-extensions -Wno-gnu-auto-type -Wno-language-extension-token $<$:-Wno-missing-field-initializers>) endif() diff --git a/appsec/src/extension/.clang-tidy b/appsec/src/extension/.clang-tidy index e5aeb8efaf9..3492b5fef3c 100644 --- a/appsec/src/extension/.clang-tidy +++ b/appsec/src/extension/.clang-tidy @@ -1,3 +1,3 @@ -Checks: '-fuchsia-trailing-return,-hicpp-vararg,-cppcoreguidelines-pro-type-vararg,-clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling,-cppcoreguidelines-pro-bounds-array-to-pointer-decay' +Checks: '-fuchsia-trailing-return,-hicpp-vararg,-cppcoreguidelines-pro-type-vararg,-clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling,-cppcoreguidelines-pro-bounds-array-to-pointer-decay,-clang-diagnostic-c23-extensions' InheritParentConfig: true diff --git a/appsec/src/extension/configuration.h b/appsec/src/extension/configuration.h index c1da7f40743..bae2e2a9bf6 100644 --- a/appsec/src/extension/configuration.h +++ b/appsec/src/extension/configuration.h @@ -116,7 +116,7 @@ typedef enum { DD_CONFIGURATION } dd_config_id; zai_config_memoized_entries[DDAPPSEC_CONFIG_##name].decoded_value) #define CONFIG(type, name, ...) \ type(get_##name, *zai_config_get_value(DDAPPSEC_CONFIG_##name)) \ - SYSCFG(type, name) + SYSCFG(type, name, __VA_ARGS__) DD_CONFIGURATION #undef CONFIG #undef SYSCFG From dc150daf72a21ccbf5afda2426c2023153d1abc5 Mon Sep 17 00:00:00 2001 From: Levi Morrison Date: Wed, 8 Apr 2026 12:43:07 -0600 Subject: [PATCH 18/30] style(appsec): clang-format-19 helper sources Co-Authored-By: Claude Sonnet 4.6 --- .../src/extension/commands/request_shutdown.c | 6 +++--- appsec/src/extension/commands_helpers.c | 2 +- appsec/src/extension/ddappsec.c | 2 +- appsec/src/extension/entity_body.c | 2 +- appsec/src/extension/network.c | 4 ++-- appsec/src/extension/request_abort.c | 6 +++--- appsec/src/extension/tags.c | 8 ++++---- appsec/src/helper/main.cpp | 2 +- appsec/src/helper/network/acceptor.cpp | 4 ++-- appsec/src/helper/rate_limit.hpp | 2 +- appsec/src/helper/remote_config/config.cpp | 2 +- appsec/src/helper/remote_config/config.hpp | 4 +--- .../listeners/asm_features_listener.hpp | 2 +- appsec/src/helper/runner.cpp | 2 +- appsec/src/helper/utils.cpp | 2 +- appsec/tests/helper/engine_test.cpp | 17 +++++++++-------- 16 files changed, 33 insertions(+), 34 deletions(-) diff --git a/appsec/src/extension/commands/request_shutdown.c b/appsec/src/extension/commands/request_shutdown.c index 0ec3148c95a..d622603e770 100644 --- a/appsec/src/extension/commands/request_shutdown.c +++ b/appsec/src/extension/commands/request_shutdown.c @@ -130,7 +130,7 @@ static void _pack_headers_no_cookies_llist( zend_llist_position pos; for (sapi_header_struct *header = zend_llist_get_first_ex(hl, &pos); header; - header = zend_llist_get_next_ex(hl, &pos)) { + header = zend_llist_get_next_ex(hl, &pos)) { const char *pcol = memchr(header->header, ':', header->header_len); if (!pcol) { continue; @@ -172,7 +172,7 @@ static void _pack_headers_no_cookies_llist( mpack_start_array(w, zend_llist_count(coll)); zend_llist_position p; for (struct _header_val *hv = zend_llist_get_first_ex(coll, &p); hv; - hv = zend_llist_get_next_ex(coll, &p)) { + hv = zend_llist_get_next_ex(coll, &p)) { dd_mpack_write_nullable_str_lim( w, hv->val, hv->len, DD_MPACK_DEF_STRING_LIMIT); } @@ -189,7 +189,7 @@ static const char *nullable _header_content_type_llist( { zend_llist_position pos; for (sapi_header_struct *header = zend_llist_get_first_ex(hl, &pos); header; - header = zend_llist_get_next_ex(hl, &pos)) { + header = zend_llist_get_next_ex(hl, &pos)) { if (header->header_len >= LSTRLEN("content-type") && strncasecmp(header->header, LSTRARG("content-type")) == 0) { const char *pcol = memchr(header->header, ':', header->header_len); diff --git a/appsec/src/extension/commands_helpers.c b/appsec/src/extension/commands_helpers.c index d1a5ffcf23d..a536acde50e 100644 --- a/appsec/src/extension/commands_helpers.c +++ b/appsec/src/extension/commands_helpers.c @@ -805,7 +805,7 @@ static void _dump_out_msg(dd_log_level_t lvl, zend_llist *iovecs) zend_llist_position pos; int i = 1; for (struct iovec *iov = zend_llist_get_first_ex(iovecs, &pos); iov; - iov = zend_llist_get_next_ex(iovecs, &pos), i++) { + iov = zend_llist_get_next_ex(iovecs, &pos), i++) { zend_string *zstr = php_base64_encode(iov->iov_base, iov->iov_len); if (ZSTR_LEN(zstr) > INT_MAX) { return; diff --git a/appsec/src/extension/ddappsec.c b/appsec/src/extension/ddappsec.c index 9eb96144bf0..9e2a8fa6010 100644 --- a/appsec/src/extension/ddappsec.c +++ b/appsec/src/extension/ddappsec.c @@ -130,7 +130,7 @@ static void ddappsec_sort_modules(void *base, size_t count, size_t siz, // Reorder ddappsec to ensure it's always after ddtrace for (Bucket *module = base, *end = module + count, *ddappsec_module = NULL; - module < end; ++module) { + module < end; ++module) { zend_module_entry *m = (zend_module_entry *)Z_PTR(module->val); if (m->name == ddappsec_module_entry.name) { ddappsec_module = module; diff --git a/appsec/src/extension/entity_body.c b/appsec/src/extension/entity_body.c index 4c27daf809f..df94e3ef455 100644 --- a/appsec/src/extension/entity_body.c +++ b/appsec/src/extension/entity_body.c @@ -192,7 +192,7 @@ static bool _assume_utf8(const char *ct, size_t ct_len) return true; } for (const char *end = ct + ct_len, *c = psemi + 1; - c < end - LSTRLEN("charset=utf-8") + 1; c++) { + c < end - LSTRLEN("charset=utf-8") + 1; c++) { if (tolower(*c) == 'c' && tolower(*(c + 1)) == 'h' && tolower(*(c + 2)) == 'a' && tolower(*(c + 3)) == 'r' && tolower(*(c + 4)) == 's' && tolower(*(c + 5)) == 'e' && // NOLINT diff --git a/appsec/src/extension/network.c b/appsec/src/extension/network.c index 641853c6c1f..86f7ee58824 100644 --- a/appsec/src/extension/network.c +++ b/appsec/src/extension/network.c @@ -187,7 +187,7 @@ static size_t _iovecs_total_size(zend_llist *nonnull iovecs) zend_llist_position pos; size_t total = 0; for (struct iovec *iov = zend_llist_get_first_ex(iovecs, &pos); iov; - iov = zend_llist_get_next_ex(iovecs, &pos)) { + iov = zend_llist_get_next_ex(iovecs, &pos)) { total += iov->iov_len; } return total; @@ -212,7 +212,7 @@ dd_result dd_conn_sendv(dd_conn *nonnull conn, zend_llist *nonnull iovecs) zend_llist_position pos; size_t i = 1; for (struct iovec *iov = zend_llist_get_first_ex(iovecs, &pos); iov; - iov = zend_llist_get_next_ex(iovecs, &pos), i++) { + iov = zend_llist_get_next_ex(iovecs, &pos), i++) { iovs[i] = *iov; } diff --git a/appsec/src/extension/request_abort.c b/appsec/src/extension/request_abort.c index 3424c89c229..728ab9eaedd 100644 --- a/appsec/src/extension/request_abort.c +++ b/appsec/src/extension/request_abort.c @@ -667,9 +667,9 @@ static void _run_rshutdowns(void) mlog_g(dd_log_debug, "Running remaining extensions' RSHUTDOWN"); for (zend_hash_internal_pointer_end_ex(&module_registry, &pos); - (module = zend_hash_get_current_data_ptr_ex(&module_registry, &pos)) != - NULL; - zend_hash_move_backwards_ex(&module_registry, &pos)) { + (module = zend_hash_get_current_data_ptr_ex(&module_registry, &pos)) != + NULL; + zend_hash_move_backwards_ex(&module_registry, &pos)) { if (!found_ddappsec && strcmp("ddappsec", module->name) == 0) { found_ddappsec = true; continue; diff --git a/appsec/src/extension/tags.c b/appsec/src/extension/tags.c index e535a628822..b977536394e 100644 --- a/appsec/src/extension/tags.c +++ b/appsec/src/extension/tags.c @@ -464,7 +464,7 @@ static zend_string *_concat_json_fragments(void) zend_llist_position pos; for (zend_string **sp = zend_llist_get_first_ex(&_appsec_json_frags, &pos); - sp != NULL; sp = zend_llist_get_next_ex(&_appsec_json_frags, &pos)) { + sp != NULL; sp = zend_llist_get_next_ex(&_appsec_json_frags, &pos)) { zend_string *s = *sp; needed_len += ZSTR_LEN(s); } @@ -476,8 +476,8 @@ static zend_string *_concat_json_fragments(void) size_t i = 0; for (zend_string **sp = zend_llist_get_first_ex(&_appsec_json_frags, &pos); - sp != NULL; - sp = zend_llist_get_next_ex(&_appsec_json_frags, &pos), i++) { + sp != NULL; + sp = zend_llist_get_next_ex(&_appsec_json_frags, &pos), i++) { if (i != 0) { *buf++ = ','; } @@ -791,7 +791,7 @@ static void _dd_response_headers(zend_array *meta_ht) zend_llist *l = &SG(sapi_headers).headers; zend_llist_position pos; for (sapi_header_struct *header = zend_llist_get_first_ex(l, &pos); header; - header = zend_llist_get_next_ex(l, &pos)) { + header = zend_llist_get_next_ex(l, &pos)) { const char *pcol = memchr(header->header, ':', header->header_len); if (!pcol) { if (header->header_len <= INT_MAX) { diff --git a/appsec/src/helper/main.cpp b/appsec/src/helper/main.cpp index 61b7ce6279e..6785ed4cef9 100644 --- a/appsec/src/helper/main.cpp +++ b/appsec/src/helper/main.cpp @@ -104,7 +104,7 @@ bool ensure_unique_abstract_socket(std::string_view socket_path) return false; } - struct sockaddr_un addr {}; + struct sockaddr_un addr{}; addr.sun_family = AF_UNIX; addr.sun_path[0] = '\0'; diff --git a/appsec/src/helper/network/acceptor.cpp b/appsec/src/helper/network/acceptor.cpp index f2b80314886..8c9e43b3ba1 100644 --- a/appsec/src/helper/network/acceptor.cpp +++ b/appsec/src/helper/network/acceptor.cpp @@ -28,7 +28,7 @@ acceptor::acceptor(const std::string_view &sv) throw std::system_error(errno, std::generic_category()); } - struct sockaddr_un addr {}; + struct sockaddr_un addr{}; std::size_t addr_size; addr.sun_family = AF_UNIX; bool const is_abstract = (!sv.empty() && sv[0] == '@'); @@ -111,7 +111,7 @@ void acceptor::set_accept_timeout(std::chrono::seconds timeout) std::unique_ptr acceptor::accept() { - struct sockaddr_un addr {}; + struct sockaddr_un addr{}; socklen_t len = sizeof(addr); int s = diff --git a/appsec/src/helper/rate_limit.hpp b/appsec/src/helper/rate_limit.hpp index 54a47c43363..c91f57775c2 100644 --- a/appsec/src/helper/rate_limit.hpp +++ b/appsec/src/helper/rate_limit.hpp @@ -19,7 +19,7 @@ namespace dds { template class rate_limiter { public: explicit rate_limiter(uint32_t max_per_second) - : max_per_second_(max_per_second){}; + : max_per_second_(max_per_second) {}; bool allow() { SPDLOG_TRACE("rate_limiter: allow() called"); diff --git a/appsec/src/helper/remote_config/config.cpp b/appsec/src/helper/remote_config/config.cpp index 2a3ec65e779..67118f7a499 100644 --- a/appsec/src/helper/remote_config/config.cpp +++ b/appsec/src/helper/remote_config/config.cpp @@ -57,7 +57,7 @@ mapped_memory config::read() const auto close_fs = defer{[fd]() { ::close(fd); }}; // check that the uid of the shared memory segment is the same as ours - struct ::stat shm_stat {}; + struct ::stat shm_stat{}; if (::fstat(fd, &shm_stat) == -1) { throw std::runtime_error{ "Call to fstat on memory segment failed: " + strerror_ts(errno)}; diff --git a/appsec/src/helper/remote_config/config.hpp b/appsec/src/helper/remote_config/config.hpp index be94906e6d0..586c5dd3832 100644 --- a/appsec/src/helper/remote_config/config.hpp +++ b/appsec/src/helper/remote_config/config.hpp @@ -135,9 +135,7 @@ class parsed_config_key { std::string key_; std::string_view source_; std::uint64_t org_id_{}; - class product product_ { - known_products::UNKNOWN - }; + class product product_{known_products::UNKNOWN}; std::string_view config_id_; std::string_view name_; }; diff --git a/appsec/src/helper/remote_config/listeners/asm_features_listener.hpp b/appsec/src/helper/remote_config/listeners/asm_features_listener.hpp index 0e81b07908c..a04fb4e4e4d 100644 --- a/appsec/src/helper/remote_config/listeners/asm_features_listener.hpp +++ b/appsec/src/helper/remote_config/listeners/asm_features_listener.hpp @@ -17,7 +17,7 @@ class asm_features_listener : public listener_base { public: explicit asm_features_listener( std::shared_ptr service_config) - : service_config_(std::move(service_config)){}; + : service_config_(std::move(service_config)) {}; void init() override; void on_update(const config &config) override; diff --git a/appsec/src/helper/runner.cpp b/appsec/src/helper/runner.cpp index 32e0ddd60d6..f05dc1e3de4 100644 --- a/appsec/src/helper/runner.cpp +++ b/appsec/src/helper/runner.cpp @@ -38,7 +38,7 @@ std::unique_ptr acceptor_from_config( if (sock_path.size() >= 4 && sock_path.substr(0, 3) == "fd:") { auto rest{sock_path.substr(3)}; int const fd = std::stoi(std::string{rest}); // can throw - struct stat statbuf {}; + struct stat statbuf{}; int const res = fstat(fd, &statbuf); if (res == -1 || !S_ISSOCK(statbuf.st_mode)) { throw std::invalid_argument{ diff --git a/appsec/src/helper/utils.cpp b/appsec/src/helper/utils.cpp index 05c44fc0f02..21e5ab5b02c 100644 --- a/appsec/src/helper/utils.cpp +++ b/appsec/src/helper/utils.cpp @@ -20,7 +20,7 @@ std::string read_file(std::string_view filename) throw std::system_error(errno, std::generic_category()); } - struct stat statbuf {}; + struct stat statbuf{}; auto rc = stat(std::string{filename}.c_str(), &statbuf); auto file_size = rc == 0 ? statbuf.st_size : 0; std::string buffer(file_size, '\0'); diff --git a/appsec/tests/helper/engine_test.cpp b/appsec/tests/helper/engine_test.cpp index 3436374aa87..732e4c67c3d 100644 --- a/appsec/tests/helper/engine_test.cpp +++ b/appsec/tests/helper/engine_test.cpp @@ -279,14 +279,15 @@ TEST(EngineTest, WafDefaultActions) auto listener = std::make_unique(); EXPECT_CALL(*listener, call(_, _, _)) - .WillRepeatedly(Invoke([](dds::parameter_view &data, dds::event &event_, - const dds::network::request_exec_options - &options) -> void { - event_.actions.push_back({dds::action_type::redirect, {}}); - event_.actions.push_back({dds::action_type::block, {}}); - event_.actions.push_back({dds::action_type::stack_trace, {}}); - event_.actions.push_back({dds::action_type::extract_schema, {}}); - })); + .WillRepeatedly(Invoke( + [](dds::parameter_view &data, dds::event &event_, + const dds::network::request_exec_options &options) -> void { + event_.actions.push_back({dds::action_type::redirect, {}}); + event_.actions.push_back({dds::action_type::block, {}}); + event_.actions.push_back({dds::action_type::stack_trace, {}}); + event_.actions.push_back( + {dds::action_type::extract_schema, {}}); + })); auto sub = std::make_unique(); EXPECT_CALL(*sub, get_listener()).WillOnce(Invoke([&]() { From 51f5f5b2237517edad112b5174ce859ffc758208 Mon Sep 17 00:00:00 2001 From: Levi Morrison Date: Wed, 8 Apr 2026 13:17:18 -0600 Subject: [PATCH 19/30] ci: bump bookworm NEXT version to 8 Co-Authored-By: Claude Sonnet 4.6 --- dockerfiles/ci/bookworm/.env | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/ci/bookworm/.env b/dockerfiles/ci/bookworm/.env index dbdc61249fe..c262c5f2817 100644 --- a/dockerfiles/ci/bookworm/.env +++ b/dockerfiles/ci/bookworm/.env @@ -1,2 +1,2 @@ BOOKWORM_CURRENT_VERSION=7 -BOOKWORM_NEXT_VERSION=7 +BOOKWORM_NEXT_VERSION=8 From 59cff4177c22dde6b81f1a1afcdde2e52b1081e0 Mon Sep 17 00:00:00 2001 From: Levi Morrison Date: Wed, 8 Apr 2026 13:27:12 -0600 Subject: [PATCH 20/30] ci: revert CentOS 6 changes to avoid appearing that it's maintained --- dockerfiles/ci/centos/6/docker-compose.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/dockerfiles/ci/centos/6/docker-compose.yml b/dockerfiles/ci/centos/6/docker-compose.yml index 5a77e744e06..3226b1c0e54 100644 --- a/dockerfiles/ci/centos/6/docker-compose.yml +++ b/dockerfiles/ci/centos/6/docker-compose.yml @@ -53,8 +53,8 @@ services: dockerfile: php7.Dockerfile args: phpVersion: "7.4" - phpTarGzUrl: https://www.php.net/distributions/php-7.4.33.tar.gz - phpSha256Hash: 5a2337996f07c8a097e03d46263b5c98d2c8e355227756351421003bea8f463e + phpTarGzUrl: https://www.php.net/distributions/php-7.4.30.tar.gz + phpSha256Hash: e37ea37e0f79109351ac615da85eb7c2c336101fc5bc802ee79a124a4310dc10 image: 'datadog/dd-trace-ci:php-7.4_centos-6' php-8.0: @@ -63,8 +63,8 @@ services: dockerfile: php8.Dockerfile args: phpVersion: "8.0" - phpTarGzUrl: https://www.php.net/distributions/php-8.0.30.tar.gz - phpSha256Hash: 449d2048fcb20a314d8c218097c6d1047a9f1c5bb72aa54d5d3eba0a27a4c80c + phpTarGzUrl: https://www.php.net/distributions/php-8.0.21.tar.gz + phpSha256Hash: 2f51f6e90e2e8efd3a20db08f0dd61d7f8d5a9362f8c7325f1ad28ccea5be0ac image: 'datadog/dd-trace-ci:php-8.0_centos-6' php-8.1: @@ -73,7 +73,7 @@ services: dockerfile: php8.Dockerfile args: phpVersion: "8.1" - phpTarGzUrl: https://www.php.net/distributions/php-8.1.32.tar.gz - phpSha256Hash: 4846836d1de27dbd28e89180f073531087029a77e98e8e019b7b2eddbdb1baff + phpTarGzUrl: https://www.php.net/distributions/php-8.1.8.tar.gz + phpSha256Hash: 889d910558d2492f7f2236921b9bcde620674c8b684ec02d126060f8ca45dc8d image: 'datadog/dd-trace-ci:php-8.1_centos-6' From a499e2b4c8abefb4b7289d3fb89766c31377e98a Mon Sep 17 00:00:00 2001 From: Levi Morrison Date: Wed, 8 Apr 2026 14:41:09 -0600 Subject: [PATCH 21/30] fix(appsec): address clang-tidy 19 new checks - acceptor.cpp: use designated initializer for timeval (layout is system-dependent, so positional init is unsafe) - extension/.clang-tidy: suppress checks new in clang-tidy 19 that fire on pre-existing C code (math-missing-parentheses, macro-to-enum, multi-level-implicit-pointer-conversion, redundant-casting) - helper/.clang-tidy: suppress modernize-use-designated-initializers for internal structs where positional init is unambiguous Co-Authored-By: Claude Sonnet 4.6 --- appsec/src/extension/.clang-tidy | 2 +- appsec/src/helper/.clang-tidy | 2 +- appsec/src/helper/network/acceptor.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/appsec/src/extension/.clang-tidy b/appsec/src/extension/.clang-tidy index 3492b5fef3c..c95447bd56a 100644 --- a/appsec/src/extension/.clang-tidy +++ b/appsec/src/extension/.clang-tidy @@ -1,3 +1,3 @@ -Checks: '-fuchsia-trailing-return,-hicpp-vararg,-cppcoreguidelines-pro-type-vararg,-clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling,-cppcoreguidelines-pro-bounds-array-to-pointer-decay,-clang-diagnostic-c23-extensions' +Checks: '-fuchsia-trailing-return,-hicpp-vararg,-cppcoreguidelines-pro-type-vararg,-clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling,-cppcoreguidelines-pro-bounds-array-to-pointer-decay,-clang-diagnostic-c23-extensions,-readability-math-missing-parentheses,-cppcoreguidelines-macro-to-enum,-bugprone-multi-level-implicit-pointer-conversion,-readability-redundant-casting' InheritParentConfig: true diff --git a/appsec/src/helper/.clang-tidy b/appsec/src/helper/.clang-tidy index 56f0b950c90..7859a734d04 100644 --- a/appsec/src/helper/.clang-tidy +++ b/appsec/src/helper/.clang-tidy @@ -1,4 +1,4 @@ -Checks: 'readability-identifier-naming,-bugprone-lambda-function-name' +Checks: 'readability-identifier-naming,-bugprone-lambda-function-name,-modernize-use-designated-initializers' CheckOptions: - key: readability-identifier-naming.StructCase diff --git a/appsec/src/helper/network/acceptor.cpp b/appsec/src/helper/network/acceptor.cpp index 8c9e43b3ba1..75c972b1a75 100644 --- a/appsec/src/helper/network/acceptor.cpp +++ b/appsec/src/helper/network/acceptor.cpp @@ -101,7 +101,7 @@ acceptor::acceptor(const std::string_view &sv) void acceptor::set_accept_timeout(std::chrono::seconds timeout) { - struct timeval tv = {timeout.count(), 0}; + struct timeval tv = {.tv_sec = timeout.count(), .tv_usec = 0}; int const res = setsockopt(sock_.get(), SOL_SOCKET, SO_RCVTIMEO, &tv, sizeof(tv)); if (res == -1) { From 44617707e5becea5b090ac5cb394a808a5562aaa Mon Sep 17 00:00:00 2001 From: Levi Morrison Date: Wed, 8 Apr 2026 14:57:04 -0600 Subject: [PATCH 22/30] fix(appsec): separate void return from call expression in waf.cpp clang-tidy 19 readability-avoid-return-with-void-value rejects returning the result of a void function call. Co-Authored-By: Claude Sonnet 4.6 --- appsec/src/helper/subscriber/waf.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/appsec/src/helper/subscriber/waf.cpp b/appsec/src/helper/subscriber/waf.cpp index 74b9075f95b..7b6331a9e91 100644 --- a/appsec/src/helper/subscriber/waf.cpp +++ b/appsec/src/helper/subscriber/waf.cpp @@ -689,7 +689,8 @@ void instance::listener::call(dds::parameter_view &data, event &event, switch (code) { case DDWAF_MATCH: rule_triggered_ = true; - return format_waf_result(actions, events, event); + format_waf_result(actions, events, event); + return; case DDWAF_ERR_INTERNAL: waf_run_error_ = true; throw internal_error(); From 1b9f92a54095493cfc7985c4301e0d158dbba20c Mon Sep 17 00:00:00 2001 From: Levi Morrison Date: Wed, 8 Apr 2026 15:17:55 -0600 Subject: [PATCH 23/30] ci(appsec): revert clang-19 migration, keep clang-17, bump to bookworm-7 Reverts all appsec source/config changes that were made to accommodate clang-19 warnings and formatting. Appsec jobs stay on clang-17 for now. Bumps appsec CI image from bookworm-6 to bookworm-7. Co-Authored-By: Claude Sonnet 4.6 --- .gitlab/generate-appsec.php | 30 +++++++++---------- appsec/cmake/extension.cmake | 2 +- appsec/src/extension/.clang-tidy | 2 +- .../src/extension/commands/request_shutdown.c | 6 ++-- appsec/src/extension/commands_helpers.c | 2 +- appsec/src/extension/configuration.h | 2 +- appsec/src/extension/ddappsec.c | 2 +- appsec/src/extension/entity_body.c | 2 +- appsec/src/extension/network.c | 4 +-- appsec/src/extension/request_abort.c | 6 ++-- appsec/src/extension/tags.c | 8 ++--- appsec/src/helper/.clang-tidy | 2 +- appsec/src/helper/main.cpp | 2 +- appsec/src/helper/network/acceptor.cpp | 6 ++-- appsec/src/helper/rate_limit.hpp | 2 +- appsec/src/helper/remote_config/config.cpp | 2 +- appsec/src/helper/remote_config/config.hpp | 4 ++- .../listeners/asm_features_listener.hpp | 2 +- appsec/src/helper/runner.cpp | 2 +- appsec/src/helper/subscriber/waf.cpp | 3 +- appsec/src/helper/utils.cpp | 2 +- appsec/tests/helper/engine_test.cpp | 17 +++++------ 22 files changed, 55 insertions(+), 55 deletions(-) diff --git a/.gitlab/generate-appsec.php b/.gitlab/generate-appsec.php index b429f5ed7e3..47e6ef64d98 100644 --- a/.gitlab/generate-appsec.php +++ b/.gitlab/generate-appsec.php @@ -50,7 +50,7 @@ before_script: - git config --global --add safe.directory "$(pwd)/appsec/third_party/libddwaf" - - sudo apt install -y clang-tidy-19 libc++-19-dev libc++abi-19-dev + - sudo apt install -y clang-tidy-17 libc++-17-dev libc++abi-17-dev - mkdir -p appsec/build boost-cache boost-cache cache: - key: "appsec boost cache" @@ -386,7 +386,7 @@ sudo cp -v vault /usr/local/bin cd - sudo sed -i 's|http://deb.debian.org/debian|http://archive.debian.org/debian|g; s|http://security.debian.org/debian-security|http://archive.debian.org/debian-security|g' /etc/apt/sources.list - sudo apt-get update && sudo apt-get install -y jq gcovr llvm-19 clang-19 + sudo apt-get update && sudo apt-get install -y jq gcovr llvm-17 clang-17 echo "Installing codecov" @@ -406,7 +406,7 @@ - | cmake .. -DCMAKE_BUILD_TYPE=Debug -DDD_APPSEC_ENABLE_COVERAGE=ON \ -DDD_APPSEC_TESTING=ON -DCMAKE_CXX_FLAGS="-stdlib=libc++" \ - -DCMAKE_C_COMPILER=/usr/bin/clang-19 -DCMAKE_CXX_COMPILER=/usr/bin/clang++-19 \ + -DCMAKE_C_COMPILER=/usr/bin/clang-17 -DCMAKE_CXX_COMPILER=/usr/bin/clang++-17 \ -DCMAKE_CXX_LINK_FLAGS="-stdlib=libc++" \ -DBOOST_CACHE_PREFIX="$CI_PROJECT_DIR/boost-cache" - | @@ -420,8 +420,8 @@ ./appsec/build/tests/helper/ddappsec_helper_test - | cd /tmp/cov-ext - llvm-profdata-19 merge -sparse *.profraw -o default.profdata - llvm-cov-19 export "$CI_PROJECT_DIR"/appsec/build/ddappsec.so \ + llvm-profdata-17 merge -sparse *.profraw -o default.profdata + llvm-cov-17 export "$CI_PROJECT_DIR"/appsec/build/ddappsec.so \ -format=lcov -instr-profile=default.profdata \ > "$CI_PROJECT_DIR"/appsec/build/coverage-ext.lcov echo "Uploading extension coverage to codecov" @@ -429,8 +429,8 @@ codecov -t "$CODECOV_TOKEN" -n appsec-extension -v -f appsec/build/coverage-ext.lcov - | cd /tmp/cov-helper - llvm-profdata-19 merge -sparse *.profraw -o default.profdata - llvm-cov-19 export "$CI_PROJECT_DIR"/appsec/build/tests/helper/ddappsec_helper_test \ + llvm-profdata-17 merge -sparse *.profraw -o default.profdata + llvm-cov-17 export "$CI_PROJECT_DIR"/appsec/build/tests/helper/ddappsec_helper_test \ -format=lcov -instr-profile=default.profdata \ > "$CI_PROJECT_DIR/appsec/build/coverage-helper.lcov" echo "Uploading helper coverage to codecov" @@ -500,15 +500,15 @@ KUBERNETES_MEMORY_LIMIT: 10Gi ARCH: amd64 script: - - sudo apt install -y clang-format-19 + - sudo apt install -y clang-format-17 - cd appsec/build - | cmake .. -DCMAKE_BUILD_TYPE=Debug -DDD_APPSEC_ENABLE_COVERAGE=OFF \ -DDD_APPSEC_TESTING=OFF -DCMAKE_CXX_FLAGS="-stdlib=libc++" \ -DCMAKE_CXX_LINK_FLAGS="-stdlib=libc++" \ -DBOOST_CACHE_PREFIX="$CI_PROJECT_DIR/boost-cache" \ - -DCLANG_TIDY=/usr/bin/run-clang-tidy-19 \ - -DCLANG_FORMAT=/usr/bin/clang-format-19 + -DCLANG_TIDY=/usr/bin/run-clang-tidy-17 \ + -DCLANG_FORMAT=/usr/bin/clang-format-17 - make -j 4 extension ddappsec-helper - make format tidy @@ -533,7 +533,7 @@ -DASAN_BUILD" -DCMAKE_EXE_LINKER_FLAGS="-fsanitize=address -fsanitize=leak" \ -DCMAKE_MODULE_LINKER_FLAGS="-fsanitize=address -fsanitize=leak" \ -DBOOST_CACHE_PREFIX="$CI_PROJECT_DIR/boost-cache" \ - -DCLANG_TIDY=/usr/bin/run-clang-tidy-19 + -DCLANG_TIDY=/usr/bin/run-clang-tidy-17 - make -j 4 ddappsec_helper_test - cd ../..; ./appsec/build/tests/helper/ddappsec_helper_test @@ -559,7 +559,7 @@ # - cd - # # - cd appsec/build -# - cmake .. -DCMAKE_BUILD_TYPE=Debug -DDD_APPSEC_BUILD_EXTENSION=OFF -DCMAKE_CXX_FLAGS="-stdlib=libc++" -DCMAKE_CXX_LINK_FLAGS="-stdlib=libc++" -DFUZZER_ARCHIVE_PATH=$fuzzer -DBOOST_CACHE_PREFIX=/boost-cache -DCLANG_TIDY=/usr/bin/run-clang-tidy-19 +# - cmake .. -DCMAKE_BUILD_TYPE=Debug -DDD_APPSEC_BUILD_EXTENSION=OFF -DCMAKE_CXX_FLAGS="-stdlib=libc++" -DCMAKE_CXX_LINK_FLAGS="-stdlib=libc++" -DFUZZER_ARCHIVE_PATH=$fuzzer -DBOOST_CACHE_PREFIX=/boost-cache -DCLANG_TIDY=/usr/bin/run-clang-tidy-17 # - make -j 4 ddappsec_helper_fuzzer corpus_generator # - cd .. # - mkdir -p tests/fuzzer/{corpus,results,logs} @@ -580,9 +580,9 @@ # - LLVM_PROFILE_FILE=body.profraw ./build/tests/fuzzer/ddappsec_helper_fuzzer --log_level=off --fuzz-mode=body -max_total_time=60 -rss_limit_mb=4096 -artifact_prefix=tests/fuzzer/results/ tests/fuzzer/corpus/ # # - '# Generate coverage' -# - llvm-profdata-19 merge -sparse *.profraw -o default.profdata -# - llvm-cov-19 show build/tests/fuzzer/ddappsec_helper_fuzzer -instr-profile=default.profdata -ignore-filename-regex="(tests|third_party|build)" -format=html > fuzzer-coverage.html -# - llvm-cov-19 report -instr-profile default.profdata build/tests/fuzzer/ddappsec_helper_fuzzer -ignore-filename-regex="(tests|third_party|build)" -show-region-summary=false +# - llvm-profdata-17 merge -sparse *.profraw -o default.profdata +# - llvm-cov-17 show build/tests/fuzzer/ddappsec_helper_fuzzer -instr-profile=default.profdata -ignore-filename-regex="(tests|third_party|build)" -format=html > fuzzer-coverage.html +# - llvm-cov-17 report -instr-profile default.profdata build/tests/fuzzer/ddappsec_helper_fuzzer -ignore-filename-regex="(tests|third_party|build)" -show-region-summary=false # artifacts: # paths: # - appsec/fuzzer-coverage.html diff --git a/appsec/cmake/extension.cmake b/appsec/cmake/extension.cmake index 12e77ba1d6e..64a1e5832a2 100644 --- a/appsec/cmake/extension.cmake +++ b/appsec/cmake/extension.cmake @@ -56,7 +56,7 @@ if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU" AND CMAKE_CXX_COMPILER_VERSION VERSION_L target_compile_options(extension PRIVATE -Wall) else() target_compile_options(extension PRIVATE -Wall -Wextra $<$:-pedantic> - -Werror -Wno-nullability-extension -Wno-gnu-zero-variadic-macro-arguments -Wno-c23-extensions + -Werror -Wno-nullability-extension -Wno-gnu-zero-variadic-macro-arguments -Wno-gnu-auto-type -Wno-language-extension-token $<$:-Wno-missing-field-initializers>) endif() diff --git a/appsec/src/extension/.clang-tidy b/appsec/src/extension/.clang-tidy index c95447bd56a..e5aeb8efaf9 100644 --- a/appsec/src/extension/.clang-tidy +++ b/appsec/src/extension/.clang-tidy @@ -1,3 +1,3 @@ -Checks: '-fuchsia-trailing-return,-hicpp-vararg,-cppcoreguidelines-pro-type-vararg,-clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling,-cppcoreguidelines-pro-bounds-array-to-pointer-decay,-clang-diagnostic-c23-extensions,-readability-math-missing-parentheses,-cppcoreguidelines-macro-to-enum,-bugprone-multi-level-implicit-pointer-conversion,-readability-redundant-casting' +Checks: '-fuchsia-trailing-return,-hicpp-vararg,-cppcoreguidelines-pro-type-vararg,-clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling,-cppcoreguidelines-pro-bounds-array-to-pointer-decay' InheritParentConfig: true diff --git a/appsec/src/extension/commands/request_shutdown.c b/appsec/src/extension/commands/request_shutdown.c index d622603e770..0ec3148c95a 100644 --- a/appsec/src/extension/commands/request_shutdown.c +++ b/appsec/src/extension/commands/request_shutdown.c @@ -130,7 +130,7 @@ static void _pack_headers_no_cookies_llist( zend_llist_position pos; for (sapi_header_struct *header = zend_llist_get_first_ex(hl, &pos); header; - header = zend_llist_get_next_ex(hl, &pos)) { + header = zend_llist_get_next_ex(hl, &pos)) { const char *pcol = memchr(header->header, ':', header->header_len); if (!pcol) { continue; @@ -172,7 +172,7 @@ static void _pack_headers_no_cookies_llist( mpack_start_array(w, zend_llist_count(coll)); zend_llist_position p; for (struct _header_val *hv = zend_llist_get_first_ex(coll, &p); hv; - hv = zend_llist_get_next_ex(coll, &p)) { + hv = zend_llist_get_next_ex(coll, &p)) { dd_mpack_write_nullable_str_lim( w, hv->val, hv->len, DD_MPACK_DEF_STRING_LIMIT); } @@ -189,7 +189,7 @@ static const char *nullable _header_content_type_llist( { zend_llist_position pos; for (sapi_header_struct *header = zend_llist_get_first_ex(hl, &pos); header; - header = zend_llist_get_next_ex(hl, &pos)) { + header = zend_llist_get_next_ex(hl, &pos)) { if (header->header_len >= LSTRLEN("content-type") && strncasecmp(header->header, LSTRARG("content-type")) == 0) { const char *pcol = memchr(header->header, ':', header->header_len); diff --git a/appsec/src/extension/commands_helpers.c b/appsec/src/extension/commands_helpers.c index a536acde50e..d1a5ffcf23d 100644 --- a/appsec/src/extension/commands_helpers.c +++ b/appsec/src/extension/commands_helpers.c @@ -805,7 +805,7 @@ static void _dump_out_msg(dd_log_level_t lvl, zend_llist *iovecs) zend_llist_position pos; int i = 1; for (struct iovec *iov = zend_llist_get_first_ex(iovecs, &pos); iov; - iov = zend_llist_get_next_ex(iovecs, &pos), i++) { + iov = zend_llist_get_next_ex(iovecs, &pos), i++) { zend_string *zstr = php_base64_encode(iov->iov_base, iov->iov_len); if (ZSTR_LEN(zstr) > INT_MAX) { return; diff --git a/appsec/src/extension/configuration.h b/appsec/src/extension/configuration.h index bae2e2a9bf6..c1da7f40743 100644 --- a/appsec/src/extension/configuration.h +++ b/appsec/src/extension/configuration.h @@ -116,7 +116,7 @@ typedef enum { DD_CONFIGURATION } dd_config_id; zai_config_memoized_entries[DDAPPSEC_CONFIG_##name].decoded_value) #define CONFIG(type, name, ...) \ type(get_##name, *zai_config_get_value(DDAPPSEC_CONFIG_##name)) \ - SYSCFG(type, name, __VA_ARGS__) + SYSCFG(type, name) DD_CONFIGURATION #undef CONFIG #undef SYSCFG diff --git a/appsec/src/extension/ddappsec.c b/appsec/src/extension/ddappsec.c index 9e2a8fa6010..9eb96144bf0 100644 --- a/appsec/src/extension/ddappsec.c +++ b/appsec/src/extension/ddappsec.c @@ -130,7 +130,7 @@ static void ddappsec_sort_modules(void *base, size_t count, size_t siz, // Reorder ddappsec to ensure it's always after ddtrace for (Bucket *module = base, *end = module + count, *ddappsec_module = NULL; - module < end; ++module) { + module < end; ++module) { zend_module_entry *m = (zend_module_entry *)Z_PTR(module->val); if (m->name == ddappsec_module_entry.name) { ddappsec_module = module; diff --git a/appsec/src/extension/entity_body.c b/appsec/src/extension/entity_body.c index df94e3ef455..4c27daf809f 100644 --- a/appsec/src/extension/entity_body.c +++ b/appsec/src/extension/entity_body.c @@ -192,7 +192,7 @@ static bool _assume_utf8(const char *ct, size_t ct_len) return true; } for (const char *end = ct + ct_len, *c = psemi + 1; - c < end - LSTRLEN("charset=utf-8") + 1; c++) { + c < end - LSTRLEN("charset=utf-8") + 1; c++) { if (tolower(*c) == 'c' && tolower(*(c + 1)) == 'h' && tolower(*(c + 2)) == 'a' && tolower(*(c + 3)) == 'r' && tolower(*(c + 4)) == 's' && tolower(*(c + 5)) == 'e' && // NOLINT diff --git a/appsec/src/extension/network.c b/appsec/src/extension/network.c index 86f7ee58824..641853c6c1f 100644 --- a/appsec/src/extension/network.c +++ b/appsec/src/extension/network.c @@ -187,7 +187,7 @@ static size_t _iovecs_total_size(zend_llist *nonnull iovecs) zend_llist_position pos; size_t total = 0; for (struct iovec *iov = zend_llist_get_first_ex(iovecs, &pos); iov; - iov = zend_llist_get_next_ex(iovecs, &pos)) { + iov = zend_llist_get_next_ex(iovecs, &pos)) { total += iov->iov_len; } return total; @@ -212,7 +212,7 @@ dd_result dd_conn_sendv(dd_conn *nonnull conn, zend_llist *nonnull iovecs) zend_llist_position pos; size_t i = 1; for (struct iovec *iov = zend_llist_get_first_ex(iovecs, &pos); iov; - iov = zend_llist_get_next_ex(iovecs, &pos), i++) { + iov = zend_llist_get_next_ex(iovecs, &pos), i++) { iovs[i] = *iov; } diff --git a/appsec/src/extension/request_abort.c b/appsec/src/extension/request_abort.c index 728ab9eaedd..3424c89c229 100644 --- a/appsec/src/extension/request_abort.c +++ b/appsec/src/extension/request_abort.c @@ -667,9 +667,9 @@ static void _run_rshutdowns(void) mlog_g(dd_log_debug, "Running remaining extensions' RSHUTDOWN"); for (zend_hash_internal_pointer_end_ex(&module_registry, &pos); - (module = zend_hash_get_current_data_ptr_ex(&module_registry, &pos)) != - NULL; - zend_hash_move_backwards_ex(&module_registry, &pos)) { + (module = zend_hash_get_current_data_ptr_ex(&module_registry, &pos)) != + NULL; + zend_hash_move_backwards_ex(&module_registry, &pos)) { if (!found_ddappsec && strcmp("ddappsec", module->name) == 0) { found_ddappsec = true; continue; diff --git a/appsec/src/extension/tags.c b/appsec/src/extension/tags.c index b977536394e..e535a628822 100644 --- a/appsec/src/extension/tags.c +++ b/appsec/src/extension/tags.c @@ -464,7 +464,7 @@ static zend_string *_concat_json_fragments(void) zend_llist_position pos; for (zend_string **sp = zend_llist_get_first_ex(&_appsec_json_frags, &pos); - sp != NULL; sp = zend_llist_get_next_ex(&_appsec_json_frags, &pos)) { + sp != NULL; sp = zend_llist_get_next_ex(&_appsec_json_frags, &pos)) { zend_string *s = *sp; needed_len += ZSTR_LEN(s); } @@ -476,8 +476,8 @@ static zend_string *_concat_json_fragments(void) size_t i = 0; for (zend_string **sp = zend_llist_get_first_ex(&_appsec_json_frags, &pos); - sp != NULL; - sp = zend_llist_get_next_ex(&_appsec_json_frags, &pos), i++) { + sp != NULL; + sp = zend_llist_get_next_ex(&_appsec_json_frags, &pos), i++) { if (i != 0) { *buf++ = ','; } @@ -791,7 +791,7 @@ static void _dd_response_headers(zend_array *meta_ht) zend_llist *l = &SG(sapi_headers).headers; zend_llist_position pos; for (sapi_header_struct *header = zend_llist_get_first_ex(l, &pos); header; - header = zend_llist_get_next_ex(l, &pos)) { + header = zend_llist_get_next_ex(l, &pos)) { const char *pcol = memchr(header->header, ':', header->header_len); if (!pcol) { if (header->header_len <= INT_MAX) { diff --git a/appsec/src/helper/.clang-tidy b/appsec/src/helper/.clang-tidy index 7859a734d04..56f0b950c90 100644 --- a/appsec/src/helper/.clang-tidy +++ b/appsec/src/helper/.clang-tidy @@ -1,4 +1,4 @@ -Checks: 'readability-identifier-naming,-bugprone-lambda-function-name,-modernize-use-designated-initializers' +Checks: 'readability-identifier-naming,-bugprone-lambda-function-name' CheckOptions: - key: readability-identifier-naming.StructCase diff --git a/appsec/src/helper/main.cpp b/appsec/src/helper/main.cpp index 6785ed4cef9..61b7ce6279e 100644 --- a/appsec/src/helper/main.cpp +++ b/appsec/src/helper/main.cpp @@ -104,7 +104,7 @@ bool ensure_unique_abstract_socket(std::string_view socket_path) return false; } - struct sockaddr_un addr{}; + struct sockaddr_un addr {}; addr.sun_family = AF_UNIX; addr.sun_path[0] = '\0'; diff --git a/appsec/src/helper/network/acceptor.cpp b/appsec/src/helper/network/acceptor.cpp index 75c972b1a75..f2b80314886 100644 --- a/appsec/src/helper/network/acceptor.cpp +++ b/appsec/src/helper/network/acceptor.cpp @@ -28,7 +28,7 @@ acceptor::acceptor(const std::string_view &sv) throw std::system_error(errno, std::generic_category()); } - struct sockaddr_un addr{}; + struct sockaddr_un addr {}; std::size_t addr_size; addr.sun_family = AF_UNIX; bool const is_abstract = (!sv.empty() && sv[0] == '@'); @@ -101,7 +101,7 @@ acceptor::acceptor(const std::string_view &sv) void acceptor::set_accept_timeout(std::chrono::seconds timeout) { - struct timeval tv = {.tv_sec = timeout.count(), .tv_usec = 0}; + struct timeval tv = {timeout.count(), 0}; int const res = setsockopt(sock_.get(), SOL_SOCKET, SO_RCVTIMEO, &tv, sizeof(tv)); if (res == -1) { @@ -111,7 +111,7 @@ void acceptor::set_accept_timeout(std::chrono::seconds timeout) std::unique_ptr acceptor::accept() { - struct sockaddr_un addr{}; + struct sockaddr_un addr {}; socklen_t len = sizeof(addr); int s = diff --git a/appsec/src/helper/rate_limit.hpp b/appsec/src/helper/rate_limit.hpp index c91f57775c2..54a47c43363 100644 --- a/appsec/src/helper/rate_limit.hpp +++ b/appsec/src/helper/rate_limit.hpp @@ -19,7 +19,7 @@ namespace dds { template class rate_limiter { public: explicit rate_limiter(uint32_t max_per_second) - : max_per_second_(max_per_second) {}; + : max_per_second_(max_per_second){}; bool allow() { SPDLOG_TRACE("rate_limiter: allow() called"); diff --git a/appsec/src/helper/remote_config/config.cpp b/appsec/src/helper/remote_config/config.cpp index 67118f7a499..2a3ec65e779 100644 --- a/appsec/src/helper/remote_config/config.cpp +++ b/appsec/src/helper/remote_config/config.cpp @@ -57,7 +57,7 @@ mapped_memory config::read() const auto close_fs = defer{[fd]() { ::close(fd); }}; // check that the uid of the shared memory segment is the same as ours - struct ::stat shm_stat{}; + struct ::stat shm_stat {}; if (::fstat(fd, &shm_stat) == -1) { throw std::runtime_error{ "Call to fstat on memory segment failed: " + strerror_ts(errno)}; diff --git a/appsec/src/helper/remote_config/config.hpp b/appsec/src/helper/remote_config/config.hpp index 586c5dd3832..be94906e6d0 100644 --- a/appsec/src/helper/remote_config/config.hpp +++ b/appsec/src/helper/remote_config/config.hpp @@ -135,7 +135,9 @@ class parsed_config_key { std::string key_; std::string_view source_; std::uint64_t org_id_{}; - class product product_{known_products::UNKNOWN}; + class product product_ { + known_products::UNKNOWN + }; std::string_view config_id_; std::string_view name_; }; diff --git a/appsec/src/helper/remote_config/listeners/asm_features_listener.hpp b/appsec/src/helper/remote_config/listeners/asm_features_listener.hpp index a04fb4e4e4d..0e81b07908c 100644 --- a/appsec/src/helper/remote_config/listeners/asm_features_listener.hpp +++ b/appsec/src/helper/remote_config/listeners/asm_features_listener.hpp @@ -17,7 +17,7 @@ class asm_features_listener : public listener_base { public: explicit asm_features_listener( std::shared_ptr service_config) - : service_config_(std::move(service_config)) {}; + : service_config_(std::move(service_config)){}; void init() override; void on_update(const config &config) override; diff --git a/appsec/src/helper/runner.cpp b/appsec/src/helper/runner.cpp index f05dc1e3de4..32e0ddd60d6 100644 --- a/appsec/src/helper/runner.cpp +++ b/appsec/src/helper/runner.cpp @@ -38,7 +38,7 @@ std::unique_ptr acceptor_from_config( if (sock_path.size() >= 4 && sock_path.substr(0, 3) == "fd:") { auto rest{sock_path.substr(3)}; int const fd = std::stoi(std::string{rest}); // can throw - struct stat statbuf{}; + struct stat statbuf {}; int const res = fstat(fd, &statbuf); if (res == -1 || !S_ISSOCK(statbuf.st_mode)) { throw std::invalid_argument{ diff --git a/appsec/src/helper/subscriber/waf.cpp b/appsec/src/helper/subscriber/waf.cpp index 7b6331a9e91..74b9075f95b 100644 --- a/appsec/src/helper/subscriber/waf.cpp +++ b/appsec/src/helper/subscriber/waf.cpp @@ -689,8 +689,7 @@ void instance::listener::call(dds::parameter_view &data, event &event, switch (code) { case DDWAF_MATCH: rule_triggered_ = true; - format_waf_result(actions, events, event); - return; + return format_waf_result(actions, events, event); case DDWAF_ERR_INTERNAL: waf_run_error_ = true; throw internal_error(); diff --git a/appsec/src/helper/utils.cpp b/appsec/src/helper/utils.cpp index 21e5ab5b02c..05c44fc0f02 100644 --- a/appsec/src/helper/utils.cpp +++ b/appsec/src/helper/utils.cpp @@ -20,7 +20,7 @@ std::string read_file(std::string_view filename) throw std::system_error(errno, std::generic_category()); } - struct stat statbuf{}; + struct stat statbuf {}; auto rc = stat(std::string{filename}.c_str(), &statbuf); auto file_size = rc == 0 ? statbuf.st_size : 0; std::string buffer(file_size, '\0'); diff --git a/appsec/tests/helper/engine_test.cpp b/appsec/tests/helper/engine_test.cpp index 732e4c67c3d..3436374aa87 100644 --- a/appsec/tests/helper/engine_test.cpp +++ b/appsec/tests/helper/engine_test.cpp @@ -279,15 +279,14 @@ TEST(EngineTest, WafDefaultActions) auto listener = std::make_unique(); EXPECT_CALL(*listener, call(_, _, _)) - .WillRepeatedly(Invoke( - [](dds::parameter_view &data, dds::event &event_, - const dds::network::request_exec_options &options) -> void { - event_.actions.push_back({dds::action_type::redirect, {}}); - event_.actions.push_back({dds::action_type::block, {}}); - event_.actions.push_back({dds::action_type::stack_trace, {}}); - event_.actions.push_back( - {dds::action_type::extract_schema, {}}); - })); + .WillRepeatedly(Invoke([](dds::parameter_view &data, dds::event &event_, + const dds::network::request_exec_options + &options) -> void { + event_.actions.push_back({dds::action_type::redirect, {}}); + event_.actions.push_back({dds::action_type::block, {}}); + event_.actions.push_back({dds::action_type::stack_trace, {}}); + event_.actions.push_back({dds::action_type::extract_schema, {}}); + })); auto sub = std::make_unique(); EXPECT_CALL(*sub, get_listener()).WillOnce(Invoke([&]() { From c2459bd364dc820ab9b8cdead6d1a9a8d41ddbb9 Mon Sep 17 00:00:00 2001 From: Levi Morrison Date: Wed, 8 Apr 2026 15:27:21 -0600 Subject: [PATCH 24/30] ci(appsec): revert bookworm-7, keep bookworm-6 bookworm-7 only ships clang-19 in its apt repo; appsec jobs still need clang-17 so stay on bookworm-6 for now. Co-Authored-By: Claude Sonnet 4.6 --- .gitlab/generate-appsec.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitlab/generate-appsec.php b/.gitlab/generate-appsec.php index 47e6ef64d98..cd8ef347a1d 100644 --- a/.gitlab/generate-appsec.php +++ b/.gitlab/generate-appsec.php @@ -68,7 +68,7 @@ "test appsec extension": stage: test extends: .appsec_test - image: registry.ddbuild.io/images/mirror/datadog/dd-trace-ci:php-${PHP_MAJOR_MINOR}_bookworm-7 + image: registry.ddbuild.io/images/mirror/datadog/dd-trace-ci:php-${PHP_MAJOR_MINOR}_bookworm-6 variables: KUBERNETES_CPU_REQUEST: 3 KUBERNETES_MEMORY_REQUEST: 4Gi @@ -371,7 +371,7 @@ "appsec code coverage": stage: test extends: .appsec_test - image: registry.ddbuild.io/images/mirror/datadog/dd-trace-ci:php-8.3_bookworm-7 + image: registry.ddbuild.io/images/mirror/datadog/dd-trace-ci:php-8.3_bookworm-6 variables: KUBERNETES_CPU_REQUEST: 3 KUBERNETES_MEMORY_REQUEST: 3Gi @@ -493,7 +493,7 @@ "appsec lint": stage: test extends: .appsec_test - image: registry.ddbuild.io/images/mirror/datadog/dd-trace-ci:php-8.3_bookworm-7 + image: registry.ddbuild.io/images/mirror/datadog/dd-trace-ci:php-8.3_bookworm-6 variables: KUBERNETES_CPU_REQUEST: 3 KUBERNETES_MEMORY_REQUEST: 9Gi @@ -515,7 +515,7 @@ "test appsec helper asan": stage: test extends: .appsec_test - image: registry.ddbuild.io/images/mirror/datadog/dd-trace-ci:bookworm-7 + image: registry.ddbuild.io/images/mirror/datadog/dd-trace-ci:bookworm-6 variables: KUBERNETES_CPU_REQUEST: 3 KUBERNETES_MEMORY_REQUEST: 3Gi @@ -541,7 +541,7 @@ #"fuzz appsec helper": # stage: test # extends: .appsec_test -# image: registry.ddbuild.io/images/mirror/datadog/dd-trace-ci:bookworm-7 +# image: registry.ddbuild.io/images/mirror/datadog/dd-trace-ci:bookworm-6 # variables: # KUBERNETES_CPU_REQUEST: 3 # KUBERNETES_MEMORY_REQUEST: 5Gi From e340959bb2fb46996ed179b27eab9e273fffbacc Mon Sep 17 00:00:00 2001 From: Levi Morrison Date: Wed, 8 Apr 2026 15:56:37 -0600 Subject: [PATCH 25/30] ci: xfail ext/sockets/tests/gh21161.phpt on PHP 8.4 and 8.5 The test lacks a SKIPIF guard for IPv6 availability. In CI (Kubernetes pods), IPv6 is unavailable so socket_create() returns false, causing a TypeError instead of the expected warnings. Co-Authored-By: Claude Sonnet 4.6 --- dockerfiles/ci/xfail_tests/8.4.list | 1 + dockerfiles/ci/xfail_tests/8.5.list | 1 + dockerfiles/ci/xfail_tests/README.md | 6 ++++++ 3 files changed, 8 insertions(+) diff --git a/dockerfiles/ci/xfail_tests/8.4.list b/dockerfiles/ci/xfail_tests/8.4.list index e68b02af9d0..3ef7b4ef41f 100644 --- a/dockerfiles/ci/xfail_tests/8.4.list +++ b/dockerfiles/ci/xfail_tests/8.4.list @@ -129,6 +129,7 @@ ext/readline/tests/libedit_callback_handler_remove_001.phpt ext/simplexml/tests/bug51615.phpt ext/soap/tests/bugs/bug77088.phpt ext/soap/tests/soap_qname_crash.phpt +ext/sockets/tests/gh21161.phpt ext/sockets/tests/socket_create_listen-nobind.phpt ext/sockets/tests/socket_import_stream-4.phpt ext/spl/tests/bug40091.phpt diff --git a/dockerfiles/ci/xfail_tests/8.5.list b/dockerfiles/ci/xfail_tests/8.5.list index 1910a73d677..0f467d89fb3 100644 --- a/dockerfiles/ci/xfail_tests/8.5.list +++ b/dockerfiles/ci/xfail_tests/8.5.list @@ -129,6 +129,7 @@ ext/readline/tests/libedit_callback_handler_remove_001.phpt ext/simplexml/tests/bug51615.phpt ext/soap/tests/bugs/bug77088.phpt ext/soap/tests/soap_qname_crash.phpt +ext/sockets/tests/gh21161.phpt ext/sockets/tests/socket_create_listen-nobind.phpt ext/sockets/tests/socket_import_stream-4.phpt ext/spl/tests/bug40091.phpt diff --git a/dockerfiles/ci/xfail_tests/README.md b/dockerfiles/ci/xfail_tests/README.md index 247506dfaaa..03e8903e422 100644 --- a/dockerfiles/ci/xfail_tests/README.md +++ b/dockerfiles/ci/xfail_tests/README.md @@ -248,3 +248,9 @@ Disabled on all versions (where present). The bundled test certificates expired on 2026-04-02. The TLS handshake fails because the client rejects the expired server certificates, causing `stream_socket_client` to return `false`. +## `ext/sockets/tests/gh21161.phpt` + +Disabled on versions: `8.4`, `8.5`. + +The test calls `socket_create(AF_INET6, ...)` without a SKIPIF guard for IPv6 availability (only skips on Windows). In CI (Kubernetes pods), IPv6 is not available, so `socket_create` returns `false`. The subsequent `socket_set_option(false, ...)` call throws a `TypeError` instead of producing the expected warnings. This is an upstream bug in the test's SKIPIF section. + From 3d1009fa5a72a17bb425304bc82daec977ee704a Mon Sep 17 00:00:00 2001 From: Levi Morrison Date: Wed, 8 Apr 2026 16:33:30 -0600 Subject: [PATCH 26/30] ci: suppress ASAN stack-use-after-return in sandbox observer bailout zai_reset_observed_frame_post_bailout (PHP 8.0/8.1) calls zend_observer_fcall_end_all after a sandbox bailout. At that point current_observed_frame may point to a dummy_execute_data that was stack-allocated inside zend_call_function and already freed by the unwind. PHP 8.2+ is safe via zai_set_observed_frame(NULL). Suppress for the "multiple observers" ASAN job while Bob investigates a proper fix in zai_reset_observed_frame_post_bailout. Co-Authored-By: Claude Sonnet 4.6 --- .gitlab/generate-tracer.php | 1 + tests/asan/suppress_sandbox_observer.txt | 8 ++++++++ 2 files changed, 9 insertions(+) create mode 100644 tests/asan/suppress_sandbox_observer.txt diff --git a/.gitlab/generate-tracer.php b/.gitlab/generate-tracer.php index eec801a5e25..ac5fbb4978d 100644 --- a/.gitlab/generate-tracer.php +++ b/.gitlab/generate-tracer.php @@ -311,6 +311,7 @@ function before_script_steps($with_docker_auth = false) { PHP_MAJOR_MINOR: "" ARCH: "amd64" TEST_PHP_JUNIT: "${CI_PROJECT_DIR}/tmp/build_extension/artifacts/tests/php-tests.xml" + ASAN_OPTIONS: "abort_on_error=1:disable_coredump=0:unmap_shadow_on_exit=1:suppressions=${CI_PROJECT_DIR}/tests/asan/suppress_sandbox_observer.txt" script: - mkdir -p "${CI_PROJECT_DIR}/tmp/build_extension/artifacts/tests" - make test_c_observer diff --git a/tests/asan/suppress_sandbox_observer.txt b/tests/asan/suppress_sandbox_observer.txt new file mode 100644 index 00000000000..7fb9f3b791b --- /dev/null +++ b/tests/asan/suppress_sandbox_observer.txt @@ -0,0 +1,8 @@ +# stack-use-after-return in zai_reset_observed_frame_post_bailout when +# zend_observer_fcall_end_all walks a freed dummy_execute_data frame that +# was stack-allocated inside zend_call_function during a sandboxed call +# that bailed out. PHP 8.2+ avoids this via zai_set_observed_frame(NULL) +# before the sandbox call; 8.0/8.1 use zai_reset_observed_frame_post_bailout +# which does not protect current_observed_frame from the freed frame. +# TODO: Bob to fix properly in zai_reset_observed_frame_post_bailout. +fun:zai_reset_observed_frame_post_bailout From c5b4ec4b285b756504575b697a33958f94998d37 Mon Sep 17 00:00:00 2001 From: Levi Morrison Date: Wed, 8 Apr 2026 16:36:33 -0600 Subject: [PATCH 27/30] ci: suppress sandbox observer ASAN error in ZAI tests too Same stack-use-after-return in zai_reset_observed_frame_post_bailout seen in Zend Abstract Interface Tests with debug-zts-asan. Co-Authored-By: Claude Sonnet 4.6 --- .gitlab/generate-shared.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitlab/generate-shared.php b/.gitlab/generate-shared.php index 0886bd0a6f1..7e062195a96 100644 --- a/.gitlab/generate-shared.php +++ b/.gitlab/generate-shared.php @@ -157,6 +157,9 @@ extends: .tea_test variables: PHP_MAJOR_MINOR: "" + + ASAN_OPTIONS: "suppressions=${CI_PROJECT_DIR}/tests/asan/suppress_sandbox_observer.txt" + needs: - job: "Build & Test Tea" parallel: From 7b0a85100d124dda9aa2d68a754f4a47a107de53 Mon Sep 17 00:00:00 2001 From: Levi Morrison Date: Wed, 8 Apr 2026 16:45:25 -0600 Subject: [PATCH 28/30] ci: use detect_stack_use_after_return=0 to suppress sandbox observer ASAN error ASAN suppression files don't support fun: entries; that's TSan/LSan format. Use detect_stack_use_after_return=0 in the affected jobs instead. Co-Authored-By: Claude Sonnet 4.6 --- .../worktrees/appsec-gitlab-resource-limits | 1 + .claude/worktrees/fix-appsec-gitlab-limits | 1 + .gitlab/generate-shared.php | 2 +- .gitlab/generate-tracer.php | 2 +- appsec-code-coverage.txt | 1849 ++++++++++++++++ appsec-limits.diff | 16 + dockerfiles/dev/run_zai_tests_linux.sh | 76 + librust_out.rlib | Bin 0 -> 4608 bytes lint.txt | 1969 +++++++++++++++++ patch.diff | 14 + plans/opcache.md | 252 +++ raw.txt | 1898 ++++++++++++++++ raw2.txt | 1242 +++++++++++ tests/asan/suppress_sandbox_observer.txt | 8 - 14 files changed, 7320 insertions(+), 10 deletions(-) create mode 160000 .claude/worktrees/appsec-gitlab-resource-limits create mode 160000 .claude/worktrees/fix-appsec-gitlab-limits create mode 100644 appsec-code-coverage.txt create mode 100644 appsec-limits.diff create mode 100755 dockerfiles/dev/run_zai_tests_linux.sh create mode 100644 librust_out.rlib create mode 100644 lint.txt create mode 100644 patch.diff create mode 100644 plans/opcache.md create mode 100644 raw.txt create mode 100644 raw2.txt delete mode 100644 tests/asan/suppress_sandbox_observer.txt diff --git a/.claude/worktrees/appsec-gitlab-resource-limits b/.claude/worktrees/appsec-gitlab-resource-limits new file mode 160000 index 00000000000..b222ee09143 --- /dev/null +++ b/.claude/worktrees/appsec-gitlab-resource-limits @@ -0,0 +1 @@ +Subproject commit b222ee091439b9ea15ebac4297e2c383a71932c9 diff --git a/.claude/worktrees/fix-appsec-gitlab-limits b/.claude/worktrees/fix-appsec-gitlab-limits new file mode 160000 index 00000000000..14dabf8753f --- /dev/null +++ b/.claude/worktrees/fix-appsec-gitlab-limits @@ -0,0 +1 @@ +Subproject commit 14dabf8753ffcf7d2caceb49ccc06ce5c602ac3a diff --git a/.gitlab/generate-shared.php b/.gitlab/generate-shared.php index 7e062195a96..eb200835a9e 100644 --- a/.gitlab/generate-shared.php +++ b/.gitlab/generate-shared.php @@ -158,7 +158,7 @@ variables: PHP_MAJOR_MINOR: "" - ASAN_OPTIONS: "suppressions=${CI_PROJECT_DIR}/tests/asan/suppress_sandbox_observer.txt" + ASAN_OPTIONS: "detect_stack_use_after_return=0" needs: - job: "Build & Test Tea" diff --git a/.gitlab/generate-tracer.php b/.gitlab/generate-tracer.php index ac5fbb4978d..456ce70b086 100644 --- a/.gitlab/generate-tracer.php +++ b/.gitlab/generate-tracer.php @@ -311,7 +311,7 @@ function before_script_steps($with_docker_auth = false) { PHP_MAJOR_MINOR: "" ARCH: "amd64" TEST_PHP_JUNIT: "${CI_PROJECT_DIR}/tmp/build_extension/artifacts/tests/php-tests.xml" - ASAN_OPTIONS: "abort_on_error=1:disable_coredump=0:unmap_shadow_on_exit=1:suppressions=${CI_PROJECT_DIR}/tests/asan/suppress_sandbox_observer.txt" + ASAN_OPTIONS: "abort_on_error=1:disable_coredump=0:unmap_shadow_on_exit=1:detect_stack_use_after_return=0" script: - mkdir -p "${CI_PROJECT_DIR}/tmp/build_extension/artifacts/tests" - make test_c_observer diff --git a/appsec-code-coverage.txt b/appsec-code-coverage.txt new file mode 100644 index 00000000000..6b4cabc3b55 --- /dev/null +++ b/appsec-code-coverage.txt @@ -0,0 +1,1849 @@ +2026-04-08T17:56:38.497980Z 00O Running with gitlab-runner 17.9.3-544784f7 (544784f7) +2026-04-08T17:56:38.498060Z 00O  on gitlab-runner-amd64-shared-567d88fc98-7x7g2 _xbvGsbV_, system ID: r_3fMVFOKXDqgi +2026-04-08T17:56:38.498130Z 00O  feature flags: FF_RETRIEVE_POD_WARNING_EVENTS:false +2026-04-08T17:56:38.498360Z 00O section_start:1775670998:prepare_executor[collapsed=true] +2026-04-08T17:56:38.498370Z 00O+Preparing the "kubernetes" executor +2026-04-08T17:56:38.498810Z 00O "CPURequest" overwritten with "3" +2026-04-08T17:56:38.498860Z 00O "MemoryRequest" overwritten with "3Gi" +2026-04-08T17:56:38.498940Z 00O "MemoryLimit" overwritten with "4Gi" +2026-04-08T17:56:38.499150Z 00O Using Kubernetes namespace: gitlab-runner +2026-04-08T17:56:38.503740Z 00O Using Kubernetes cluster domain: mudkip-a.us1.ddbuild.io +2026-04-08T17:56:38.503810Z 00O Using Kubernetes executor with image registry.ddbuild.io/images/mirror/datadog/dd-trace-ci:php-8.3_bookworm-7 ... +2026-04-08T17:56:38.503850Z 00O Using attach strategy to execute scripts... +2026-04-08T17:56:38.157665Z 00O section_end:1775670998:prepare_executor +2026-04-08T17:56:38.157673Z 00O+section_start:1775670998:prepare_script[collapsed=true] +2026-04-08T17:56:38.165053Z 00O+Preparing environment +2026-04-08T17:56:38.167143Z 00O Using FF_USE_POD_ACTIVE_DEADLINE_SECONDS, the Pod activeDeadlineSeconds will be set to the job timeout: 1h0m0s... +2026-04-08T17:56:38.171228Z 00O Using service account: dd-trace-php +2026-04-08T17:56:38.488993Z 00E Waiting for pod gitlab-runner/runner-xbvgsbv-project-355-concurrent-19-bu5nnk8z to be running, status is Pending +2026-04-08T17:56:41.496794Z 00E Waiting for pod gitlab-runner/runner-xbvgsbv-project-355-concurrent-19-bu5nnk8z to be running, status is Pending +2026-04-08T17:56:41.496805Z 00E ContainersNotInitialized: "containers with incomplete status: [init-permissions]" +2026-04-08T17:56:41.496812Z 00E ContainersNotReady: "containers with unready status: [build helper]" +2026-04-08T17:56:41.496814Z 00E ContainersNotReady: "containers with unready status: [build helper]" +2026-04-08T17:56:44.505583Z 00E Waiting for pod gitlab-runner/runner-xbvgsbv-project-355-concurrent-19-bu5nnk8z to be running, status is Pending +2026-04-08T17:56:44.505592Z 00E ContainersNotReady: "containers with unready status: [build helper]" +2026-04-08T17:56:44.505595Z 00E ContainersNotReady: "containers with unready status: [build helper]" +2026-04-08T17:56:47.512636Z 00E Waiting for pod gitlab-runner/runner-xbvgsbv-project-355-concurrent-19-bu5nnk8z to be running, status is Pending +2026-04-08T17:56:47.512646Z 00E ContainersNotReady: "containers with unready status: [build helper]" +2026-04-08T17:56:47.512649Z 00E ContainersNotReady: "containers with unready status: [build helper]" +2026-04-08T17:56:50.524837Z 00E Waiting for pod gitlab-runner/runner-xbvgsbv-project-355-concurrent-19-bu5nnk8z to be running, status is Pending +2026-04-08T17:56:50.524847Z 00E ContainersNotReady: "containers with unready status: [build helper]" +2026-04-08T17:56:50.524850Z 00E ContainersNotReady: "containers with unready status: [build helper]" +2026-04-08T17:56:53.534501Z 00E Waiting for pod gitlab-runner/runner-xbvgsbv-project-355-concurrent-19-bu5nnk8z to be running, status is Pending +2026-04-08T17:56:53.534511Z 00E ContainersNotReady: "containers with unready status: [build helper]" +2026-04-08T17:56:53.534514Z 00E ContainersNotReady: "containers with unready status: [build helper]" +2026-04-08T17:56:56.540968Z 00E Waiting for pod gitlab-runner/runner-xbvgsbv-project-355-concurrent-19-bu5nnk8z to be running, status is Pending +2026-04-08T17:56:56.540978Z 00E ContainersNotReady: "containers with unready status: [build helper]" +2026-04-08T17:56:56.540981Z 00E ContainersNotReady: "containers with unready status: [build helper]" +2026-04-08T17:56:59.553252Z 00E Waiting for pod gitlab-runner/runner-xbvgsbv-project-355-concurrent-19-bu5nnk8z to be running, status is Pending +2026-04-08T17:56:59.553262Z 00E ContainersNotReady: "containers with unready status: [build helper]" +2026-04-08T17:56:59.553264Z 00E ContainersNotReady: "containers with unready status: [build helper]" +2026-04-08T17:57:03.758134Z 01O Running on runner-xbvgsbv-project-355-concurrent-19-bu5nnk8z via gitlab-runner-amd64-shared-567d88fc98-7x7g2... +2026-04-08T17:57:03.758143Z 01O +2026-04-08T17:57:03.758177Z 00O section_end:1775671023:prepare_script +2026-04-08T17:57:03.758178Z 00O+section_start:1775671023:get_sources[collapsed=true] +2026-04-08T17:57:03.758996Z 00O+Getting source from Git repository +2026-04-08T17:57:04.258746Z 01O $ if [ -n "${VAULT_ADDR:-}" ]; then # collapsed multi-line command +2026-04-08T17:57:04.258757Z 01O section_start:1775671024:git_cache[collapsed=true] Git cache script +2026-04-08T17:57:04.258768Z 01O {"level":"INFO","ts":"2026-04-08T17:57:04.080293+00:00","caller":"git-cache-s3/main.go:23","msg":"Running git-cache-s3 go application"} +2026-04-08T17:57:04.258774Z 01O {"level":"INFO","ts":"2026-04-08T17:57:04.080413+00:00","caller":"git-cache-s3/main.go:24","msg":"Project name dd-trace-php"} +2026-04-08T17:57:04.258783Z 01O {"level":"INFO","ts":"2026-04-08T17:57:04.101847+00:00","caller":"metric/statsd.go:33","msg":"Creating the statsd instance."} +2026-04-08T17:57:04.258820Z 01O {"level":"INFO","ts":"2026-04-08T17:57:04.103351+00:00","caller":"git-cache-s3/main.go:82","msg":"Experiment is disabled for refreshing the repository cache, skipping refresh"} +2026-04-08T17:57:04.258843Z 01O {"level":"INFO","ts":"2026-04-08T17:57:04.104702+00:00","caller":"git/git.go:44","msg":"Retrieving repository from cache"} +2026-04-08T17:57:11.767668Z 01O {"level":"INFO","ts":"2026-04-08T17:57:11.279146+00:00","caller":"metric/statsd.go:39","msg":"Statsd Client already exists."} +2026-04-08T17:57:11.767763Z 01O {"level":"INFO","ts":"2026-04-08T17:57:11.279344+00:00","caller":"git-cache-s3/main.go:40","msg":"Arrive to the end of the script"} +2026-04-08T17:57:11.767774Z 01O section_end:1775671031:git_cache  +2026-04-08T17:57:11.767783Z 01O Fetching changes... +2026-04-08T17:57:11.767787Z 01O Reinitialized existing Git repository in /go/src/github.com/DataDog/apm-reliability/dd-trace-php/.git/ +2026-04-08T17:57:11.767794Z 01O Created fresh repository. +2026-04-08T17:57:11.767801Z 01O gitretriever: create-ref FAILED (pipeline=106724455 repo=DataDog/apm-reliability/dd-trace-php), falling back to GitLab +2026-04-08T17:57:12.268460Z 01O Checking out 5a575996 as detached HEAD (ref is levi/clang-17-to-19)... +2026-04-08T17:57:16.273364Z 01O +2026-04-08T17:57:16.273377Z 01O Updating/initializing submodules recursively... +2026-04-08T17:57:16.273383Z 01O Submodule 'appsec/third_party/cpp-base64' (https://github.com/ReneNyffenegger/cpp-base64) registered for path 'appsec/third_party/cpp-base64' +2026-04-08T17:57:16.273391Z 01O Submodule 'appsec/third_party/libddwaf' (https://github.com/DataDog/libddwaf.git) registered for path 'appsec/third_party/libddwaf' +2026-04-08T17:57:16.273396Z 01O Submodule 'appsec/third_party/libddwaf-rust' (https://github.com/DataDog/libddwaf-rust.git) registered for path 'appsec/third_party/libddwaf-rust' +2026-04-08T17:57:16.273402Z 01O Submodule 'appsec/third_party/msgpack-c' (https://github.com/msgpack/msgpack-c.git) registered for path 'appsec/third_party/msgpack-c' +2026-04-08T17:57:16.273410Z 01O Submodule 'libdatadog' (https://github.com/DataDog/libdatadog) registered for path 'libdatadog' +2026-04-08T17:57:16.273423Z 01O Submodule 'tea/benchmarks/google-benchmark' (https://github.com/google/benchmark.git) registered for path 'tea/benchmarks/google-benchmark' +2026-04-08T17:57:16.273428Z 01O Synchronizing submodule url for 'appsec/third_party/cpp-base64' +2026-04-08T17:57:16.273434Z 01O Synchronizing submodule url for 'appsec/third_party/libddwaf' +2026-04-08T17:57:16.273437Z 01O Synchronizing submodule url for 'appsec/third_party/libddwaf-rust' +2026-04-08T17:57:16.273445Z 01O Synchronizing submodule url for 'appsec/third_party/msgpack-c' +2026-04-08T17:57:16.273453Z 01O Synchronizing submodule url for 'libdatadog' +2026-04-08T17:57:16.273457Z 01O Cloning into '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/cpp-base64'... +2026-04-08T17:57:16.774144Z 01O Cloning into '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/libddwaf'... +2026-04-08T17:57:17.775351Z 01O Cloning into '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/libddwaf-rust'... +2026-04-08T17:57:17.775369Z 01O Cloning into '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/msgpack-c'... +2026-04-08T17:57:19.777999Z 01O Cloning into '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog'... +2026-04-08T17:57:27.287834Z 01O Submodule path 'appsec/third_party/cpp-base64': checked out 'c65b936453d7cbf9c585806142cd866b7bc7c0d5' +2026-04-08T17:57:27.287874Z 01O Submodule path 'appsec/third_party/libddwaf': checked out '2f4aa84cd61dc13229d1431779c007bf4ebda89c' +2026-04-08T17:57:27.287880Z 01O Submodule path 'appsec/third_party/libddwaf-rust': checked out '0188747508e2c77968f41835ce51ee62d7df9cd4' +2026-04-08T17:57:27.287907Z 01O Submodule path 'appsec/third_party/msgpack-c': checked out '6e7deb809120881634b3ca895e66b2a946084f34' +2026-04-08T17:57:27.287922Z 01O Submodule 'external/boost/predef' (https://github.com/boostorg/predef.git) registered for path 'appsec/third_party/msgpack-c/external/boost/predef' +2026-04-08T17:57:27.287929Z 01O Submodule 'external/boost/preprocessor' (https://github.com/boostorg/preprocessor.git) registered for path 'appsec/third_party/msgpack-c/external/boost/preprocessor' +2026-04-08T17:57:27.287952Z 01O Cloning into '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/msgpack-c/external/boost/predef'... +2026-04-08T17:57:27.788444Z 01O Cloning into '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/msgpack-c/external/boost/preprocessor'... +2026-04-08T17:57:28.289095Z 01O Submodule path 'appsec/third_party/msgpack-c/external/boost/predef': checked out '560ff5298ead78276872604f1ee6523e63a4fa90' +2026-04-08T17:57:28.289106Z 01O Submodule path 'appsec/third_party/msgpack-c/external/boost/preprocessor': checked out '56090c56b5c78418b6dbe8c3c2ba576395152f83' +2026-04-08T17:57:28.289111Z 01O Submodule path 'libdatadog': checked out '11d4111c934d9af49d8124b8266dbbdda5857cb4' +2026-04-08T17:57:28.289120Z 01O Submodule 'libdd-libunwind-sys/libunwind' (https://github.com/DataDog/libunwind.git) registered for path 'libdatadog/libdd-libunwind-sys/libunwind' +2026-04-08T17:57:28.289125Z 01O Cloning into '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-libunwind-sys/libunwind'... +2026-04-08T17:57:30.291438Z 01O Submodule path 'libdatadog/libdd-libunwind-sys/libunwind': checked out 'cc1d07281b9e034c9e088733aeb4b94ffd91db9e' +2026-04-08T17:57:30.291449Z 01O Updated submodules +2026-04-08T17:57:30.291456Z 01O Synchronizing submodule url for 'appsec/third_party/cpp-base64' +2026-04-08T17:57:30.291464Z 01O Synchronizing submodule url for 'appsec/third_party/libddwaf' +2026-04-08T17:57:30.291467Z 01O Synchronizing submodule url for 'appsec/third_party/libddwaf-rust' +2026-04-08T17:57:30.291471Z 01O Synchronizing submodule url for 'appsec/third_party/msgpack-c' +2026-04-08T17:57:30.291478Z 01O Synchronizing submodule url for 'appsec/third_party/msgpack-c/external/boost/predef' +2026-04-08T17:57:30.291481Z 01O Synchronizing submodule url for 'appsec/third_party/msgpack-c/external/boost/preprocessor' +2026-04-08T17:57:30.291485Z 01O Synchronizing submodule url for 'libdatadog' +2026-04-08T17:57:30.291491Z 01O Synchronizing submodule url for 'libdatadog/libdd-libunwind-sys/libunwind' +2026-04-08T17:57:30.291494Z 01O Entering 'appsec/third_party/cpp-base64' +2026-04-08T17:57:30.291498Z 01O Entering 'appsec/third_party/libddwaf' +2026-04-08T17:57:30.291504Z 01O Entering 'appsec/third_party/libddwaf-rust' +2026-04-08T17:57:30.291507Z 01O Entering 'appsec/third_party/msgpack-c' +2026-04-08T17:57:30.792320Z 01O Entering 'appsec/third_party/msgpack-c/external/boost/predef' +2026-04-08T17:57:30.792332Z 01O Entering 'appsec/third_party/msgpack-c/external/boost/preprocessor' +2026-04-08T17:57:30.792340Z 01O Entering 'libdatadog' +2026-04-08T17:57:30.792348Z 01O Entering 'libdatadog/libdd-libunwind-sys/libunwind' +2026-04-08T17:57:30.792351Z 01O Entering 'appsec/third_party/cpp-base64' +2026-04-08T17:57:30.792355Z 01O Entering 'appsec/third_party/libddwaf' +2026-04-08T17:57:30.792379Z 01O Entering 'appsec/third_party/libddwaf-rust' +2026-04-08T17:57:30.792393Z 01O Entering 'appsec/third_party/msgpack-c' +2026-04-08T17:57:31.292913Z 01O Entering 'appsec/third_party/msgpack-c/external/boost/predef' +2026-04-08T17:57:31.292952Z 01O Entering 'appsec/third_party/msgpack-c/external/boost/preprocessor' +2026-04-08T17:57:31.292958Z 01O Entering 'libdatadog' +2026-04-08T17:57:31.292985Z 01O Entering 'libdatadog/libdd-libunwind-sys/libunwind' +2026-04-08T17:57:31.292999Z 01O $ export clone_after=$(date +%s) # collapsed multi-line command +2026-04-08T17:57:31.293004Z 01O Clone elapsed 27 +2026-04-08T17:57:31.293034Z 01O +2026-04-08T17:57:31.293091Z 00O section_end:1775671051:get_sources +2026-04-08T17:57:31.293094Z 00O+section_start:1775671051:restore_cache[collapsed=true] +2026-04-08T17:57:31.296315Z 00O+Restoring cache +2026-04-08T17:57:31.793460Z 01O Checking cache for appsec boost cache-protected... +2026-04-08T17:57:31.793474Z 01O Downloading cache from https://dd-gitlab-runner-cache-build-stable.s3.dualstack.us-east-1.amazonaws.com/project/355/appsec%20boost%20cache-protected ETag="348cf7df1fee1be7d1935def9b20e14e" +2026-04-08T17:57:45.808258Z 01O Successfully extracted cache +2026-04-08T17:57:45.808296Z 01O +2026-04-08T17:57:45.808340Z 00O section_end:1775671065:restore_cache +2026-04-08T17:57:45.808341Z 00O+section_start:1775671065:step_script[collapsed=false] +2026-04-08T17:57:45.812878Z 00O+Executing "step_script" stage of the job script +2026-04-08T17:57:46.308480Z 01O $ export build_before=$(date +%s) # collapsed multi-line command +2026-04-08T17:57:46.308490Z 01O Starting pre-build script +2026-04-08T17:57:46.308496Z 01O Keeping environment unchanged +2026-04-08T17:57:46.308504Z 01O Terminating pre-build script +2026-04-08T17:57:46.308508Z 01O $ unset DD_SERVICE +2026-04-08T17:57:46.308512Z 01O $ unset DD_ENV +2026-04-08T17:57:46.308515Z 01O $ unset DD_TAGS +2026-04-08T17:57:46.308518Z 01O $ unset DD_TRACE_REMOVE_INTEGRATION_SERVICE_NAMES_ENABLED +2026-04-08T17:57:46.308525Z 01O $ git config --global --add safe.directory "$(pwd)/appsec/third_party/libddwaf" +2026-04-08T17:57:46.308528Z 01O $ sudo apt install -y clang-tidy-19 libc++-19-dev libc++abi-19-dev +2026-04-08T17:57:46.308532Z 01O +2026-04-08T17:57:46.308555Z 01O WARNING: apt does not have a stable CLI interface. Use with caution in scripts. +2026-04-08T17:57:46.308567Z 01O +2026-04-08T17:57:46.308575Z 01O Reading package lists... +2026-04-08T17:57:46.809210Z 01O Building dependency tree... +2026-04-08T17:57:47.309853Z 01O Reading state information... +2026-04-08T17:57:47.309859Z 01O clang-tidy-19 is already the newest version (1:19.1.7-3~deb12u1). +2026-04-08T17:57:47.309884Z 01O The following additional packages will be installed: +2026-04-08T17:57:47.309891Z 01O libc++1-19 libc++abi1-19 libunwind-19 libunwind-19-dev +2026-04-08T17:57:47.309897Z 01O Suggested packages: +2026-04-08T17:57:47.309903Z 01O clang +2026-04-08T17:57:47.309906Z 01O The following NEW packages will be installed: +2026-04-08T17:57:47.309910Z 01O libc++-19-dev libc++1-19 libc++abi-19-dev libc++abi1-19 libunwind-19 +2026-04-08T17:57:47.309933Z 01O libunwind-19-dev +2026-04-08T17:57:47.309936Z 01O 0 upgraded, 6 newly installed, 0 to remove and 0 not upgraded. +2026-04-08T17:57:47.309940Z 01O Need to get 1964 kB of archives. +2026-04-08T17:57:47.309946Z 01O After this operation, 14.8 MB of additional disk space will be used. +2026-04-08T17:57:47.309949Z 01O Get:1 http://deb.debian.org/debian bookworm/main amd64 libunwind-19 amd64 1:19.1.7-3~deb12u1 [63.2 kB] +2026-04-08T17:57:47.309953Z 01O Get:2 http://deb.debian.org/debian bookworm/main amd64 libc++abi1-19 amd64 1:19.1.7-3~deb12u1 [105 kB] +2026-04-08T17:57:47.309959Z 01O Get:3 http://deb.debian.org/debian bookworm/main amd64 libc++1-19 amd64 1:19.1.7-3~deb12u1 [302 kB] +2026-04-08T17:57:47.309962Z 01O Get:4 http://deb.debian.org/debian bookworm/main amd64 libc++abi-19-dev amd64 1:19.1.7-3~deb12u1 [128 kB] +2026-04-08T17:57:47.309966Z 01O Get:5 http://deb.debian.org/debian bookworm/main amd64 libunwind-19-dev amd64 1:19.1.7-3~deb12u1 [81.7 kB] +2026-04-08T17:57:47.309973Z 01O Get:6 http://deb.debian.org/debian bookworm/main amd64 libc++-19-dev amd64 1:19.1.7-3~deb12u1 [1284 kB] +2026-04-08T17:57:47.810231Z 01O debconf: delaying package configuration, since apt-utils is not installed +2026-04-08T17:57:47.810241Z 01O Fetched 1964 kB in 0s (41.9 MB/s) +2026-04-08T17:57:47.810246Z 01O Selecting previously unselected package libunwind-19:amd64. +2026-04-08T17:57:47.810259Z 01O (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 41697 files and directories currently installed.) +2026-04-08T17:57:47.810324Z 01O Preparing to unpack .../0-libunwind-19_1%3a19.1.7-3~deb12u1_amd64.deb ... +2026-04-08T17:57:47.810330Z 01O Unpacking libunwind-19:amd64 (1:19.1.7-3~deb12u1) ... +2026-04-08T17:57:47.810337Z 01O Selecting previously unselected package libc++abi1-19:amd64. +2026-04-08T17:57:47.810340Z 01O Preparing to unpack .../1-libc++abi1-19_1%3a19.1.7-3~deb12u1_amd64.deb ... +2026-04-08T17:57:47.810343Z 01O Unpacking libc++abi1-19:amd64 (1:19.1.7-3~deb12u1) ... +2026-04-08T17:57:47.810349Z 01O Selecting previously unselected package libc++1-19:amd64. +2026-04-08T17:57:47.810351Z 01O Preparing to unpack .../2-libc++1-19_1%3a19.1.7-3~deb12u1_amd64.deb ... +2026-04-08T17:57:47.810355Z 01O Unpacking libc++1-19:amd64 (1:19.1.7-3~deb12u1) ... +2026-04-08T17:57:47.810360Z 01O Selecting previously unselected package libc++abi-19-dev:amd64. +2026-04-08T17:57:47.810363Z 01O Preparing to unpack .../3-libc++abi-19-dev_1%3a19.1.7-3~deb12u1_amd64.deb ... +2026-04-08T17:57:47.810367Z 01O Unpacking libc++abi-19-dev:amd64 (1:19.1.7-3~deb12u1) ... +2026-04-08T17:57:47.810373Z 01O Selecting previously unselected package libunwind-19-dev:amd64. +2026-04-08T17:57:47.810375Z 01O Preparing to unpack .../4-libunwind-19-dev_1%3a19.1.7-3~deb12u1_amd64.deb ... +2026-04-08T17:57:47.810379Z 01O Unpacking libunwind-19-dev:amd64 (1:19.1.7-3~deb12u1) ... +2026-04-08T17:57:47.810401Z 01O Selecting previously unselected package libc++-19-dev:amd64. +2026-04-08T17:57:47.810418Z 01O Preparing to unpack .../5-libc++-19-dev_1%3a19.1.7-3~deb12u1_amd64.deb ... +2026-04-08T17:57:47.810429Z 01O Unpacking libc++-19-dev:amd64 (1:19.1.7-3~deb12u1) ... +2026-04-08T17:57:48.310576Z 01O Setting up libunwind-19:amd64 (1:19.1.7-3~deb12u1) ... +2026-04-08T17:57:48.310586Z 01O Setting up libc++abi1-19:amd64 (1:19.1.7-3~deb12u1) ... +2026-04-08T17:57:48.310591Z 01O Setting up libc++1-19:amd64 (1:19.1.7-3~deb12u1) ... +2026-04-08T17:57:48.310597Z 01O Setting up libunwind-19-dev:amd64 (1:19.1.7-3~deb12u1) ... +2026-04-08T17:57:48.310599Z 01O Setting up libc++abi-19-dev:amd64 (1:19.1.7-3~deb12u1) ... +2026-04-08T17:57:48.310603Z 01O Setting up libc++-19-dev:amd64 (1:19.1.7-3~deb12u1) ... +2026-04-08T17:57:48.310609Z 01O Processing triggers for libc-bin (2.36-9+deb12u13) ... +2026-04-08T17:57:48.310612Z 01O $ mkdir -p appsec/build boost-cache boost-cache +2026-04-08T17:57:48.310616Z 01O $ echo "Installing dependencies" # collapsed multi-line command +2026-04-08T17:57:48.310622Z 01O Installing dependencies +2026-04-08T17:57:48.310625Z 01O % Total % Received % Xferd Average Speed Time Time Time Current +2026-04-08T17:57:48.310629Z 01O Dload Upload Total Spent Left Speed +2026-04-08T17:57:48.310636Z 01O +2026-04-08T17:57:48.310637Z 01O+ 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 +2026-04-08T17:57:48.810979Z 01O+ 21 165M 21 35.3M 0 0 159M 0 0:00:01 --:--:-- 0:00:01 160M 100 165M 100 165M 0 0 198M 0 --:--:-- --:--:-- --:--:-- 198M +2026-04-08T17:57:49.311557Z 01O Archive: vault.zip +2026-04-08T17:57:49.311565Z 01O inflating: LICENSE.txt +2026-04-08T17:57:49.311571Z 01O inflating: vault +2026-04-08T17:57:52.315219Z 01O 'vault' -> '/usr/local/bin/vault' +2026-04-08T17:57:52.315228Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php +2026-04-08T17:57:52.315235Z 01O Hit:1 http://deb.debian.org/debian bookworm InRelease +2026-04-08T17:57:52.315237Z 01O Get:3 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB] +2026-04-08T17:57:52.315242Z 01O Get:4 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB] +2026-04-08T17:57:52.315248Z 01O Get:5 https://packages.microsoft.com/debian/12/prod bookworm InRelease [3618 B] +2026-04-08T17:57:52.315251Z 01O Hit:2 https://apt.llvm.org/bookworm llvm-toolchain-bookworm-19 InRelease +2026-04-08T17:57:52.815879Z 01O Ign:6 http://archive.debian.org/debian-debug bookworm-debug InRelease +2026-04-08T17:57:52.815887Z 01O Get:7 https://packages.microsoft.com/debian/12/prod bookworm/main armhf Packages [18.0 kB] +2026-04-08T17:57:52.815945Z 01O Get:8 https://packages.microsoft.com/debian/12/prod bookworm/main amd64 Packages [168 kB] +2026-04-08T17:57:52.815952Z 01O Get:9 https://packages.microsoft.com/debian/12/prod bookworm/main arm64 Packages [68.7 kB] +2026-04-08T17:57:52.815960Z 01O Err:10 http://archive.debian.org/debian-debug bookworm-debug Release +2026-04-08T17:57:52.815964Z 01O 404 Not Found [IP: 151.101.194.132 80] +2026-04-08T17:57:52.815968Z 01O Reading package lists... +2026-04-08T17:57:53.316671Z 01O E: The repository 'http://archive.debian.org/debian-debug bookworm-debug Release' does not have a Release file. +2026-04-08T17:57:53.316677Z 01O Installing codecov +2026-04-08T17:57:53.817352Z 01O gpg: directory '/home/circleci/.gnupg' created +2026-04-08T17:57:53.817364Z 01O gpg: keybox '/home/circleci/.gnupg/trustedkeys.gpg' created +2026-04-08T17:57:53.817372Z 01O % Total % Received % Xferd Average Speed Time Time Time Current +2026-04-08T17:57:53.817379Z 01O Dload Upload Total Spent Left Speed +2026-04-08T17:57:53.817383Z 01O 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 3187 100 3187 0 0 59431 0 --:--:-- --:--:-- --:--:-- 62490 +2026-04-08T17:57:53.817389Z 01O gpg: /home/circleci/.gnupg/trustdb.gpg: trustdb created +2026-04-08T17:57:53.817396Z 01O gpg: key 806BB28AED779869: public key "Codecov Uploader (Codecov Uploader Verification Key) " imported +2026-04-08T17:57:53.817402Z 01O gpg: Total number processed: 1 +2026-04-08T17:57:53.817406Z 01O gpg: imported: 1 +2026-04-08T17:57:54.317813Z 01O gpgv: can't allocate lock for '/home/circleci/.gnupg/trustedkeys.gpg' +2026-04-08T17:57:54.317827Z 01O gpgv: Signature made Tue Jun 20 15:39:52 2023 UTC +2026-04-08T17:57:54.317834Z 01O gpgv: using RSA key 27034E7FDB850E0BBC2C62FF806BB28AED779869 +2026-04-08T17:57:54.317855Z 01O gpgv: Good signature from "Codecov Uploader (Codecov Uploader Verification Key) " +2026-04-08T17:57:54.818522Z 01O codecov: OK +2026-04-08T17:57:54.818530Z 01O $ cd appsec/build +2026-04-08T17:57:54.818535Z 01O $ cmake .. -DCMAKE_BUILD_TYPE=Debug -DDD_APPSEC_ENABLE_COVERAGE=ON \ # collapsed multi-line command +2026-04-08T17:57:54.818544Z 01O -- The C compiler identification is Clang 19.1.7 +2026-04-08T17:57:54.818548Z 01O -- The CXX compiler identification is Clang 19.1.7 +2026-04-08T17:57:54.818552Z 01O -- Detecting C compiler ABI info +2026-04-08T17:57:54.818557Z 01O -- Detecting C compiler ABI info - done +2026-04-08T17:57:54.818560Z 01O -- Check for working C compiler: /usr/bin/clang-19 - skipped +2026-04-08T17:57:54.818564Z 01O -- Detecting C compile features +2026-04-08T17:57:54.818581Z 01O -- Detecting C compile features - done +2026-04-08T17:57:54.818591Z 01O -- Detecting CXX compiler ABI info +2026-04-08T17:57:55.319290Z 01O -- Detecting CXX compiler ABI info - done +2026-04-08T17:57:55.319303Z 01O -- Check for working CXX compiler: /usr/bin/clang++-19 - skipped +2026-04-08T17:57:55.319308Z 01O -- Detecting CXX compile features +2026-04-08T17:57:55.319316Z 01O -- Detecting CXX compile features - done +2026-04-08T17:57:55.319329Z 01O -- Project version: 1.30.1 +2026-04-08T17:57:55.319334Z 01O -- Build type: Debug +2026-04-08T17:57:57.321497Z 01O -- Has recursive unordered_map : TRUE +2026-04-08T17:57:57.321507Z 01O -- Has memory_resource test macro : TRUE +2026-04-08T17:57:57.321511Z 01O -- Has monotonic_resource : TRUE +2026-04-08T17:57:57.822142Z 01O CMake Warning (dev) at /opt/cmake/3.24.4/share/cmake-3.24/Modules/ExternalProject.cmake:3074 (message): +2026-04-08T17:57:57.822153Z 01O The DOWNLOAD_EXTRACT_TIMESTAMP option was not given and policy CMP0135 is +2026-04-08T17:57:57.822158Z 01O not set. The policy's OLD behavior will be used. When using a URL +2026-04-08T17:57:57.822164Z 01O download, the timestamps of extracted files should preferably be that of +2026-04-08T17:57:57.822218Z 01O the time of extraction, otherwise code that depends on the extracted +2026-04-08T17:57:57.822224Z 01O contents might not be rebuilt if the URL changes. The OLD behavior +2026-04-08T17:57:57.822270Z 01O preserves the timestamps from the archive instead, but this is usually not +2026-04-08T17:57:57.822284Z 01O what you want. Update your project to the NEW behavior or specify the +2026-04-08T17:57:57.822293Z 01O DOWNLOAD_EXTRACT_TIMESTAMP option with a value of true to avoid this +2026-04-08T17:57:57.822302Z 01O robustness issue. +2026-04-08T17:57:57.822310Z 01O Call Stack (most recent call first): +2026-04-08T17:57:57.822316Z 01O /opt/cmake/3.24.4/share/cmake-3.24/Modules/ExternalProject.cmake:4170 (_ep_add_download_command) +2026-04-08T17:57:57.822338Z 01O third_party/libddwaf/third_party/CMakeLists.txt:19 (ExternalProject_Add) +2026-04-08T17:57:57.822346Z 01O This warning is for project developers. Use -Wno-dev to suppress it. +2026-04-08T17:57:57.822350Z 01O +2026-04-08T17:57:57.822357Z 01O CMake Warning (dev) at /opt/cmake/3.24.4/share/cmake-3.24/Modules/ExternalProject.cmake:3074 (message): +2026-04-08T17:57:57.822360Z 01O The DOWNLOAD_EXTRACT_TIMESTAMP option was not given and policy CMP0135 is +2026-04-08T17:57:57.822364Z 01O not set. The policy's OLD behavior will be used. When using a URL +2026-04-08T17:57:57.822370Z 01O download, the timestamps of extracted files should preferably be that of +2026-04-08T17:57:57.822372Z 01O the time of extraction, otherwise code that depends on the extracted +2026-04-08T17:57:57.822377Z 01O contents might not be rebuilt if the URL changes. The OLD behavior +2026-04-08T17:57:57.822382Z 01O preserves the timestamps from the archive instead, but this is usually not +2026-04-08T17:57:57.822384Z 01O what you want. Update your project to the NEW behavior or specify the +2026-04-08T17:57:57.822388Z 01O DOWNLOAD_EXTRACT_TIMESTAMP option with a value of true to avoid this +2026-04-08T17:57:57.822394Z 01O robustness issue. +2026-04-08T17:57:57.822396Z 01O Call Stack (most recent call first): +2026-04-08T17:57:57.822399Z 01O /opt/cmake/3.24.4/share/cmake-3.24/Modules/ExternalProject.cmake:4170 (_ep_add_download_command) +2026-04-08T17:57:57.822405Z 01O third_party/libddwaf/third_party/CMakeLists.txt:55 (ExternalProject_Add) +2026-04-08T17:57:57.822408Z 01O This warning is for project developers. Use -Wno-dev to suppress it. +2026-04-08T17:57:57.822426Z 01O +2026-04-08T17:57:57.822438Z 01O CMake Warning (dev) at /opt/cmake/3.24.4/share/cmake-3.24/Modules/ExternalProject.cmake:3074 (message): +2026-04-08T17:57:57.822448Z 01O The DOWNLOAD_EXTRACT_TIMESTAMP option was not given and policy CMP0135 is +2026-04-08T17:57:57.822454Z 01O not set. The policy's OLD behavior will be used. When using a URL +2026-04-08T17:57:57.822467Z 01O download, the timestamps of extracted files should preferably be that of +2026-04-08T17:57:57.822476Z 01O the time of extraction, otherwise code that depends on the extracted +2026-04-08T17:57:57.822482Z 01O contents might not be rebuilt if the URL changes. The OLD behavior +2026-04-08T17:57:57.822494Z 01O preserves the timestamps from the archive instead, but this is usually not +2026-04-08T17:57:57.822504Z 01O what you want. Update your project to the NEW behavior or specify the +2026-04-08T17:57:57.822510Z 01O DOWNLOAD_EXTRACT_TIMESTAMP option with a value of true to avoid this +2026-04-08T17:57:57.822523Z 01O robustness issue. +2026-04-08T17:57:57.822531Z 01O Call Stack (most recent call first): +2026-04-08T17:57:57.822536Z 01O /opt/cmake/3.24.4/share/cmake-3.24/Modules/ExternalProject.cmake:4170 (_ep_add_download_command) +2026-04-08T17:57:57.822561Z 01O third_party/libddwaf/third_party/CMakeLists.txt:99 (ExternalProject_Add) +2026-04-08T17:57:57.822571Z 01O This warning is for project developers. Use -Wno-dev to suppress it. +2026-04-08T17:57:57.822576Z 01O +2026-04-08T17:57:57.822581Z 01O -- Build id is 2f4aa84cd61dc13229d1431779c007bf4ebda89c +2026-04-08T17:57:58.823117Z 01O -- Performing Test CMAKE_HAVE_LIBC_PTHREAD +2026-04-08T17:57:58.823196Z 01O -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success +2026-04-08T17:57:58.823205Z 01O -- Found Threads: TRUE +2026-04-08T17:58:00.825730Z 01O -- Build spdlog: 1.14.1 +2026-04-08T17:58:00.825743Z 01O -- Build type: Debug +2026-04-08T17:58:01.326397Z 01O -- Looking for sys/types.h +2026-04-08T17:58:01.326413Z 01O -- Looking for sys/types.h - found +2026-04-08T17:58:01.326422Z 01O -- Looking for stdint.h +2026-04-08T17:58:01.826972Z 01O -- Looking for stdint.h - found +2026-04-08T17:58:01.826982Z 01O -- Looking for stddef.h +2026-04-08T17:58:01.826987Z 01O -- Looking for stddef.h - found +2026-04-08T17:58:01.826992Z 01O -- Check size of off64_t +2026-04-08T17:58:01.826994Z 01O -- Check size of off64_t - done +2026-04-08T17:58:01.826998Z 01O -- Looking for fseeko +2026-04-08T17:58:01.827003Z 01O -- Looking for fseeko - found +2026-04-08T17:58:01.827005Z 01O -- Looking for unistd.h +2026-04-08T17:58:02.327703Z 01O -- Looking for unistd.h - found +2026-04-08T17:58:02.327719Z 01O -- Renaming +2026-04-08T17:58:02.327728Z 01O -- /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/zlib-src/zconf.h +2026-04-08T17:58:02.327743Z 01O -- to 'zconf.h.included' because this file is included with zlib +2026-04-08T17:58:02.327754Z 01O -- but CMake generates it automatically in the build directory. +2026-04-08T17:58:03.829533Z 01O -- Found cached Boost build, skipping compilation +2026-04-08T17:58:03.829541Z 01O -- boost_coroutine will be imported from /go/src/github.com/DataDog/apm-reliability/dd-trace-php/boost-cache/e89bdd7afb10/lib/libboost_coroutine.a +2026-04-08T17:58:03.829547Z 01O -- boost_context will be imported from /go/src/github.com/DataDog/apm-reliability/dd-trace-php/boost-cache/e89bdd7afb10/lib/libboost_context.a +2026-04-08T17:58:03.829555Z 01O -- boost_program_options will be imported from /go/src/github.com/DataDog/apm-reliability/dd-trace-php/boost-cache/e89bdd7afb10/lib/libboost_program_options.a +2026-04-08T17:58:03.829559Z 01O -- boost_system will be imported from /go/src/github.com/DataDog/apm-reliability/dd-trace-php/boost-cache/e89bdd7afb10/lib/libboost_system.a +2026-04-08T17:58:03.829564Z 01O -- boost_thread will be imported from /go/src/github.com/DataDog/apm-reliability/dd-trace-php/boost-cache/e89bdd7afb10/lib/libboost_thread.a +2026-04-08T17:58:03.829570Z 01O -- boost_stacktrace_addr2line will be imported from /go/src/github.com/DataDog/apm-reliability/dd-trace-php/boost-cache/e89bdd7afb10/lib/libboost_stacktrace_addr2line.a +2026-04-08T17:58:03.829575Z 01O -- boost_stacktrace_basic will be imported from /go/src/github.com/DataDog/apm-reliability/dd-trace-php/boost-cache/e89bdd7afb10/lib/libboost_stacktrace_basic.a +2026-04-08T17:58:03.829579Z 01O -- Boost components will be available as: +2026-04-08T17:58:03.829584Z 01O -- - boost_coroutine +2026-04-08T17:58:03.829586Z 01O -- - boost_context +2026-04-08T17:58:03.829590Z 01O -- - boost_program_options +2026-04-08T17:58:03.829595Z 01O -- - boost_system +2026-04-08T17:58:03.829597Z 01O -- - boost_thread +2026-04-08T17:58:03.829600Z 01O -- - boost_stacktrace +2026-04-08T17:58:03.829605Z 01O -- Cache configuration: +2026-04-08T17:58:03.829611Z 01O -- BOOST_CACHE_PREFIX: /go/src/github.com/DataDog/apm-reliability/dd-trace-php/boost-cache +2026-04-08T17:58:03.829629Z 01O -- ABI Hash: e89bdd7afb10 +2026-04-08T17:58:03.829642Z 01O -- Cache Hit: TRUE +2026-04-08T17:58:03.829647Z 01O -- +2026-04-08T17:58:03.829652Z 01O -- Found PhpConfig: /usr/local/bin/php-config (found version "8.3.30") +2026-04-08T17:58:03.829658Z 01O -- PHP version: 8.3.30 +2026-04-08T17:58:03.829663Z 01O -- PHP include directories: /opt/php/debug/include/php;/opt/php/debug/include/php/main;/opt/php/debug/include/php/TSRM;/opt/php/debug/include/php/Zend;/opt/php/debug/include/php/ext;/opt/php/debug/include/php/ext/date/lib +2026-04-08T17:58:03.829672Z 01O -- PHP libraries: -lncurses -lpq -lrt -lstdc++ -lrt -lm -ldl -lxml2 -lssl -lcrypto -lsqlite3 -lz -lcurl -lxml2 -lffi -lssl -lcrypto -lz -lpng16 -lwebp -ljpeg -lfreetype -licuio -licui18n -licuuc -licudata -lonig -lsqlite3 -ledit -lxml2 -lxml2 -lsodium -lxml2 -lxml2 -lxml2 -lxslt -lxml2 -lexslt -lxslt -lxml2 -lzip -lz -lssl -lcrypto +2026-04-08T17:58:03.829703Z 01O -- ASAN is disabled +2026-04-08T17:58:03.829708Z 01O -- Looking for ZTS +2026-04-08T17:58:03.829714Z 01O -- Looking for ZTS - not found +2026-04-08T17:58:03.829717Z 01O -- Looking for HAVE_BUNDLED_PCRE +2026-04-08T17:58:03.829720Z 01O -- Looking for HAVE_BUNDLED_PCRE - found +2026-04-08T17:58:03.829725Z 01O -- Using PHP's bundled PCRE2 +2026-04-08T17:58:03.829730Z 01O -- Performing Test COMPILER_HAS_NO_GNU_UNIQUE +2026-04-08T17:58:03.829733Z 01O -- Performing Test COMPILER_HAS_NO_GNU_UNIQUE - Failed +2026-04-08T17:58:03.829739Z 01O -- Linker has flag -Wl,--as-needed +2026-04-08T17:58:03.829742Z 01O -- Performing Test LINKER_SUPPORTS_VERSION_SCRIPT +2026-04-08T17:58:04.330290Z 01O -- Performing Test LINKER_SUPPORTS_VERSION_SCRIPT - Success +2026-04-08T17:58:04.330299Z 01O -- Linker has flag -Wl,--version-script +2026-04-08T17:58:04.330303Z 01O -- Linker has flag -flat_namespace;-undefined suppress +2026-04-08T17:58:04.330309Z 01O CMake Warning at cmake/patchelf.cmake:13 (message): +2026-04-08T17:58:04.330312Z 01O Patchelf not found. Can't build glibc + musl binaries +2026-04-08T17:58:04.330316Z 01O Call Stack (most recent call first): +2026-04-08T17:58:04.330320Z 01O cmake/extension.cmake:88 (patch_away_libc) +2026-04-08T17:58:04.330323Z 01O CMakeLists.txt:58 (include) +2026-04-08T17:58:04.330326Z 01O +2026-04-08T17:58:04.330331Z 01O +2026-04-08T17:58:04.330335Z 01O -- Linker has flag -Wl,--version-script=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/helper.version +2026-04-08T17:58:04.330339Z 01O CMake Warning at cmake/patchelf.cmake:13 (message): +2026-04-08T17:58:04.330362Z 01O Patchelf not found. Can't build glibc + musl binaries +2026-04-08T17:58:04.330379Z 01O Call Stack (most recent call first): +2026-04-08T17:58:04.330397Z 01O cmake/helper.cmake:59 (patch_away_libc) +2026-04-08T17:58:04.330400Z 01O CMakeLists.txt:62 (include) +2026-04-08T17:58:04.330404Z 01O +2026-04-08T17:58:04.330408Z 01O +2026-04-08T17:58:09.335586Z 01O -- Failed to find LLVM FileCheck +2026-04-08T17:58:09.335624Z 01O -- Found Git: /usr/bin/git (found version "2.39.5") +2026-04-08T17:58:09.335629Z 01O -- Google Benchmark version: v1.9.1, normalized to 1.9.1 +2026-04-08T17:58:09.335658Z 01O -- Looking for shm_open in rt +2026-04-08T17:58:09.335671Z 01O -- Looking for shm_open in rt - found +2026-04-08T17:58:09.335681Z 01O -- Performing Test HAVE_CXX_FLAG_WALL +2026-04-08T17:58:09.335689Z 01O -- Performing Test HAVE_CXX_FLAG_WALL - Success +2026-04-08T17:58:09.335692Z 01O -- Performing Test HAVE_CXX_FLAG_WEXTRA +2026-04-08T17:58:09.835630Z 01O -- Performing Test HAVE_CXX_FLAG_WEXTRA - Success +2026-04-08T17:58:09.835640Z 01O -- Performing Test HAVE_CXX_FLAG_WSHADOW +2026-04-08T17:58:09.835644Z 01O -- Performing Test HAVE_CXX_FLAG_WSHADOW - Success +2026-04-08T17:58:09.835650Z 01O -- Performing Test HAVE_CXX_FLAG_WFLOAT_EQUAL +2026-04-08T17:58:09.835653Z 01O -- Performing Test HAVE_CXX_FLAG_WFLOAT_EQUAL - Success +2026-04-08T17:58:09.835657Z 01O -- Performing Test HAVE_CXX_FLAG_WOLD_STYLE_CAST +2026-04-08T17:58:09.835663Z 01O -- Performing Test HAVE_CXX_FLAG_WOLD_STYLE_CAST - Success +2026-04-08T17:58:09.835665Z 01O -- Performing Test HAVE_CXX_FLAG_WCONVERSION +2026-04-08T17:58:10.336272Z 01O -- Performing Test HAVE_CXX_FLAG_WCONVERSION - Success +2026-04-08T17:58:10.336279Z 01O -- Performing Test HAVE_CXX_FLAG_WERROR +2026-04-08T17:58:10.336284Z 01O -- Performing Test HAVE_CXX_FLAG_WERROR - Success +2026-04-08T17:58:10.336291Z 01O -- Performing Test HAVE_CXX_FLAG_WSUGGEST_OVERRIDE +2026-04-08T17:58:10.336293Z 01O -- Performing Test HAVE_CXX_FLAG_WSUGGEST_OVERRIDE - Success +2026-04-08T17:58:10.336297Z 01O -- Performing Test HAVE_CXX_FLAG_PEDANTIC +2026-04-08T17:58:10.336303Z 01O -- Performing Test HAVE_CXX_FLAG_PEDANTIC - Success +2026-04-08T17:58:10.336306Z 01O -- Performing Test HAVE_CXX_FLAG_PEDANTIC_ERRORS +2026-04-08T17:58:10.837101Z 01O -- Performing Test HAVE_CXX_FLAG_PEDANTIC_ERRORS - Success +2026-04-08T17:58:10.837158Z 01O -- Performing Test HAVE_CXX_FLAG_WSHORTEN_64_TO_32 +2026-04-08T17:58:10.837164Z 01O -- Performing Test HAVE_CXX_FLAG_WSHORTEN_64_TO_32 - Success +2026-04-08T17:58:10.837170Z 01O -- Performing Test HAVE_CXX_FLAG_FSTRICT_ALIASING +2026-04-08T17:58:10.837173Z 01O -- Performing Test HAVE_CXX_FLAG_FSTRICT_ALIASING - Success +2026-04-08T17:58:10.837177Z 01O -- Performing Test HAVE_CXX_FLAG_WNO_DEPRECATED_DECLARATIONS +2026-04-08T17:58:10.837186Z 01O -- Performing Test HAVE_CXX_FLAG_WNO_DEPRECATED_DECLARATIONS - Success +2026-04-08T17:58:10.837189Z 01O -- Performing Test HAVE_CXX_FLAG_WNO_DEPRECATED +2026-04-08T17:58:11.337533Z 01O -- Performing Test HAVE_CXX_FLAG_WNO_DEPRECATED - Success +2026-04-08T17:58:11.337567Z 01O -- Performing Test HAVE_CXX_FLAG_WSTRICT_ALIASING +2026-04-08T17:58:11.337571Z 01O -- Performing Test HAVE_CXX_FLAG_WSTRICT_ALIASING - Success +2026-04-08T17:58:11.337577Z 01O -- Performing Test HAVE_CXX_FLAG_WD654 +2026-04-08T17:58:11.337579Z 01O -- Performing Test HAVE_CXX_FLAG_WD654 - Failed +2026-04-08T17:58:11.337583Z 01O -- Performing Test HAVE_CXX_FLAG_WTHREAD_SAFETY +2026-04-08T17:58:11.337599Z 01O -- Performing Test HAVE_CXX_FLAG_WTHREAD_SAFETY - Success +2026-04-08T17:58:11.337604Z 01O -- Enabling additional flags: -DINCLUDE_DIRECTORIES=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/benchmark-src/include +2026-04-08T17:58:11.337609Z 01O -- Compiling and running to test HAVE_THREAD_SAFETY_ATTRIBUTES +2026-04-08T17:58:12.338412Z 01O -- Performing Test HAVE_THREAD_SAFETY_ATTRIBUTES -- success +2026-04-08T17:58:12.338422Z 01O -- Performing Test HAVE_CXX_FLAG_COVERAGE +2026-04-08T17:58:12.839185Z 01O -- Performing Test HAVE_CXX_FLAG_COVERAGE - Success +2026-04-08T17:58:12.839196Z 01O -- Compiling and running to test HAVE_STD_REGEX +2026-04-08T17:58:13.839843Z 01O -- Performing Test HAVE_STD_REGEX -- success +2026-04-08T17:58:13.839853Z 01O -- Compiling and running to test HAVE_GNU_POSIX_REGEX +2026-04-08T17:58:14.340312Z 01O -- Performing Test HAVE_GNU_POSIX_REGEX -- failed to compile +2026-04-08T17:58:14.340324Z 01O -- Compiling and running to test HAVE_POSIX_REGEX +2026-04-08T17:58:15.341875Z 01O -- Performing Test HAVE_POSIX_REGEX -- success +2026-04-08T17:58:15.341885Z 01O -- Compiling and running to test HAVE_STEADY_CLOCK +2026-04-08T17:58:15.842340Z 01O -- Performing Test HAVE_STEADY_CLOCK -- success +2026-04-08T17:58:15.842351Z 01O -- Compiling and running to test HAVE_PTHREAD_AFFINITY +2026-04-08T17:58:15.842356Z 01O -- Performing Test HAVE_PTHREAD_AFFINITY -- success +2026-04-08T17:58:15.842362Z 01O -- Configuring done +2026-04-08T17:58:16.343086Z 01O -- Generating done +2026-04-08T17:58:16.343097Z 01O -- Build files have been written to: /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build +2026-04-08T17:58:16.343104Z 01O $ export PATH=$PATH:$HOME/.cargo/bin # collapsed multi-line command +2026-04-08T17:58:16.343111Z 01O /opt/cmake/3.24.4/bin/cmake -P /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/CMakeFiles/VerifyGlobs.cmake +2026-04-08T17:58:16.343116Z 01O /opt/cmake/3.24.4/bin/cmake -S/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec -B/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build --check-build-system CMakeFiles/Makefile.cmake 0 +2026-04-08T17:58:16.343121Z 01O make -f CMakeFiles/Makefile2 xtest +2026-04-08T17:58:16.343127Z 01O make[1]: Entering directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' +2026-04-08T17:58:16.343134Z 01O /opt/cmake/3.24.4/bin/cmake -P /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/CMakeFiles/VerifyGlobs.cmake +2026-04-08T17:58:16.343140Z 01O /opt/cmake/3.24.4/bin/cmake -S/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec -B/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build --check-build-system CMakeFiles/Makefile.cmake 0 +2026-04-08T17:58:16.343147Z 01O /opt/cmake/3.24.4/bin/cmake -E cmake_progress_start /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/CMakeFiles 15 +2026-04-08T17:58:16.343207Z 01O make -f CMakeFiles/Makefile2 CMakeFiles/xtest.dir/all +2026-04-08T17:58:16.343213Z 01O make[2]: Entering directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' +2026-04-08T17:58:16.343235Z 01O make -f _deps/spdlog-build/CMakeFiles/spdlog.dir/build.make _deps/spdlog-build/CMakeFiles/spdlog.dir/depend +2026-04-08T17:58:16.343248Z 01O make -f CMakeFiles/boost_build.dir/build.make CMakeFiles/boost_build.dir/depend +2026-04-08T17:58:16.343254Z 01O make -f third_party/CMakeFiles/mpack_malloc.dir/build.make third_party/CMakeFiles/mpack_malloc.dir/depend +2026-04-08T17:58:16.343276Z 01O make -f third_party/CMakeFiles/mpack.dir/build.make third_party/CMakeFiles/mpack.dir/depend +2026-04-08T17:58:16.343289Z 01O make[3]: Entering directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' +2026-04-08T17:58:16.343318Z 01O cd /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build && /opt/cmake/3.24.4/bin/cmake -E cmake_depends "Unix Makefiles" /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/CMakeFiles/boost_build.dir/DependInfo.cmake --color= +2026-04-08T17:58:16.343325Z 01O make[3]: Entering directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' +2026-04-08T17:58:16.343336Z 01O cd /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build && /opt/cmake/3.24.4/bin/cmake -E cmake_depends "Unix Makefiles" /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/third_party /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/third_party/CMakeFiles/mpack_malloc.dir/DependInfo.cmake --color= +2026-04-08T17:58:16.343345Z 01O make[3]: Entering directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' +2026-04-08T17:58:16.343355Z 01O cd /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build && /opt/cmake/3.24.4/bin/cmake -E cmake_depends "Unix Makefiles" /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/third_party /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/third_party/CMakeFiles/mpack.dir/DependInfo.cmake --color= +2026-04-08T17:58:16.343362Z 01O make[3]: Entering directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' +2026-04-08T17:58:16.343376Z 01O cd /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build && /opt/cmake/3.24.4/bin/cmake -E cmake_depends "Unix Makefiles" /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/spdlog-src /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/spdlog-build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/spdlog-build/CMakeFiles/spdlog.dir/DependInfo.cmake --color= +2026-04-08T17:58:16.343386Z 01O make[3]: Leaving directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' +2026-04-08T17:58:16.343391Z 01O make[3]: Leaving directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' +2026-04-08T17:58:16.343397Z 01O make -f CMakeFiles/boost_build.dir/build.make CMakeFiles/boost_build.dir/build +2026-04-08T17:58:16.343400Z 01O make[3]: Leaving directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' +2026-04-08T17:58:16.343432Z 01O make[3]: Leaving directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' +2026-04-08T17:58:16.343438Z 01O make -f third_party/CMakeFiles/mpack_malloc.dir/build.make third_party/CMakeFiles/mpack_malloc.dir/build +2026-04-08T17:58:16.343460Z 01O make -f _deps/spdlog-build/CMakeFiles/spdlog.dir/build.make _deps/spdlog-build/CMakeFiles/spdlog.dir/build +2026-04-08T17:58:16.343463Z 01O make -f third_party/CMakeFiles/mpack.dir/build.make third_party/CMakeFiles/mpack.dir/build +2026-04-08T17:58:16.343469Z 01O make[3]: Entering directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' +2026-04-08T17:58:16.343477Z 01O make[3]: Entering directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' +2026-04-08T17:58:16.343481Z 01O make[3]: Entering directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' +2026-04-08T17:58:16.343485Z 01O make[3]: Entering directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' +2026-04-08T17:58:16.343493Z 01O [ 0%] Using cached Boost libraries +2026-04-08T17:58:16.343497Z 01O [ 0%] Building C object third_party/CMakeFiles/mpack_malloc.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/ext/vendor/mpack/mpack.c.o +2026-04-08T17:58:16.343512Z 01O [ 0%] Building CXX object _deps/spdlog-build/CMakeFiles/spdlog.dir/src/spdlog.cpp.o +2026-04-08T17:58:16.343525Z 01O /opt/cmake/3.24.4/bin/cmake -E echo Using\ cached\ Boost\ build +2026-04-08T17:58:16.343531Z 01O [ 0%] Building C object third_party/CMakeFiles/mpack.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/ext/vendor/mpack/mpack.c.o +2026-04-08T17:58:16.343544Z 01O cd /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/spdlog-build && /usr/bin/clang++-19 -DSPDLOG_COMPILED_LIB -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/spdlog-src/include -stdlib=libc++ -g -fPIC -std=c++17 -MD -MT _deps/spdlog-build/CMakeFiles/spdlog.dir/src/spdlog.cpp.o -MF CMakeFiles/spdlog.dir/src/spdlog.cpp.o.d -o CMakeFiles/spdlog.dir/src/spdlog.cpp.o -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/spdlog-src/src/spdlog.cpp +2026-04-08T17:58:16.343567Z 01O cd /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/third_party && /usr/bin/clang-19 -DMPACK_BUFFER_SIZE=131072 -DMPACK_STDIO=0 -DMPACK_WRITE_TRACKING=1 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/../../ext/vendor/mpack -g -std=gnu11 -MD -MT third_party/CMakeFiles/mpack_malloc.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/ext/vendor/mpack/mpack.c.o -MF CMakeFiles/mpack_malloc.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/ext/vendor/mpack/mpack.c.o.d -o CMakeFiles/mpack_malloc.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/ext/vendor/mpack/mpack.c.o -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/ext/vendor/mpack/mpack.c +2026-04-08T17:58:16.343584Z 01O cd /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/third_party && /usr/bin/clang-19 -DMPACK_BUFFER_SIZE=32 -DMPACK_DEBUG=1 -DMPACK_HAS_CONFIG=1 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/../../ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/../src/extension/mpack -isystem /opt/php/debug/include/php -isystem /opt/php/debug/include/php/main -isystem /opt/php/debug/include/php/TSRM -isystem /opt/php/debug/include/php/Zend -isystem /opt/php/debug/include/php/ext -isystem /opt/php/debug/include/php/ext/date/lib -g -fPIC -fvisibility=hidden -std=gnu11 -MD -MT third_party/CMakeFiles/mpack.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/ext/vendor/mpack/mpack.c.o -MF CMakeFiles/mpack.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/ext/vendor/mpack/mpack.c.o.d -o CMakeFiles/mpack.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/ext/vendor/mpack/mpack.c.o -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/ext/vendor/mpack/mpack.c +2026-04-08T17:58:16.343606Z 01O Using cached Boost build +2026-04-08T17:58:16.343612Z 01O make[3]: Leaving directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' +2026-04-08T17:58:16.343618Z 01O [ 0%] Built target boost_build +2026-04-08T17:58:16.343628Z 01O make -f CMakeFiles/libxml2_build.dir/build.make CMakeFiles/libxml2_build.dir/depend +2026-04-08T17:58:16.343634Z 01O make[3]: Entering directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' +2026-04-08T17:58:16.343654Z 01O cd /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build && /opt/cmake/3.24.4/bin/cmake -E cmake_depends "Unix Makefiles" /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/CMakeFiles/libxml2_build.dir/DependInfo.cmake --color= +2026-04-08T17:58:16.343667Z 01O make[3]: Leaving directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' +2026-04-08T17:58:16.343673Z 01O make -f CMakeFiles/libxml2_build.dir/build.make CMakeFiles/libxml2_build.dir/build +2026-04-08T17:58:16.343706Z 01O make[3]: Entering directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' +2026-04-08T17:58:16.343718Z 01O [ 0%] Creating directories for 'libxml2_build' +2026-04-08T17:58:16.343725Z 01O /opt/cmake/3.24.4/bin/cmake -Dcfgdir= -P /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2_build-prefix/tmp/libxml2_build-mkdirs.cmake +2026-04-08T17:58:16.343737Z 01O /opt/cmake/3.24.4/bin/cmake -E touch /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2_build-prefix/src/libxml2_build-stamp/libxml2_build-mkdir +2026-04-08T17:58:16.343747Z 01O [ 0%] No download step for 'libxml2_build' +2026-04-08T17:58:16.343751Z 01O /opt/cmake/3.24.4/bin/cmake -E echo_append +2026-04-08T17:58:16.343764Z 01O /opt/cmake/3.24.4/bin/cmake -E touch /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2_build-prefix/src/libxml2_build-stamp/libxml2_build-download +2026-04-08T17:58:16.343773Z 01O [ 0%] No update step for 'libxml2_build' +2026-04-08T17:58:16.343777Z 01O /opt/cmake/3.24.4/bin/cmake -E echo_append +2026-04-08T17:58:16.343792Z 01O /opt/cmake/3.24.4/bin/cmake -E touch /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2_build-prefix/src/libxml2_build-stamp/libxml2_build-update +2026-04-08T17:58:16.343803Z 01O [ 6%] No patch step for 'libxml2_build' +2026-04-08T17:58:16.343807Z 01O /opt/cmake/3.24.4/bin/cmake -E echo_append +2026-04-08T17:58:16.343820Z 01O /opt/cmake/3.24.4/bin/cmake -E touch /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2_build-prefix/src/libxml2_build-stamp/libxml2_build-patch +2026-04-08T17:58:16.343831Z 01O [ 13%] Performing configure step for 'libxml2_build' +2026-04-08T17:58:16.343844Z 01O cd /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2 && /opt/cmake/3.24.4/bin/cmake -P /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2_build-prefix/src/libxml2_build-stamp/libxml2_build-configure-Debug.cmake +2026-04-08T17:58:16.843814Z 01O make[3]: Leaving directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' +2026-04-08T17:58:16.843827Z 01O [ 13%] Built target mpack_malloc +2026-04-08T17:58:16.843831Z 01O make -f CMakeFiles/zai.dir/build.make CMakeFiles/zai.dir/depend +2026-04-08T17:58:16.843839Z 01O make[3]: Entering directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' +2026-04-08T17:58:16.843851Z 01O cd /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build && /opt/cmake/3.24.4/bin/cmake -E cmake_depends "Unix Makefiles" /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/CMakeFiles/zai.dir/DependInfo.cmake --color= +2026-04-08T17:58:16.843903Z 01O make[3]: Leaving directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' +2026-04-08T17:58:16.843910Z 01O make -f CMakeFiles/zai.dir/build.make CMakeFiles/zai.dir/build +2026-04-08T17:58:16.843923Z 01O make[3]: Entering directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' +2026-04-08T17:58:16.843931Z 01O [ 13%] Building C object CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config.c.o +2026-04-08T17:58:16.843950Z 01O /usr/bin/clang-19 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/../zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/ext_root_includes -isystem /opt/php/debug/include/php -isystem /opt/php/debug/include/php/main -isystem /opt/php/debug/include/php/TSRM -isystem /opt/php/debug/include/php/Zend -isystem /opt/php/debug/include/php/ext -isystem /opt/php/debug/include/php/ext/date/lib -g -fPIC -std=gnu11 -MD -MT CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config.c.o -MF CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config.c.o.d -o CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config.c.o -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config.c +2026-04-08T17:58:16.843959Z 01O make[3]: Leaving directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' +2026-04-08T17:58:16.843962Z 01O [ 13%] Built target mpack +2026-04-08T17:58:16.843967Z 01O make -f CMakeFiles/ddtrace.dir/build.make CMakeFiles/ddtrace.dir/depend +2026-04-08T17:58:16.843971Z 01O make[3]: Entering directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' +2026-04-08T17:58:16.843982Z 01O cd /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build && /opt/cmake/3.24.4/bin/cmake -E cmake_depends "Unix Makefiles" /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/CMakeFiles/ddtrace.dir/DependInfo.cmake --color= +2026-04-08T17:58:16.843992Z 01O make[3]: Leaving directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' +2026-04-08T17:58:16.843994Z 01O make -f CMakeFiles/ddtrace.dir/build.make CMakeFiles/ddtrace.dir/build +2026-04-08T17:58:16.843999Z 01O make[3]: Entering directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' +2026-04-08T17:58:16.844054Z 01O cd /go/src/github.com/DataDog/apm-reliability/dd-trace-php && /opt/cmake/3.24.4/bin/cmake -E env PATH=/opt/php/debug/bin:/go/bin:/rust/cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin PHPRC= make /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/modules/ddtrace.so +2026-04-08T17:58:16.844064Z 01O make[4]: Entering directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php' +2026-04-08T17:58:16.844069Z 01O make[4]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. +2026-04-08T17:58:16.844080Z 01O [ 13%] Building C object CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config_decode.c.o +2026-04-08T17:58:16.844098Z 01O /usr/bin/clang-19 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/../zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/ext_root_includes -isystem /opt/php/debug/include/php -isystem /opt/php/debug/include/php/main -isystem /opt/php/debug/include/php/TSRM -isystem /opt/php/debug/include/php/Zend -isystem /opt/php/debug/include/php/ext -isystem /opt/php/debug/include/php/ext/date/lib -g -fPIC -std=gnu11 -MD -MT CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config_decode.c.o -MF CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config_decode.c.o.d -o CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config_decode.c.o -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config_decode.c +2026-04-08T17:58:16.844148Z 01O [ 20%] Building C object CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config_ini.c.o +2026-04-08T17:58:16.844167Z 01O /usr/bin/clang-19 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/../zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/ext_root_includes -isystem /opt/php/debug/include/php -isystem /opt/php/debug/include/php/main -isystem /opt/php/debug/include/php/TSRM -isystem /opt/php/debug/include/php/Zend -isystem /opt/php/debug/include/php/ext -isystem /opt/php/debug/include/php/ext/date/lib -g -fPIC -std=gnu11 -MD -MT CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config_ini.c.o -MF CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config_ini.c.o.d -o CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config_ini.c.o -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config_ini.c +2026-04-08T17:58:17.344515Z 01O [ 20%] Building C object CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config_runtime.c.o +2026-04-08T17:58:17.344538Z 01O /usr/bin/clang-19 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/../zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/ext_root_includes -isystem /opt/php/debug/include/php -isystem /opt/php/debug/include/php/main -isystem /opt/php/debug/include/php/TSRM -isystem /opt/php/debug/include/php/Zend -isystem /opt/php/debug/include/php/ext -isystem /opt/php/debug/include/php/ext/date/lib -g -fPIC -std=gnu11 -MD -MT CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config_runtime.c.o -MF CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config_runtime.c.o.d -o CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config_runtime.c.o -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config_runtime.c +2026-04-08T17:58:17.344550Z 01O -- libxml2_build configure command succeeded. See also /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2_build-prefix/src/libxml2_build-stamp/libxml2_build-configure-*.log +2026-04-08T17:58:17.344581Z 01O cd /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2 && /opt/cmake/3.24.4/bin/cmake -E touch /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2_build-prefix/src/libxml2_build-stamp/libxml2_build-configure +2026-04-08T17:58:17.344596Z 01O [ 20%] Performing build step for 'libxml2_build' +2026-04-08T17:58:17.344604Z 01O cd /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2 && /opt/cmake/3.24.4/bin/cmake -Dmake=make -P /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2_build-prefix/src/libxml2_build-stamp/libxml2_build-build-Debug.cmake +2026-04-08T17:58:17.344632Z 01O [ 20%] Building C object CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config_stable_file.c.o +2026-04-08T17:58:17.344708Z 01O /usr/bin/clang-19 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/../zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/ext_root_includes -isystem /opt/php/debug/include/php -isystem /opt/php/debug/include/php/main -isystem /opt/php/debug/include/php/TSRM -isystem /opt/php/debug/include/php/Zend -isystem /opt/php/debug/include/php/ext -isystem /opt/php/debug/include/php/ext/date/lib -g -fPIC -std=gnu11 -MD -MT CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config_stable_file.c.o -MF CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config_stable_file.c.o.d -o CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config_stable_file.c.o -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config_stable_file.c +2026-04-08T17:58:17.845117Z 01O [ 20%] Building C object CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/env/env.c.o +2026-04-08T17:58:17.845138Z 01O /usr/bin/clang-19 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/../zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/ext_root_includes -isystem /opt/php/debug/include/php -isystem /opt/php/debug/include/php/main -isystem /opt/php/debug/include/php/TSRM -isystem /opt/php/debug/include/php/Zend -isystem /opt/php/debug/include/php/ext -isystem /opt/php/debug/include/php/ext/date/lib -g -fPIC -std=gnu11 -MD -MT CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/env/env.c.o -MF CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/env/env.c.o.d -o CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/env/env.c.o -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/env/env.c +2026-04-08T17:58:17.845148Z 01O [ 26%] Building C object CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/json/json.c.o +2026-04-08T17:58:17.845187Z 01O /usr/bin/clang-19 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/../zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/ext_root_includes -isystem /opt/php/debug/include/php -isystem /opt/php/debug/include/php/main -isystem /opt/php/debug/include/php/TSRM -isystem /opt/php/debug/include/php/Zend -isystem /opt/php/debug/include/php/ext -isystem /opt/php/debug/include/php/ext/date/lib -g -fPIC -std=gnu11 -MD -MT CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/json/json.c.o -MF CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/json/json.c.o.d -o CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/json/json.c.o -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/json/json.c +2026-04-08T17:58:17.845212Z 01O [ 26%] Building C object CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/zai_string/string.c.o +2026-04-08T17:58:17.845235Z 01O /usr/bin/clang-19 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/../zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/ext_root_includes -isystem /opt/php/debug/include/php -isystem /opt/php/debug/include/php/main -isystem /opt/php/debug/include/php/TSRM -isystem /opt/php/debug/include/php/Zend -isystem /opt/php/debug/include/php/ext -isystem /opt/php/debug/include/php/ext/date/lib -g -fPIC -std=gnu11 -MD -MT CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/zai_string/string.c.o -MF CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/zai_string/string.c.o.d -o CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/zai_string/string.c.o -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/zai_string/string.c +2026-04-08T17:58:18.347348Z 01O [ 26%] Linking C static library libzai.a +2026-04-08T17:58:18.347366Z 01O /opt/cmake/3.24.4/bin/cmake -P CMakeFiles/zai.dir/cmake_clean_target.cmake +2026-04-08T17:58:18.347372Z 01O /opt/cmake/3.24.4/bin/cmake -E cmake_link_script CMakeFiles/zai.dir/link.txt --verbose=1 +2026-04-08T17:58:18.347392Z 01O /usr/bin/llvm-ar-19 qc libzai.a "CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config.c.o" "CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config_decode.c.o" "CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config_ini.c.o" "CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config_runtime.c.o" "CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config_stable_file.c.o" "CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/env/env.c.o" "CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/json/json.c.o" "CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/zai_string/string.c.o" +2026-04-08T17:58:18.347400Z 01O /usr/bin/llvm-ranlib-19 libzai.a +2026-04-08T17:58:18.347404Z 01O make[3]: Leaving directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' +2026-04-08T17:58:18.347411Z 01O [ 26%] Built target zai +2026-04-08T17:58:18.347414Z 01O make -f CMakeFiles/xtest-prepare.dir/build.make CMakeFiles/xtest-prepare.dir/depend +2026-04-08T17:58:18.347419Z 01O make[3]: Entering directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' +2026-04-08T17:58:18.347449Z 01O cd /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build && /opt/cmake/3.24.4/bin/cmake -E cmake_depends "Unix Makefiles" /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/CMakeFiles/xtest-prepare.dir/DependInfo.cmake --color= +2026-04-08T17:58:18.347465Z 01O make[3]: Leaving directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' +2026-04-08T17:58:18.347478Z 01O make -f CMakeFiles/xtest-prepare.dir/build.make CMakeFiles/xtest-prepare.dir/build +2026-04-08T17:58:18.347495Z 01O make[3]: Entering directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' +2026-04-08T17:58:18.347507Z 01O mkdir -p /tmp/appsec-ext-test +2026-04-08T17:58:18.347513Z 01O make[3]: Leaving directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' +2026-04-08T17:58:18.347522Z 01O [ 26%] Built target xtest-prepare +2026-04-08T17:58:18.347526Z 01O [ 33%] Building CXX object _deps/spdlog-build/CMakeFiles/spdlog.dir/src/stdout_sinks.cpp.o +2026-04-08T17:58:18.347539Z 01O cd /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/spdlog-build && /usr/bin/clang++-19 -DSPDLOG_COMPILED_LIB -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/spdlog-src/include -stdlib=libc++ -g -fPIC -std=c++17 -MD -MT _deps/spdlog-build/CMakeFiles/spdlog.dir/src/stdout_sinks.cpp.o -MF CMakeFiles/spdlog.dir/src/stdout_sinks.cpp.o.d -o CMakeFiles/spdlog.dir/src/stdout_sinks.cpp.o -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/spdlog-src/src/stdout_sinks.cpp +2026-04-08T17:58:19.348755Z 01O -- libxml2_build build command succeeded. See also /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2_build-prefix/src/libxml2_build-stamp/libxml2_build-build-*.log +2026-04-08T17:58:19.348774Z 01O cd /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2 && /opt/cmake/3.24.4/bin/cmake -E touch /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2_build-prefix/src/libxml2_build-stamp/libxml2_build-build +2026-04-08T17:58:19.348783Z 01O [ 33%] Performing install step for 'libxml2_build' +2026-04-08T17:58:19.348792Z 01O cd /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2 && /opt/cmake/3.24.4/bin/cmake -Dmake=make -P /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2_build-prefix/src/libxml2_build-stamp/libxml2_build-install-Debug.cmake +2026-04-08T17:58:19.348798Z 01O -- libxml2_build install command succeeded. See also /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2_build-prefix/src/libxml2_build-stamp/libxml2_build-install-*.log +2026-04-08T17:58:19.348809Z 01O cd /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2 && /opt/cmake/3.24.4/bin/cmake -E touch /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2_build-prefix/src/libxml2_build-stamp/libxml2_build-install +2026-04-08T17:58:19.348816Z 01O [ 33%] Completed 'libxml2_build' +2026-04-08T17:58:19.348820Z 01O /opt/cmake/3.24.4/bin/cmake -E make_directory /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/CMakeFiles +2026-04-08T17:58:19.348825Z 01O /opt/cmake/3.24.4/bin/cmake -E touch /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/CMakeFiles/libxml2_build-complete +2026-04-08T17:58:19.348835Z 01O /opt/cmake/3.24.4/bin/cmake -E touch /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2_build-prefix/src/libxml2_build-stamp/libxml2_build-done +2026-04-08T17:58:19.348839Z 01O make[3]: Leaving directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' +2026-04-08T17:58:19.348844Z 01O [ 33%] Built target libxml2_build +2026-04-08T17:58:19.348853Z 01O [ 33%] Building CXX object _deps/spdlog-build/CMakeFiles/spdlog.dir/src/color_sinks.cpp.o +2026-04-08T17:58:19.348862Z 01O cd /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/spdlog-build && /usr/bin/clang++-19 -DSPDLOG_COMPILED_LIB -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/spdlog-src/include -stdlib=libc++ -g -fPIC -std=c++17 -MD -MT _deps/spdlog-build/CMakeFiles/spdlog.dir/src/color_sinks.cpp.o -MF CMakeFiles/spdlog.dir/src/color_sinks.cpp.o.d -o CMakeFiles/spdlog.dir/src/color_sinks.cpp.o -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/spdlog-src/src/color_sinks.cpp +2026-04-08T17:58:19.348879Z 01O [ 33%] Building CXX object _deps/spdlog-build/CMakeFiles/spdlog.dir/src/file_sinks.cpp.o +2026-04-08T17:58:19.348900Z 01O cd /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/spdlog-build && /usr/bin/clang++-19 -DSPDLOG_COMPILED_LIB -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/spdlog-src/include -stdlib=libc++ -g -fPIC -std=c++17 -MD -MT _deps/spdlog-build/CMakeFiles/spdlog.dir/src/file_sinks.cpp.o -MF CMakeFiles/spdlog.dir/src/file_sinks.cpp.o.d -o CMakeFiles/spdlog.dir/src/file_sinks.cpp.o -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/spdlog-src/src/file_sinks.cpp +2026-04-08T17:58:19.849419Z 01O Copying components/atomic_win32_polyfill.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components/atomic_win32_polyfill.h +2026-04-08T17:58:19.849436Z 01O Copying components/container_id/container_id.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components/container_id/container_id.c +2026-04-08T17:58:19.849442Z 01O Copying components/container_id/container_id.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components/container_id/container_id.h +2026-04-08T17:58:19.849496Z 01O Copying components/log/log.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components/log/log.c +2026-04-08T17:58:19.849505Z 01O Copying components/log/log.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components/log/log.h +2026-04-08T17:58:19.849513Z 01O Copying components/pthread_polyfill.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components/pthread_polyfill.h +2026-04-08T17:58:19.849518Z 01O Copying components/sapi/sapi.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components/sapi/sapi.c +2026-04-08T17:58:19.849522Z 01O Copying components/sapi/sapi.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components/sapi/sapi.h +2026-04-08T17:58:19.849544Z 01O Copying components/stack-sample/stack-sample.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components/stack-sample/stack-sample.c +2026-04-08T17:58:19.849558Z 01O Copying components/stack-sample/stack-sample.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components/stack-sample/stack-sample.h +2026-04-08T17:58:19.849568Z 01O Copying components/string_view/string_view.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components/string_view/string_view.c +2026-04-08T17:58:19.849578Z 01O Copying components/string_view/string_view.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components/string_view/string_view.h +2026-04-08T17:58:19.849583Z 01O Copying components-rs/common.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/common.h +2026-04-08T17:58:19.849589Z 01O Copying components-rs/crashtracker.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/crashtracker.h +2026-04-08T17:58:19.849596Z 01O Copying components-rs/ddtrace.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/ddtrace.h +2026-04-08T17:58:19.849600Z 01O Copying components-rs/library-config.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/library-config.h +2026-04-08T17:58:19.849607Z 01O Copying components-rs/live-debugger.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/live-debugger.h +2026-04-08T17:58:19.849615Z 01O Copying components-rs/sidecar.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/sidecar.h +2026-04-08T17:58:19.849619Z 01O Copying components-rs/telemetry.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/telemetry.h +2026-04-08T17:58:19.849639Z 01O Copying ext/agent_info.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/agent_info.c +2026-04-08T17:58:19.849651Z 01O Copying ext/agent_info.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/agent_info.h +2026-04-08T17:58:19.849656Z 01O Copying ext/arrays.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/arrays.c +2026-04-08T17:58:19.849662Z 01O Copying ext/arrays.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/arrays.h +2026-04-08T17:58:19.849668Z 01O Copying ext/asm_event.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/asm_event.c +2026-04-08T17:58:19.849672Z 01O Copying ext/asm_event.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/asm_event.h +2026-04-08T17:58:19.849677Z 01O Copying ext/auto_flush.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/auto_flush.c +2026-04-08T17:58:19.849683Z 01O Copying ext/auto_flush.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/auto_flush.h +2026-04-08T17:58:19.849697Z 01O Copying ext/autoload_php_files.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/autoload_php_files.c +2026-04-08T17:58:19.849703Z 01O Copying ext/autoload_php_files.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/autoload_php_files.h +2026-04-08T17:58:19.849711Z 01O Copying ext/code_origins.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/code_origins.c +2026-04-08T17:58:19.849721Z 01O Copying ext/code_origins.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/code_origins.h +2026-04-08T17:58:19.849727Z 01O Copying ext/collect_backtrace.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/collect_backtrace.c +2026-04-08T17:58:19.849748Z 01O Copying ext/collect_backtrace.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/collect_backtrace.h +2026-04-08T17:58:20.350243Z 01O Copying ext/comms_php.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/comms_php.c +2026-04-08T17:58:20.350254Z 01O Copying ext/comms_php.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/comms_php.h +2026-04-08T17:58:20.350261Z 01O Copying ext/compat_getrandom.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/compat_getrandom.c +2026-04-08T17:58:20.350269Z 01O Copying ext/compat_string.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/compat_string.c +2026-04-08T17:58:20.350274Z 01O Copying ext/compat_string.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/compat_string.h +2026-04-08T17:58:20.350279Z 01O Copying ext/compatibility.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/compatibility.h +2026-04-08T17:58:20.350287Z 01O Copying ext/coms.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/coms.c +2026-04-08T17:58:20.350294Z 01O Copying ext/coms.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/coms.h +2026-04-08T17:58:20.350300Z 01O [ 40%] Building CXX object _deps/spdlog-build/CMakeFiles/spdlog.dir/src/async.cpp.o +2026-04-08T17:58:20.350314Z 01O cd /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/spdlog-build && /usr/bin/clang++-19 -DSPDLOG_COMPILED_LIB -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/spdlog-src/include -stdlib=libc++ -g -fPIC -std=c++17 -MD -MT _deps/spdlog-build/CMakeFiles/spdlog.dir/src/async.cpp.o -MF CMakeFiles/spdlog.dir/src/async.cpp.o.d -o CMakeFiles/spdlog.dir/src/async.cpp.o -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/spdlog-src/src/async.cpp +2026-04-08T17:58:20.350327Z 01O Copying ext/configuration.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/configuration.c +2026-04-08T17:58:20.350334Z 01O Copying ext/configuration.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/configuration.h +2026-04-08T17:58:20.350361Z 01O Copying ext/crashtracking_frames.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/crashtracking_frames.c +2026-04-08T17:58:20.350376Z 01O Copying ext/crashtracking_frames.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/crashtracking_frames.h +2026-04-08T17:58:20.350386Z 01O Copying ext/crashtracking_windows.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/crashtracking_windows.c +2026-04-08T17:58:20.350395Z 01O Copying ext/crashtracking_windows.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/crashtracking_windows.h +2026-04-08T17:58:20.350400Z 01O Copying ext/ddshared.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/ddshared.c +2026-04-08T17:58:20.350405Z 01O Copying ext/ddshared.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/ddshared.h +2026-04-08T17:58:20.350451Z 01O Copying ext/ddtrace.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/ddtrace.c +2026-04-08T17:58:20.350462Z 01O Copying ext/ddtrace.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/ddtrace.h +2026-04-08T17:58:20.350477Z 01O Copying ext/ddtrace_arginfo.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/ddtrace_arginfo.h +2026-04-08T17:58:20.350492Z 01O Copying ext/ddtrace_export.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/ddtrace_export.h +2026-04-08T17:58:20.350502Z 01O Copying ext/ddtrace_string.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/ddtrace_string.h +2026-04-08T17:58:20.350510Z 01O Copying ext/distributed_tracing_headers.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/distributed_tracing_headers.c +2026-04-08T17:58:20.350520Z 01O Copying ext/distributed_tracing_headers.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/distributed_tracing_headers.h +2026-04-08T17:58:20.350525Z 01O Copying ext/dogstatsd.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/dogstatsd.c +2026-04-08T17:58:20.350531Z 01O Copying ext/dogstatsd.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/dogstatsd.h +2026-04-08T17:58:20.350538Z 01O Copying ext/dogstatsd_client.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/dogstatsd_client.c +2026-04-08T17:58:20.350543Z 01O Copying ext/dogstatsd_client.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/dogstatsd_client.h +2026-04-08T17:58:20.350550Z 01O Copying ext/endpoint_guessing.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/endpoint_guessing.c +2026-04-08T17:58:20.350558Z 01O Copying ext/endpoint_guessing.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/endpoint_guessing.h +2026-04-08T17:58:20.350564Z 01O Copying ext/engine_api.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/engine_api.c +2026-04-08T17:58:20.350570Z 01O Copying ext/engine_api.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/engine_api.h +2026-04-08T17:58:20.350605Z 01O Copying ext/engine_hooks.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/engine_hooks.c +2026-04-08T17:58:20.350619Z 01O Copying ext/engine_hooks.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/engine_hooks.h +2026-04-08T17:58:20.350626Z 01O Copying ext/exception_serialize.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/exception_serialize.c +2026-04-08T17:58:20.350636Z 01O Copying ext/exception_serialize.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/exception_serialize.h +2026-04-08T17:58:20.350641Z 01O Copying ext/excluded_modules.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/excluded_modules.c +2026-04-08T17:58:20.350646Z 01O Copying ext/excluded_modules.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/excluded_modules.h +2026-04-08T17:58:20.350654Z 01O Copying ext/git.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/git.c +2026-04-08T17:58:20.851301Z 01O Copying ext/git.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/git.h +2026-04-08T17:58:20.851320Z 01O Copying ext/handlers_api.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_api.c +2026-04-08T17:58:20.851326Z 01O Copying ext/handlers_api.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_api.h +2026-04-08T17:58:20.851377Z 01O Copying ext/handlers_curl.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_curl.c +2026-04-08T17:58:20.851384Z 01O make -f CMakeFiles/extension.dir/build.make CMakeFiles/extension.dir/depend +2026-04-08T17:58:20.851422Z 01O Copying ext/handlers_curl_php7.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_curl_php7.c +2026-04-08T17:58:20.851437Z 01O make[3]: Entering directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' +2026-04-08T17:58:20.851453Z 01O cd /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build && /opt/cmake/3.24.4/bin/cmake -E cmake_depends "Unix Makefiles" /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/CMakeFiles/extension.dir/DependInfo.cmake --color= +2026-04-08T17:58:20.851463Z 01O make[3]: Leaving directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' +2026-04-08T17:58:20.851467Z 01O make -f CMakeFiles/extension.dir/build.make CMakeFiles/extension.dir/build +2026-04-08T17:58:20.851471Z 01O make[3]: Entering directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' +2026-04-08T17:58:20.851482Z 01O [ 40%] Building C object CMakeFiles/extension.dir/src/extension/backtrace.c.o +2026-04-08T17:58:20.851500Z 01O /usr/bin/clang-19 -DMPACK_BUFFER_SIZE=32 -DMPACK_DEBUG=1 -DMPACK_HAS_CONFIG=1 -DRAPIDJSON_HAS_STDSTRING=1 -DTESTING=1 -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -D_GNU_SOURCE -Dextension_EXPORTS -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/../../ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/../src/extension/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/rapidjson-src/include -isystem /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/../zend_abstract_interface -isystem /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/ext_root_includes -isystem /opt/php/debug/include/php -isystem /opt/php/debug/include/php/main -isystem /opt/php/debug/include/php/TSRM -isystem /opt/php/debug/include/php/Zend -isystem /opt/php/debug/include/php/ext -isystem /opt/php/debug/include/php/ext/date/lib -isystem /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2/install/include/libxml2 -g -fPIC -fvisibility=hidden -Wall -Wextra -pedantic -Werror -Wno-nullability-extension -Wno-gnu-zero-variadic-macro-arguments -Wno-gnu-auto-type -Wno-language-extension-token -ftls-model=local-dynamic -fprofile-instr-generate -fcoverage-mapping -mllvm -runtime-counter-relocation=true -std=gnu11 -MD -MT CMakeFiles/extension.dir/src/extension/backtrace.c.o -MF CMakeFiles/extension.dir/src/extension/backtrace.c.o.d -o CMakeFiles/extension.dir/src/extension/backtrace.c.o -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/backtrace.c +2026-04-08T17:58:20.851513Z 01O Copying ext/handlers_exception.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_exception.c +2026-04-08T17:58:20.851519Z 01O Copying ext/handlers_exception.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_exception.h +2026-04-08T17:58:20.851548Z 01O Copying ext/handlers_fiber.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_fiber.c +2026-04-08T17:58:20.851564Z 01O Copying ext/handlers_fiber.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_fiber.h +2026-04-08T17:58:20.851574Z 01O Copying ext/handlers_http.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_http.h +2026-04-08T17:58:20.851609Z 01O Copying ext/handlers_httpstreams.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_httpstreams.c +2026-04-08T17:58:20.851614Z 01O Copying ext/handlers_internal.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_internal.c +2026-04-08T17:58:20.851619Z 01O Copying ext/handlers_internal.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_internal.h +2026-04-08T17:58:20.851626Z 01O Copying ext/handlers_kafka.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_kafka.c +2026-04-08T17:58:20.851638Z 01O Copying ext/handlers_pcntl.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_pcntl.c +2026-04-08T17:58:20.851645Z 01O Copying ext/handlers_signal.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_signal.c +2026-04-08T17:58:20.851652Z 01O Copying ext/hook/uhook.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/hook/uhook.c +2026-04-08T17:58:20.851656Z 01O Copying ext/hook/uhook.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/hook/uhook.h +2026-04-08T17:58:20.851661Z 01O Copying ext/hook/uhook_arginfo.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/hook/uhook_arginfo.h +2026-04-08T17:58:20.851669Z 01O Copying ext/hook/uhook_attributes.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/hook/uhook_attributes.c +2026-04-08T17:58:20.851674Z 01O Copying ext/hook/uhook_attributes_arginfo.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/hook/uhook_attributes_arginfo.h +2026-04-08T17:58:20.851681Z 01O Copying ext/hook/uhook_legacy.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/hook/uhook_legacy.c +2026-04-08T17:58:20.851689Z 01O Copying ext/hook/uhook_otel.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/hook/uhook_otel.c +2026-04-08T17:58:20.851693Z 01O [ 46%] Building C object CMakeFiles/extension.dir/src/extension/commands/client_init.c.o +2026-04-08T17:58:20.851714Z 01O /usr/bin/clang-19 -DMPACK_BUFFER_SIZE=32 -DMPACK_DEBUG=1 -DMPACK_HAS_CONFIG=1 -DRAPIDJSON_HAS_STDSTRING=1 -DTESTING=1 -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -D_GNU_SOURCE -Dextension_EXPORTS -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/../../ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/../src/extension/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/rapidjson-src/include -isystem /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/../zend_abstract_interface -isystem /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/ext_root_includes -isystem /opt/php/debug/include/php -isystem /opt/php/debug/include/php/main -isystem /opt/php/debug/include/php/TSRM -isystem /opt/php/debug/include/php/Zend -isystem /opt/php/debug/include/php/ext -isystem /opt/php/debug/include/php/ext/date/lib -isystem /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2/install/include/libxml2 -g -fPIC -fvisibility=hidden -Wall -Wextra -pedantic -Werror -Wno-nullability-extension -Wno-gnu-zero-variadic-macro-arguments -Wno-gnu-auto-type -Wno-language-extension-token -ftls-model=local-dynamic -fprofile-instr-generate -fcoverage-mapping -mllvm -runtime-counter-relocation=true -std=gnu11 -MD -MT CMakeFiles/extension.dir/src/extension/commands/client_init.c.o -MF CMakeFiles/extension.dir/src/extension/commands/client_init.c.o.d -o CMakeFiles/extension.dir/src/extension/commands/client_init.c.o -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/commands/client_init.c +2026-04-08T17:58:20.851732Z 01O Copying ext/inferred_proxy_headers.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/inferred_proxy_headers.c +2026-04-08T17:58:20.851747Z 01O Copying ext/inferred_proxy_headers.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/inferred_proxy_headers.h +2026-04-08T17:58:20.851755Z 01O Copying ext/integrations/exec_integration.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations/exec_integration.c +2026-04-08T17:58:20.851764Z 01O Copying ext/integrations/exec_integration.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations/exec_integration.h +2026-04-08T17:58:20.851769Z 01O [ 46%] Building CXX object _deps/spdlog-build/CMakeFiles/spdlog.dir/src/cfg.cpp.o +2026-04-08T17:58:20.851780Z 01O cd /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/spdlog-build && /usr/bin/clang++-19 -DSPDLOG_COMPILED_LIB -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/spdlog-src/include -stdlib=libc++ -g -fPIC -std=c++17 -MD -MT _deps/spdlog-build/CMakeFiles/spdlog.dir/src/cfg.cpp.o -MF CMakeFiles/spdlog.dir/src/cfg.cpp.o.d -o CMakeFiles/spdlog.dir/src/cfg.cpp.o -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/spdlog-src/src/cfg.cpp +2026-04-08T17:58:20.851791Z 01O Copying ext/integrations/exec_integration_arginfo.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations/exec_integration_arginfo.h +2026-04-08T17:58:20.851796Z 01O Copying ext/integrations/integrations.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations/integrations.c +2026-04-08T17:58:20.851803Z 01O Copying ext/integrations/integrations.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations/integrations.h +2026-04-08T17:58:20.851820Z 01O Copying ext/ip_extraction.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/ip_extraction.c +2026-04-08T17:58:20.851827Z 01O Copying ext/ip_extraction.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/ip_extraction.h +2026-04-08T17:58:20.851833Z 01O Copying ext/limiter/limiter.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/limiter/limiter.c +2026-04-08T17:58:20.851841Z 01O Copying ext/limiter/limiter.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/limiter/limiter.h +2026-04-08T17:58:20.851847Z 01O Copying ext/live_debugger.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/live_debugger.c +2026-04-08T17:58:20.851853Z 01O Copying ext/live_debugger.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/live_debugger.h +2026-04-08T17:58:21.351775Z 01O Copying ext/logging.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/logging.c +2026-04-08T17:58:21.351790Z 01O Copying ext/logging.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/logging.h +2026-04-08T17:58:21.351798Z 01O Copying ext/macros.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/macros.h +2026-04-08T17:58:21.351819Z 01O Copying ext/memory_limit.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/memory_limit.c +2026-04-08T17:58:21.351838Z 01O [ 46%] Building C object CMakeFiles/extension.dir/src/extension/commands/config_sync.c.o +2026-04-08T17:58:21.351860Z 01O /usr/bin/clang-19 -DMPACK_BUFFER_SIZE=32 -DMPACK_DEBUG=1 -DMPACK_HAS_CONFIG=1 -DRAPIDJSON_HAS_STDSTRING=1 -DTESTING=1 -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -D_GNU_SOURCE -Dextension_EXPORTS -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/../../ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/../src/extension/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/rapidjson-src/include -isystem /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/../zend_abstract_interface -isystem /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/ext_root_includes -isystem /opt/php/debug/include/php -isystem /opt/php/debug/include/php/main -isystem /opt/php/debug/include/php/TSRM -isystem /opt/php/debug/include/php/Zend -isystem /opt/php/debug/include/php/ext -isystem /opt/php/debug/include/php/ext/date/lib -isystem /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2/install/include/libxml2 -g -fPIC -fvisibility=hidden -Wall -Wextra -pedantic -Werror -Wno-nullability-extension -Wno-gnu-zero-variadic-macro-arguments -Wno-gnu-auto-type -Wno-language-extension-token -ftls-model=local-dynamic -fprofile-instr-generate -fcoverage-mapping -mllvm -runtime-counter-relocation=true -std=gnu11 -MD -MT CMakeFiles/extension.dir/src/extension/commands/config_sync.c.o -MF CMakeFiles/extension.dir/src/extension/commands/config_sync.c.o.d -o CMakeFiles/extension.dir/src/extension/commands/config_sync.c.o -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/commands/config_sync.c +2026-04-08T17:58:21.351913Z 01O Copying ext/memory_limit.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/memory_limit.h +2026-04-08T17:58:21.351921Z 01O Copying ext/otel_config.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/otel_config.c +2026-04-08T17:58:21.351929Z 01O Copying ext/otel_config.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/otel_config.h +2026-04-08T17:58:21.351935Z 01O Copying ext/priority_sampling/priority_sampling.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/priority_sampling/priority_sampling.c +2026-04-08T17:58:21.351942Z 01O Copying ext/priority_sampling/priority_sampling.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/priority_sampling/priority_sampling.h +2026-04-08T17:58:21.351954Z 01O Copying ext/process_tags.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/process_tags.c +2026-04-08T17:58:21.351959Z 01O Copying ext/process_tags.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/process_tags.h +2026-04-08T17:58:21.351964Z 01O Copying ext/profiling.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/profiling.c +2026-04-08T17:58:21.351971Z 01O Copying ext/profiling.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/profiling.h +2026-04-08T17:58:21.351975Z 01O Copying ext/random.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/random.c +2026-04-08T17:58:21.351980Z 01O Copying ext/random.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/random.h +2026-04-08T17:58:21.351986Z 01O Copying ext/remote_config.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/remote_config.c +2026-04-08T17:58:21.351994Z 01O Copying ext/remote_config.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/remote_config.h +2026-04-08T17:58:21.351998Z 01O Copying ext/serializer.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/serializer.c +2026-04-08T17:58:21.352003Z 01O Copying ext/serializer.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/serializer.h +2026-04-08T17:58:21.352009Z 01O Copying ext/sidecar.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/sidecar.c +2026-04-08T17:58:21.352015Z 01O Copying ext/sidecar.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/sidecar.h +2026-04-08T17:58:21.352031Z 01O Copying ext/signals.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/signals.c +2026-04-08T17:58:21.352041Z 01O Copying ext/signals.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/signals.h +2026-04-08T17:58:21.352065Z 01O Copying ext/span.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/span.c +2026-04-08T17:58:21.352071Z 01O [ 46%] Building C object CMakeFiles/extension.dir/src/extension/commands/request_exec.c.o +2026-04-08T17:58:21.352094Z 01O /usr/bin/clang-19 -DMPACK_BUFFER_SIZE=32 -DMPACK_DEBUG=1 -DMPACK_HAS_CONFIG=1 -DRAPIDJSON_HAS_STDSTRING=1 -DTESTING=1 -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -D_GNU_SOURCE -Dextension_EXPORTS -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/../../ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/../src/extension/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/rapidjson-src/include -isystem /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/../zend_abstract_interface -isystem /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/ext_root_includes -isystem /opt/php/debug/include/php -isystem /opt/php/debug/include/php/main -isystem /opt/php/debug/include/php/TSRM -isystem /opt/php/debug/include/php/Zend -isystem /opt/php/debug/include/php/ext -isystem /opt/php/debug/include/php/ext/date/lib -isystem /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2/install/include/libxml2 -g -fPIC -fvisibility=hidden -Wall -Wextra -pedantic -Werror -Wno-nullability-extension -Wno-gnu-zero-variadic-macro-arguments -Wno-gnu-auto-type -Wno-language-extension-token -ftls-model=local-dynamic -fprofile-instr-generate -fcoverage-mapping -mllvm -runtime-counter-relocation=true -std=gnu11 -MD -MT CMakeFiles/extension.dir/src/extension/commands/request_exec.c.o -MF CMakeFiles/extension.dir/src/extension/commands/request_exec.c.o.d -o CMakeFiles/extension.dir/src/extension/commands/request_exec.c.o -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/commands/request_exec.c +2026-04-08T17:58:21.352105Z 01O Copying ext/span.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/span.h +2026-04-08T17:58:21.352111Z 01O Copying ext/standalone_limiter.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/standalone_limiter.c +2026-04-08T17:58:21.352117Z 01O Copying ext/standalone_limiter.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/standalone_limiter.h +2026-04-08T17:58:21.352124Z 01O Copying ext/startup_logging.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/startup_logging.c +2026-04-08T17:58:21.352130Z 01O Copying ext/startup_logging.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/startup_logging.h +2026-04-08T17:58:21.352146Z 01O Copying ext/telemetry.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/telemetry.c +2026-04-08T17:58:21.352154Z 01O Copying ext/telemetry.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/telemetry.h +2026-04-08T17:58:21.352160Z 01O Copying ext/threads.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/threads.c +2026-04-08T17:58:21.352166Z 01O Copying ext/threads.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/threads.h +2026-04-08T17:58:21.852495Z 01O Copying ext/trace_source.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/trace_source.c +2026-04-08T17:58:21.852507Z 01O Copying ext/trace_source.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/trace_source.h +2026-04-08T17:58:21.852516Z 01O Copying ext/tracer_tag_propagation/tracer_tag_propagation.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/tracer_tag_propagation/tracer_tag_propagation.c +2026-04-08T17:58:21.852526Z 01O Copying ext/tracer_tag_propagation/tracer_tag_propagation.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/tracer_tag_propagation/tracer_tag_propagation.h +2026-04-08T17:58:21.852584Z 01O Copying ext/uri_normalization.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/uri_normalization.h +2026-04-08T17:58:21.852593Z 01O [ 46%] Building C object CMakeFiles/extension.dir/src/extension/commands/request_init.c.o +2026-04-08T17:58:21.852618Z 01O /usr/bin/clang-19 -DMPACK_BUFFER_SIZE=32 -DMPACK_DEBUG=1 -DMPACK_HAS_CONFIG=1 -DRAPIDJSON_HAS_STDSTRING=1 -DTESTING=1 -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -D_GNU_SOURCE -Dextension_EXPORTS -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/../../ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/../src/extension/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/rapidjson-src/include -isystem /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/../zend_abstract_interface -isystem /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/ext_root_includes -isystem /opt/php/debug/include/php -isystem /opt/php/debug/include/php/main -isystem /opt/php/debug/include/php/TSRM -isystem /opt/php/debug/include/php/Zend -isystem /opt/php/debug/include/php/ext -isystem /opt/php/debug/include/php/ext/date/lib -isystem /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2/install/include/libxml2 -g -fPIC -fvisibility=hidden -Wall -Wextra -pedantic -Werror -Wno-nullability-extension -Wno-gnu-zero-variadic-macro-arguments -Wno-gnu-auto-type -Wno-language-extension-token -ftls-model=local-dynamic -fprofile-instr-generate -fcoverage-mapping -mllvm -runtime-counter-relocation=true -std=gnu11 -MD -MT CMakeFiles/extension.dir/src/extension/commands/request_init.c.o -MF CMakeFiles/extension.dir/src/extension/commands/request_init.c.o.d -o CMakeFiles/extension.dir/src/extension/commands/request_init.c.o -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/commands/request_init.c +2026-04-08T17:58:21.852630Z 01O Copying ext/user_request.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/user_request.c +2026-04-08T17:58:21.852637Z 01O Copying ext/user_request.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/user_request.h +2026-04-08T17:58:21.852645Z 01O Copying ext/vendor/mpack/mpack.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack/mpack.c +2026-04-08T17:58:21.852655Z 01O Copying ext/vendor/mpack/mpack.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack/mpack.h +2026-04-08T17:58:21.852661Z 01O Copying ext/vendor/mt19937/mt19937-64.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937/mt19937-64.c +2026-04-08T17:58:21.852670Z 01O Copying ext/vendor/mt19937/mt19937-64.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937/mt19937-64.h +2026-04-08T17:58:21.852674Z 01O Copying ext/weak_resources.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/weak_resources.c +2026-04-08T17:58:21.852679Z 01O Copying ext/weak_resources.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/weak_resources.h +2026-04-08T17:58:21.852686Z 01O Copying ext/weakrefs.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/weakrefs.c +2026-04-08T17:58:21.852690Z 01O Copying ext/zend_hrtime.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/zend_hrtime.c +2026-04-08T17:58:21.852695Z 01O Copying ext/zend_hrtime.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/zend_hrtime.h +2026-04-08T17:58:21.852703Z 01O Copying src/dogstatsd/client.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd/client.c +2026-04-08T17:58:21.852708Z 01O Copying src/dogstatsd/dogstatsd_client/client.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd/dogstatsd_client/client.h +2026-04-08T17:58:21.852737Z 01O Copying zend_abstract_interface/config/config.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/config.c +2026-04-08T17:58:21.852776Z 01O Copying zend_abstract_interface/config/config.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/config.h +2026-04-08T17:58:21.852790Z 01O Copying zend_abstract_interface/config/config_decode.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/config_decode.c +2026-04-08T17:58:21.852797Z 01O Copying zend_abstract_interface/config/config_decode.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/config_decode.h +2026-04-08T17:58:21.852805Z 01O [ 53%] Building C object CMakeFiles/extension.dir/src/extension/commands/request_shutdown.c.o +2026-04-08T17:58:21.852823Z 01O /usr/bin/clang-19 -DMPACK_BUFFER_SIZE=32 -DMPACK_DEBUG=1 -DMPACK_HAS_CONFIG=1 -DRAPIDJSON_HAS_STDSTRING=1 -DTESTING=1 -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -D_GNU_SOURCE -Dextension_EXPORTS -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/../../ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/../src/extension/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/rapidjson-src/include -isystem /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/../zend_abstract_interface -isystem /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/ext_root_includes -isystem /opt/php/debug/include/php -isystem /opt/php/debug/include/php/main -isystem /opt/php/debug/include/php/TSRM -isystem /opt/php/debug/include/php/Zend -isystem /opt/php/debug/include/php/ext -isystem /opt/php/debug/include/php/ext/date/lib -isystem /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2/install/include/libxml2 -g -fPIC -fvisibility=hidden -Wall -Wextra -pedantic -Werror -Wno-nullability-extension -Wno-gnu-zero-variadic-macro-arguments -Wno-gnu-auto-type -Wno-language-extension-token -ftls-model=local-dynamic -fprofile-instr-generate -fcoverage-mapping -mllvm -runtime-counter-relocation=true -std=gnu11 -MD -MT CMakeFiles/extension.dir/src/extension/commands/request_shutdown.c.o -MF CMakeFiles/extension.dir/src/extension/commands/request_shutdown.c.o.d -o CMakeFiles/extension.dir/src/extension/commands/request_shutdown.c.o -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/commands/request_shutdown.c +2026-04-08T17:58:21.852837Z 01O Copying zend_abstract_interface/config/config_ini.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/config_ini.c +2026-04-08T17:58:21.852845Z 01O Copying zend_abstract_interface/config/config_ini.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/config_ini.h +2026-04-08T17:58:21.852851Z 01O Copying zend_abstract_interface/config/config_runtime.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/config_runtime.c +2026-04-08T17:58:21.852865Z 01O Copying zend_abstract_interface/config/config_stable_file.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/config_stable_file.c +2026-04-08T17:58:21.852877Z 01O Copying zend_abstract_interface/config/config_stable_file.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/config_stable_file.h +2026-04-08T17:58:21.852887Z 01O Copying zend_abstract_interface/config/tests/config_test_helpers.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/tests/config_test_helpers.h +2026-04-08T17:58:22.353271Z 01O Copying zend_abstract_interface/config/tests/ext_zai_config.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/tests/ext_zai_config.h +2026-04-08T17:58:22.353333Z 01O Copying zend_abstract_interface/env/env.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/env/env.c +2026-04-08T17:58:22.353340Z 01O Copying zend_abstract_interface/env/env.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/env/env.h +2026-04-08T17:58:22.353368Z 01O Copying zend_abstract_interface/exceptions/exceptions.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/exceptions/exceptions.c +2026-04-08T17:58:22.353386Z 01O [ 53%] Building CXX object _deps/spdlog-build/CMakeFiles/spdlog.dir/src/bundled_fmtlib_format.cpp.o +2026-04-08T17:58:22.353402Z 01O cd /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/spdlog-build && /usr/bin/clang++-19 -DSPDLOG_COMPILED_LIB -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/spdlog-src/include -stdlib=libc++ -g -fPIC -std=c++17 -MD -MT _deps/spdlog-build/CMakeFiles/spdlog.dir/src/bundled_fmtlib_format.cpp.o -MF CMakeFiles/spdlog.dir/src/bundled_fmtlib_format.cpp.o.d -o CMakeFiles/spdlog.dir/src/bundled_fmtlib_format.cpp.o -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/spdlog-src/src/bundled_fmtlib_format.cpp +2026-04-08T17:58:22.353414Z 01O Copying zend_abstract_interface/exceptions/exceptions.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/exceptions/exceptions.h +2026-04-08T17:58:22.353419Z 01O Copying zend_abstract_interface/headers/headers.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/headers/headers.c +2026-04-08T17:58:22.353425Z 01O Copying zend_abstract_interface/headers/headers.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/headers/headers.h +2026-04-08T17:58:22.353433Z 01O Copying zend_abstract_interface/hook/hook.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/hook/hook.c +2026-04-08T17:58:22.353437Z 01O Copying zend_abstract_interface/hook/hook.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/hook/hook.h +2026-04-08T17:58:22.353441Z 01O [ 53%] Building C object CMakeFiles/extension.dir/src/extension/commands_helpers.c.o +2026-04-08T17:58:22.353464Z 01O /usr/bin/clang-19 -DMPACK_BUFFER_SIZE=32 -DMPACK_DEBUG=1 -DMPACK_HAS_CONFIG=1 -DRAPIDJSON_HAS_STDSTRING=1 -DTESTING=1 -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -D_GNU_SOURCE -Dextension_EXPORTS -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/../../ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/../src/extension/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/rapidjson-src/include -isystem /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/../zend_abstract_interface -isystem /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/ext_root_includes -isystem /opt/php/debug/include/php -isystem /opt/php/debug/include/php/main -isystem /opt/php/debug/include/php/TSRM -isystem /opt/php/debug/include/php/Zend -isystem /opt/php/debug/include/php/ext -isystem /opt/php/debug/include/php/ext/date/lib -isystem /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2/install/include/libxml2 -g -fPIC -fvisibility=hidden -Wall -Wextra -pedantic -Werror -Wno-nullability-extension -Wno-gnu-zero-variadic-macro-arguments -Wno-gnu-auto-type -Wno-language-extension-token -ftls-model=local-dynamic -fprofile-instr-generate -fcoverage-mapping -mllvm -runtime-counter-relocation=true -std=gnu11 -MD -MT CMakeFiles/extension.dir/src/extension/commands_helpers.c.o -MF CMakeFiles/extension.dir/src/extension/commands_helpers.c.o.d -o CMakeFiles/extension.dir/src/extension/commands_helpers.c.o -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/commands_helpers.c +2026-04-08T17:58:22.353508Z 01O Copying zend_abstract_interface/hook/table.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/hook/table.h +2026-04-08T17:58:22.353515Z 01O Copying zend_abstract_interface/interceptor/php7/interceptor.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/interceptor/php7/interceptor.c +2026-04-08T17:58:22.353540Z 01O Copying zend_abstract_interface/interceptor/php7/interceptor.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/interceptor/php7/interceptor.h +2026-04-08T17:58:22.353555Z 01O Copying zend_abstract_interface/interceptor/php7/resolver.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/interceptor/php7/resolver.c +2026-04-08T17:58:22.353568Z 01O Copying zend_abstract_interface/interceptor/php8/interceptor.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/interceptor/php8/interceptor.c +2026-04-08T17:58:22.353589Z 01O Copying zend_abstract_interface/interceptor/php8/interceptor.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/interceptor/php8/interceptor.h +2026-04-08T17:58:22.353600Z 01O Copying zend_abstract_interface/interceptor/php8/resolver.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/interceptor/php8/resolver.c +2026-04-08T17:58:22.353607Z 01O Copying zend_abstract_interface/interceptor/php8/resolver_pre-8_2.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/interceptor/php8/resolver_pre-8_2.c +2026-04-08T17:58:22.353632Z 01O Copying zend_abstract_interface/jit_utils/is_mapped.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/jit_utils/is_mapped.h +2026-04-08T17:58:22.353646Z 01O Copying zend_abstract_interface/jit_utils/jit_blacklist.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/jit_utils/jit_blacklist.c +2026-04-08T17:58:22.353653Z 01O Copying zend_abstract_interface/jit_utils/jit_blacklist.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/jit_utils/jit_blacklist.h +2026-04-08T17:58:22.353662Z 01O Copying zend_abstract_interface/json/json.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/json/json.c +2026-04-08T17:58:22.353666Z 01O Copying zend_abstract_interface/json/json.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/json/json.h +2026-04-08T17:58:22.353671Z 01O Copying zend_abstract_interface/sandbox/call.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/sandbox/call.c +2026-04-08T17:58:22.353681Z 01O Copying zend_abstract_interface/sandbox/php7/sandbox.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/sandbox/php7/sandbox.c +2026-04-08T17:58:22.353685Z 01O Copying zend_abstract_interface/sandbox/php8/sandbox.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/sandbox/php8/sandbox.c +2026-04-08T17:58:22.353691Z 01O Copying zend_abstract_interface/sandbox/sandbox.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/sandbox/sandbox.h +2026-04-08T17:58:22.353704Z 01O Copying zend_abstract_interface/tsrmls_cache.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/tsrmls_cache.h +2026-04-08T17:58:22.353709Z 01O [ 53%] Building C object CMakeFiles/extension.dir/src/extension/configuration.c.o +2026-04-08T17:58:22.353761Z 01O /usr/bin/clang-19 -DMPACK_BUFFER_SIZE=32 -DMPACK_DEBUG=1 -DMPACK_HAS_CONFIG=1 -DRAPIDJSON_HAS_STDSTRING=1 -DTESTING=1 -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -D_GNU_SOURCE -Dextension_EXPORTS -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/../../ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/../src/extension/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/rapidjson-src/include -isystem /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/../zend_abstract_interface -isystem /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/ext_root_includes -isystem /opt/php/debug/include/php -isystem /opt/php/debug/include/php/main -isystem /opt/php/debug/include/php/TSRM -isystem /opt/php/debug/include/php/Zend -isystem /opt/php/debug/include/php/ext -isystem /opt/php/debug/include/php/ext/date/lib -isystem /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2/install/include/libxml2 -g -fPIC -fvisibility=hidden -Wall -Wextra -pedantic -Werror -Wno-nullability-extension -Wno-gnu-zero-variadic-macro-arguments -Wno-gnu-auto-type -Wno-language-extension-token -ftls-model=local-dynamic -fprofile-instr-generate -fcoverage-mapping -mllvm -runtime-counter-relocation=true -std=gnu11 -MD -MT CMakeFiles/extension.dir/src/extension/configuration.c.o -MF CMakeFiles/extension.dir/src/extension/configuration.c.o.d -o CMakeFiles/extension.dir/src/extension/configuration.c.o -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/configuration.c +2026-04-08T17:58:22.353776Z 01O [ 53%] Building C object CMakeFiles/extension.dir/src/extension/ddappsec.c.o +2026-04-08T17:58:22.353818Z 01O /usr/bin/clang-19 -DMPACK_BUFFER_SIZE=32 -DMPACK_DEBUG=1 -DMPACK_HAS_CONFIG=1 -DRAPIDJSON_HAS_STDSTRING=1 -DTESTING=1 -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -D_GNU_SOURCE -Dextension_EXPORTS -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/../../ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/../src/extension/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/rapidjson-src/include -isystem /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/../zend_abstract_interface -isystem /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/ext_root_includes -isystem /opt/php/debug/include/php -isystem /opt/php/debug/include/php/main -isystem /opt/php/debug/include/php/TSRM -isystem /opt/php/debug/include/php/Zend -isystem /opt/php/debug/include/php/ext -isystem /opt/php/debug/include/php/ext/date/lib -isystem /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2/install/include/libxml2 -g -fPIC -fvisibility=hidden -Wall -Wextra -pedantic -Werror -Wno-nullability-extension -Wno-gnu-zero-variadic-macro-arguments -Wno-gnu-auto-type -Wno-language-extension-token -ftls-model=local-dynamic -fprofile-instr-generate -fcoverage-mapping -mllvm -runtime-counter-relocation=true -std=gnu11 -MD -MT CMakeFiles/extension.dir/src/extension/ddappsec.c.o -MF CMakeFiles/extension.dir/src/extension/ddappsec.c.o.d -o CMakeFiles/extension.dir/src/extension/ddappsec.c.o -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/ddappsec.c +2026-04-08T17:58:22.353832Z 01O Copying zend_abstract_interface/uri_normalization/uri_normalization.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/uri_normalization/uri_normalization.c +2026-04-08T17:58:22.353838Z 01O Copying zend_abstract_interface/uri_normalization/uri_normalization.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/uri_normalization/uri_normalization.h +2026-04-08T17:58:22.353846Z 01O Copying zend_abstract_interface/zai_assert/zai_assert.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/zai_assert/zai_assert.h +2026-04-08T17:58:22.353873Z 01O Copying zend_abstract_interface/zai_string/string.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/zai_string/string.c +2026-04-08T17:58:22.853753Z 01O Copying zend_abstract_interface/zai_string/string.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/zai_string/string.h +2026-04-08T17:58:22.853765Z 01O Copying Cargo.toml to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/Cargo.toml +2026-04-08T17:58:22.853775Z 01O sed -i -E 's/, "profiling",?//' /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/Cargo.toml +2026-04-08T17:58:22.853799Z 01O Copying Cargo.lock to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/Cargo.lock +2026-04-08T17:58:22.853814Z 01O Copying components-rs/Cargo.toml to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/Cargo.toml +2026-04-08T17:58:22.853822Z 01O sed -i -E 's/"\.\.\/([^"]*)"/"..\/..\/..\/\1"/' /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/Cargo.toml +2026-04-08T17:58:22.853842Z 01O Copying components-rs/bytes.rs to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/bytes.rs +2026-04-08T17:58:22.853855Z 01O Copying components-rs/lib.rs to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/lib.rs +2026-04-08T17:58:22.853862Z 01O Copying components-rs/log.rs to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/log.rs +2026-04-08T17:58:22.853888Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/configuration.c:60:1: error: passing no argument for the '...' parameter of a variadic macro is a C23 extension [-Werror,-Wc23-extensions] +2026-04-08T17:58:22.853901Z 01O 60 | DD_CONFIGURATION +2026-04-08T17:58:22.853905Z 01O | ^ +2026-04-08T17:58:22.853912Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/configuration.h:78:5: note: expanded from macro 'DD_CONFIGURATION' +2026-04-08T17:58:22.853915Z 01O 78 | DD_CONFIGURATION_GENERAL \ +2026-04-08T17:58:22.853919Z 01O | ^ +2026-04-08T17:58:22.853925Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/configuration.h:68:12: note: expanded from macro 'DD_CONFIGURATION_GENERAL' +2026-04-08T17:58:22.853929Z 01O 68 | CALIASES("DD_APPSEC_AUTOMATED_USER_EVENTS_TRACKING"), .parser = dd_parse_user_collection_mode) \ +2026-04-08T17:58:22.853934Z 01O | ^ +2026-04-08T17:58:22.853941Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/configuration.c:55:23: note: expanded from macro 'CALIASES' +2026-04-08T17:58:22.853944Z 01O 55 | #define CALIASES(...) APPLY_N(ELEMENT, ##__VA_ARGS__) +2026-04-08T17:58:22.853947Z 01O | ^ +2026-04-08T17:58:22.853953Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/configuration.c:32:26: note: expanded from macro 'APPLY_N' +2026-04-08T17:58:22.853957Z 01O 32 | (macro, ##__VA_ARGS__) +2026-04-08T17:58:22.853960Z 01O | ^ +2026-04-08T17:58:22.853975Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/configuration.c:23:9: note: macro 'APPLY_1' defined here +2026-04-08T17:58:22.853987Z 01O 23 | #define APPLY_1(macro, arg, ...) macro(arg) +2026-04-08T17:58:22.853994Z 01O | ^ +2026-04-08T17:58:22.854003Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/configuration.c:70:1: error: passing no argument for the '...' parameter of a variadic macro is a C23 extension [-Werror,-Wc23-extensions] +2026-04-08T17:58:22.854006Z 01O 70 | DD_CONFIGURATION +2026-04-08T17:58:22.854009Z 01O | ^ +2026-04-08T17:58:22.854059Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/configuration.h:78:5: note: expanded from macro 'DD_CONFIGURATION' +2026-04-08T17:58:22.854106Z 01O 78 | DD_CONFIGURATION_GENERAL \ +2026-04-08T17:58:22.854111Z 01O | ^ +2026-04-08T17:58:22.854136Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/configuration.h:68:12: note: expanded from macro 'DD_CONFIGURATION_GENERAL' +2026-04-08T17:58:22.854140Z 01O 68 | CALIASES("DD_APPSEC_AUTOMATED_USER_EVENTS_TRACKING"), .parser = dd_parse_user_collection_mode) \ +2026-04-08T17:58:22.854145Z 01O | ^ +2026-04-08T17:58:22.854153Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/configuration.c:68:23: note: expanded from macro 'CALIASES' +2026-04-08T17:58:22.854158Z 01O 68 | #define CALIASES(...) APPLY_N(CALIAS_CHECK_LENGTH, ##__VA_ARGS__) +2026-04-08T17:58:22.854163Z 01O | ^ +2026-04-08T17:58:22.854169Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/configuration.c:32:26: note: expanded from macro 'APPLY_N' +2026-04-08T17:58:22.854172Z 01O 32 | (macro, ##__VA_ARGS__) +2026-04-08T17:58:22.854176Z 01O | ^ +2026-04-08T17:58:22.854182Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/configuration.c:23:9: note: macro 'APPLY_1' defined here +2026-04-08T17:58:22.854185Z 01O 23 | #define APPLY_1(macro, arg, ...) macro(arg) +2026-04-08T17:58:22.854188Z 01O | ^ +2026-04-08T17:58:22.854196Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/configuration.c:102:45: error: passing no argument for the '...' parameter of a variadic macro is a C23 extension [-Werror,-Wc23-extensions] +2026-04-08T17:58:22.854200Z 01O 102 | static zai_config_entry config_entries[] = {DD_CONFIGURATION}; +2026-04-08T17:58:22.854203Z 01O | ^ +2026-04-08T17:58:22.854210Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/configuration.h:78:5: note: expanded from macro 'DD_CONFIGURATION' +2026-04-08T17:58:22.854213Z 01O 78 | DD_CONFIGURATION_GENERAL \ +2026-04-08T17:58:22.854217Z 01O | ^ +2026-04-08T17:58:22.854223Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/configuration.h:68:12: note: expanded from macro 'DD_CONFIGURATION_GENERAL' +2026-04-08T17:58:22.854227Z 01O 68 | CALIASES("DD_APPSEC_AUTOMATED_USER_EVENTS_TRACKING"), .parser = dd_parse_user_collection_mode) \ +2026-04-08T17:58:22.854231Z 01O | ^ +2026-04-08T17:58:22.854236Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/configuration.c:97:36: note: expanded from macro 'CALIASES' +2026-04-08T17:58:22.854240Z 01O 97 | #define CALIASES(...) ((zai_str[]){APPLY_N(CALIAS_EXPAND, ##__VA_ARGS__)}) +2026-04-08T17:58:22.854243Z 01O | ^ +2026-04-08T17:58:22.854249Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/configuration.c:32:26: note: expanded from macro 'APPLY_N' +2026-04-08T17:58:22.854252Z 01O 32 | (macro, ##__VA_ARGS__) +2026-04-08T17:58:22.854256Z 01O | ^ +2026-04-08T17:58:22.854264Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/configuration.c:23:9: note: macro 'APPLY_1' defined here +2026-04-08T17:58:22.854267Z 01O 23 | #define APPLY_1(macro, arg, ...) macro(arg) +2026-04-08T17:58:22.854270Z 01O | ^ +2026-04-08T17:58:22.854278Z 01O Copying components-rs/php_sidecar_mockgen/Cargo.toml to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/php_sidecar_mockgen/Cargo.toml +2026-04-08T17:58:22.854282Z 01O 3 errors generated. +2026-04-08T17:58:22.854287Z 01O sed -i -E 's/"\.\.\/([^"]*)"/"..\/..\/..\/\1"/' /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/php_sidecar_mockgen/Cargo.toml +2026-04-08T17:58:22.854322Z 01O make[3]: *** [CMakeFiles/extension.dir/build.make:174: CMakeFiles/extension.dir/src/extension/configuration.c.o] Error 1 +2026-04-08T17:58:22.854328Z 01O make[3]: *** Waiting for unfinished jobs.... +2026-04-08T17:58:22.854337Z 01O Copying components-rs/php_sidecar_mockgen/src/bin/php_sidecar_mockgen.rs to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/php_sidecar_mockgen/src/bin/php_sidecar_mockgen.rs +2026-04-08T17:58:22.854342Z 01O Copying components-rs/remote_config.rs to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/remote_config.rs +2026-04-08T17:58:22.854347Z 01O Copying components-rs/sidecar.rs to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/sidecar.rs +2026-04-08T17:58:22.854354Z 01O make[3]: Leaving directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' +2026-04-08T17:58:22.854357Z 01O make[2]: *** [CMakeFiles/Makefile2:449: CMakeFiles/extension.dir/all] Error 2 +2026-04-08T17:58:22.854361Z 01O make[2]: *** Waiting for unfinished jobs.... +2026-04-08T17:58:22.854368Z 01O Copying components-rs/telemetry.rs to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/telemetry.rs +2026-04-08T17:58:22.854372Z 01O Copying m4/ax_execinfo.m4 to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/m4/ax_execinfo.m4 +2026-04-08T17:58:22.854377Z 01O Copying m4/polyfill.m4 to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/m4/polyfill.m4 +2026-04-08T17:58:22.854384Z 01O Copying m4/threads.m4 to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/m4/threads.m4 +2026-04-08T17:58:22.854389Z 01O Copying config.m4 to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/config.m4 +2026-04-08T17:58:22.854394Z 01O Copying ddtrace.sym to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ddtrace.sym +2026-04-08T17:58:22.854400Z 01O Copying VERSION to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/VERSION +2026-04-08T17:58:23.354430Z 01O Configuring for: +2026-04-08T17:58:23.354438Z 01O PHP Api Version: 20230831 +2026-04-08T17:58:23.354442Z 01O Zend Module Api No: 20230831 +2026-04-08T17:58:23.354448Z 01O Zend Extension Api No: 420230831 +2026-04-08T17:58:23.855193Z 01O [ 53%] Linking CXX static library libspdlogd.a +2026-04-08T17:58:23.855252Z 01O cd /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/spdlog-build && /opt/cmake/3.24.4/bin/cmake -P CMakeFiles/spdlog.dir/cmake_clean_target.cmake +2026-04-08T17:58:23.855264Z 01O cd /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/spdlog-build && /opt/cmake/3.24.4/bin/cmake -E cmake_link_script CMakeFiles/spdlog.dir/link.txt --verbose=1 +2026-04-08T17:58:23.855275Z 01O /usr/bin/llvm-ar-19 qc libspdlogd.a CMakeFiles/spdlog.dir/src/spdlog.cpp.o CMakeFiles/spdlog.dir/src/stdout_sinks.cpp.o CMakeFiles/spdlog.dir/src/color_sinks.cpp.o CMakeFiles/spdlog.dir/src/file_sinks.cpp.o CMakeFiles/spdlog.dir/src/async.cpp.o CMakeFiles/spdlog.dir/src/cfg.cpp.o CMakeFiles/spdlog.dir/src/bundled_fmtlib_format.cpp.o +2026-04-08T17:58:23.855280Z 01O /usr/bin/llvm-ranlib-19 libspdlogd.a +2026-04-08T17:58:23.855286Z 01O make[3]: Leaving directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' +2026-04-08T17:58:23.855294Z 01O [ 53%] Built target spdlog +2026-04-08T17:58:23.855300Z 01O checking for grep that handles long lines and -e... /usr/bin/grep +2026-04-08T17:58:23.855428Z 01O checking for egrep... /usr/bin/grep -E +2026-04-08T17:58:23.855448Z 01O checking for a sed that does not truncate output... /usr/bin/sed +2026-04-08T17:58:23.855457Z 01O checking for pkg-config... /usr/bin/pkg-config +2026-04-08T17:58:23.855473Z 01O checking pkg-config is at least version 0.9.0... yes +2026-04-08T17:58:23.855481Z 01O checking for cc... cc +2026-04-08T17:58:23.855524Z 01O checking whether the C compiler works... yes +2026-04-08T17:58:24.355406Z 01O checking for C compiler default output file name... a.out +2026-04-08T17:58:24.355412Z 01O checking for suffix of executables... +2026-04-08T17:58:24.355419Z 01O checking whether we are cross compiling... no +2026-04-08T17:58:24.355421Z 01O checking for suffix of object files... o +2026-04-08T17:58:24.355425Z 01O checking whether the compiler supports GNU C... yes +2026-04-08T17:58:24.355431Z 01O checking whether cc accepts -g... yes +2026-04-08T17:58:24.355433Z 01O checking for cc option to enable C11 features... none needed +2026-04-08T17:58:24.355438Z 01O checking how to run the C preprocessor... cc -E +2026-04-08T17:58:24.856196Z 01O checking for icc... no +2026-04-08T17:58:24.856211Z 01O checking for suncc... no +2026-04-08T17:58:24.856218Z 01O checking for system library directory... lib +2026-04-08T17:58:24.856221Z 01O checking if compiler supports -Wl,-rpath,... yes +2026-04-08T17:58:24.856226Z 01O checking build system type... x86_64-pc-linux-gnu +2026-04-08T17:58:24.856231Z 01O checking host system type... x86_64-pc-linux-gnu +2026-04-08T17:58:24.856236Z 01O checking target system type... x86_64-pc-linux-gnu +2026-04-08T17:58:24.856241Z 01O checking for PHP prefix... /opt/php/debug +2026-04-08T17:58:24.856250Z 01O checking for PHP includes... -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib +2026-04-08T17:58:24.856255Z 01O checking for PHP extension directory... /opt/php/debug/lib/php/extensions/debug-non-zts-20230831 +2026-04-08T17:58:24.856259Z 01O checking for PHP installed headers prefix... /opt/php/debug/include/php +2026-04-08T17:58:24.856265Z 01O checking if debug is enabled... yes +2026-04-08T17:58:24.856268Z 01O checking if zts is enabled... no +2026-04-08T17:58:24.856271Z 01O checking for gawk... no +2026-04-08T17:58:24.856276Z 01O checking for nawk... nawk +2026-04-08T17:58:24.856279Z 01O checking if nawk is broken... no +2026-04-08T17:58:24.856283Z 01O checking whether to enable Datadog tracing support... yes, shared +2026-04-08T17:58:24.856312Z 01O checking whether to enable AddressSanitizer for ddtrace... no +2026-04-08T17:58:24.856325Z 01O checking the rust library is located; i.e. to compile without cargo... - +2026-04-08T17:58:24.856331Z 01O checking binary to generate mock_php.c... - +2026-04-08T17:58:24.856342Z 01O checking where cargo is located for rust code compilation... cargo +2026-04-08T17:58:25.359773Z 01O checking whether to compile rust in debug mode... no +2026-04-08T17:58:25.359793Z 01O checking whether to not link the rust library against the extension at compile time... no +2026-04-08T17:58:25.359799Z 01O checking for stdio.h... yes +2026-04-08T17:58:25.359804Z 01O checking for stdlib.h... yes +2026-04-08T17:58:25.359807Z 01O checking for string.h... yes +2026-04-08T17:58:25.359811Z 01O checking for inttypes.h... yes +2026-04-08T17:58:25.359816Z 01O checking for stdint.h... yes +2026-04-08T17:58:25.359818Z 01O checking for strings.h... yes +2026-04-08T17:58:25.359822Z 01O checking for sys/stat.h... yes +2026-04-08T17:58:25.359826Z 01O checking for sys/types.h... yes +2026-04-08T17:58:25.359829Z 01O checking for unistd.h... yes +2026-04-08T17:58:25.359833Z 01O checking size of long... 8 +2026-04-08T17:58:25.858340Z 01O checking for 64-bit platform... yes +2026-04-08T17:58:25.858347Z 01O checking for execinfo.h... yes +2026-04-08T17:58:25.858352Z 01O checking size parameter type for backtrace()... int +2026-04-08T17:58:25.858355Z 01O checking for library containing backtrace... none required +2026-04-08T17:58:25.858359Z 01O checking for backtrace in -lexecinfo... no +2026-04-08T17:58:25.858365Z 01O checking for linux/securebits.h... yes +2026-04-08T17:58:25.858367Z 01O checking for linux/capability.h... yes +2026-04-08T17:58:26.359179Z 01O checking for valgrind/valgrind.h... yes +2026-04-08T17:58:26.359187Z 01O checking for objdir... .libs +2026-04-08T17:58:26.359250Z 01O checking for cargo... cargo +2026-04-08T17:58:26.359263Z 01O checking for automake... automake +2026-04-08T17:58:26.359268Z 01O checking for libtool... no +2026-04-08T17:58:26.359291Z 01O checking for libtoolize... libtoolize +2026-04-08T17:58:26.359304Z 01O checking whether --undefined-version is a valid linker argument... checking for a sed that does not truncate output... /usr/bin/sed +2026-04-08T17:58:26.359317Z 01O checking whether --undefined-version is a valid linker argument... yes +2026-04-08T17:58:26.359333Z 01O checking whether -Wno-microsoft-anon-tag is a valid compiler argument... yes +2026-04-08T17:58:26.359343Z 01O checking for cos in -lm... yes +2026-04-08T17:58:26.859381Z 01O checking for pthreads_cflags... -pthread +2026-04-08T17:58:26.859387Z 01O checking for pthreads_lib... pthread +2026-04-08T17:58:26.859432Z 01O checking for shm_open in -lrt... yes +2026-04-08T17:58:26.859445Z 01O checking for curl_easy_setopt in -lcurl... yes +2026-04-08T17:58:26.859452Z 01O checking for time.h... yes +2026-04-08T17:58:27.360237Z 01O checking for ld used by cc... /usr/bin/ld +2026-04-08T17:58:27.360247Z 01O checking if the linker (/usr/bin/ld) is GNU ld... yes +2026-04-08T17:58:27.360251Z 01O checking for /usr/bin/ld option to reload object files... -r +2026-04-08T17:58:27.360256Z 01O checking for BSD-compatible nm... /usr/bin/nm -B +2026-04-08T17:58:27.360259Z 01O checking whether ln -s works... yes +2026-04-08T17:58:27.360263Z 01O checking how to recognize dependent libraries... pass_all +2026-04-08T17:58:27.360272Z 01O checking for dlfcn.h... yes +2026-04-08T17:58:27.360284Z 01O checking the maximum length of command line arguments... 1572864 +2026-04-08T17:58:27.860591Z 01O checking command to parse /usr/bin/nm -B output from cc object... ok +2026-04-08T17:58:27.860605Z 01O checking for objdir... (cached) .libs +2026-04-08T17:58:27.860611Z 01O checking for ar... ar +2026-04-08T17:58:27.860614Z 01O checking for ranlib... ranlib +2026-04-08T17:58:27.860617Z 01O checking for strip... strip +2026-04-08T17:58:27.860622Z 01O checking if cc supports -fno-rtti -fno-exceptions... yes +2026-04-08T17:58:27.860625Z 01O checking for cc option to produce PIC... -fPIC +2026-04-08T17:58:27.860629Z 01O checking if cc PIC flag -fPIC works... yes +2026-04-08T17:58:27.860639Z 01O checking if cc static flag -static works... yes +2026-04-08T17:58:28.361206Z 01O checking if cc supports -c -o file.o... yes +2026-04-08T17:58:28.361215Z 01O checking whether the cc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes +2026-04-08T17:58:28.361223Z 01O checking whether -lc should be explicitly linked in... no +2026-04-08T17:58:28.361225Z 01O checking dynamic linker characteristics... GNU/Linux ld.so +2026-04-08T17:58:28.361230Z 01O checking how to hardcode library paths into programs... immediate +2026-04-08T17:58:28.361235Z 01O checking whether stripping libraries is possible... yes +2026-04-08T17:58:28.361238Z 01O checking if libtool supports shared libraries... yes +2026-04-08T17:58:28.361242Z 01O checking whether to build shared libraries... yes +2026-04-08T17:58:28.361247Z 01O checking whether to build static libraries... no +2026-04-08T17:58:28.862896Z 01O +2026-04-08T17:58:28.862929Z 01O creating libtool +2026-04-08T17:58:28.862937Z 01O appending configuration tag "CXX" to libtool +2026-04-08T17:58:28.862944Z 01O configure: patching config.h.in +2026-04-08T17:58:28.862955Z 01O configure: creating ./config.status +2026-04-08T17:58:28.862960Z 01O config.status: creating config.h +2026-04-08T17:58:28.862967Z 01O Copying compile_rust.sh to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/compile_rust.sh +2026-04-08T17:58:29.362677Z 01O make[5]: Entering directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension' +2026-04-08T17:58:29.362692Z 01O (cd "/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension"; CARGO_TARGET_DIR=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/target/ SHARED=1 PROFILE="tracer-release" host_os="linux-gnu" DDTRACE_CARGO="cargo" sh ./compile_rust.sh ) +2026-04-08T17:58:29.362762Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components/container_id/container_id.c -o components/container_id/container_id.lo -MMD -MF components/container_id/container_id.dep -MT components/container_id/container_id.lo +2026-04-08T17:58:29.362798Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components/log/log.c -o components/log/log.lo -MMD -MF components/log/log.dep -MT components/log/log.lo +2026-04-08T17:58:29.362834Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components/sapi/sapi.c -o components/sapi/sapi.lo -MMD -MF components/sapi/sapi.dep -MT components/sapi/sapi.lo +2026-04-08T17:58:29.362876Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components/string_view/string_view.c -o components/string_view/string_view.lo -MMD -MF components/string_view/string_view.dep -MT components/string_view/string_view.lo +2026-04-08T17:58:29.362912Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/interceptor/php8/interceptor.c -o zend_abstract_interface/interceptor/php8/interceptor.lo -MMD -MF zend_abstract_interface/interceptor/php8/interceptor.dep -MT zend_abstract_interface/interceptor/php8/interceptor.lo +2026-04-08T17:58:29.362951Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/interceptor/php8/resolver.c -o zend_abstract_interface/interceptor/php8/resolver.lo -MMD -MF zend_abstract_interface/interceptor/php8/resolver.dep -MT zend_abstract_interface/interceptor/php8/resolver.lo +2026-04-08T17:58:29.362989Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/jit_utils/jit_blacklist.c -o zend_abstract_interface/jit_utils/jit_blacklist.lo -MMD -MF zend_abstract_interface/jit_utils/jit_blacklist.dep -MT zend_abstract_interface/jit_utils/jit_blacklist.lo +2026-04-08T17:58:29.363006Z 01O + test -n +2026-04-08T17:58:29.363045Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/sandbox/php8/sandbox.c -o zend_abstract_interface/sandbox/php8/sandbox.lo -MMD -MF zend_abstract_interface/sandbox/php8/sandbox.dep -MT zend_abstract_interface/sandbox/php8/sandbox.lo +2026-04-08T17:58:29.363068Z 01O + test tracer-release = debug +2026-04-08T17:58:29.363073Z 01O + echo --profile tracer-release +2026-04-08T17:58:29.363105Z 01O + cat ../VERSION +2026-04-08T17:58:29.363136Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/config.c -o zend_abstract_interface/config/config.lo -MMD -MF zend_abstract_interface/config/config.dep -MT zend_abstract_interface/config/config.lo +2026-04-08T17:58:29.363209Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/config_decode.c -o zend_abstract_interface/config/config_decode.lo -MMD -MF zend_abstract_interface/config/config_decode.dep -MT zend_abstract_interface/config/config_decode.lo +2026-04-08T17:58:29.363246Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/config_ini.c -o zend_abstract_interface/config/config_ini.lo -MMD -MF zend_abstract_interface/config/config_ini.dep -MT zend_abstract_interface/config/config_ini.lo +2026-04-08T17:58:29.363270Z 01O + SIDECAR_VERSION=1.17.1 RUSTFLAGS= --cfg tokio_unstable --cfg php_shared_build RUSTC_BOOTSTRAP=1 cargo build --profile tracer-release +2026-04-08T17:58:29.363314Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/config_stable_file.c -o zend_abstract_interface/config/config_stable_file.lo -MMD -MF zend_abstract_interface/config/config_stable_file.dep -MT zend_abstract_interface/config/config_stable_file.lo +2026-04-08T17:58:29.363358Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/config_runtime.c -o zend_abstract_interface/config/config_runtime.lo -MMD -MF zend_abstract_interface/config/config_runtime.dep -MT zend_abstract_interface/config/config_runtime.lo +2026-04-08T17:58:29.363415Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/env/env.c -o zend_abstract_interface/env/env.lo -MMD -MF zend_abstract_interface/env/env.dep -MT zend_abstract_interface/env/env.lo +2026-04-08T17:58:29.363454Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/exceptions/exceptions.c -o zend_abstract_interface/exceptions/exceptions.lo -MMD -MF zend_abstract_interface/exceptions/exceptions.dep -MT zend_abstract_interface/exceptions/exceptions.lo +2026-04-08T17:58:29.363501Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/headers/headers.c -o zend_abstract_interface/headers/headers.lo -MMD -MF zend_abstract_interface/headers/headers.dep -MT zend_abstract_interface/headers/headers.lo +2026-04-08T17:58:29.363534Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/hook/hook.c -o zend_abstract_interface/hook/hook.lo -MMD -MF zend_abstract_interface/hook/hook.dep -MT zend_abstract_interface/hook/hook.lo +2026-04-08T17:58:29.363577Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/json/json.c -o zend_abstract_interface/json/json.lo -MMD -MF zend_abstract_interface/json/json.dep -MT zend_abstract_interface/json/json.lo +2026-04-08T17:58:29.363609Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/sandbox/call.c -o zend_abstract_interface/sandbox/call.lo -MMD -MF zend_abstract_interface/sandbox/call.dep -MT zend_abstract_interface/sandbox/call.lo +2026-04-08T17:58:29.363651Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/uri_normalization/uri_normalization.c -o zend_abstract_interface/uri_normalization/uri_normalization.lo -MMD -MF zend_abstract_interface/uri_normalization/uri_normalization.dep -MT zend_abstract_interface/uri_normalization/uri_normalization.lo +2026-04-08T17:58:29.363689Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/zai_string/string.c -o zend_abstract_interface/zai_string/string.lo -MMD -MF zend_abstract_interface/zai_string/string.dep -MT zend_abstract_interface/zai_string/string.lo +2026-04-08T17:58:29.363729Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack/mpack.c -o ext/vendor/mpack/mpack.lo -MMD -MF ext/vendor/mpack/mpack.dep -MT ext/vendor/mpack/mpack.lo +2026-04-08T17:58:29.363769Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937/mt19937-64.c -o ext/vendor/mt19937/mt19937-64.lo -MMD -MF ext/vendor/mt19937/mt19937-64.dep -MT ext/vendor/mt19937/mt19937-64.lo +2026-04-08T17:58:29.363813Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd/client.c -o src/dogstatsd/client.lo -MMD -MF src/dogstatsd/client.dep -MT src/dogstatsd/client.lo +2026-04-08T17:58:29.363875Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_curl.c -o ext/handlers_curl.lo -MMD -MF ext/handlers_curl.dep -MT ext/handlers_curl.lo +2026-04-08T17:58:29.363922Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/hook/uhook_attributes.c -o ext/hook/uhook_attributes.lo -MMD -MF ext/hook/uhook_attributes.dep -MT ext/hook/uhook_attributes.lo +2026-04-08T17:58:29.363958Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/hook/uhook_otel.c -o ext/hook/uhook_otel.lo -MMD -MF ext/hook/uhook_otel.dep -MT ext/hook/uhook_otel.lo +2026-04-08T17:58:29.363998Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_fiber.c -o ext/handlers_fiber.lo -MMD -MF ext/handlers_fiber.dep -MT ext/handlers_fiber.lo +2026-04-08T17:58:29.364053Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/ddtrace.c -o ext/ddtrace.lo -MMD -MF ext/ddtrace.dep -MT ext/ddtrace.lo +2026-04-08T17:58:29.364107Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/agent_info.c -o ext/agent_info.lo -MMD -MF ext/agent_info.dep -MT ext/agent_info.lo +2026-04-08T17:58:29.364142Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/asm_event.c -o ext/asm_event.lo -MMD -MF ext/asm_event.dep -MT ext/asm_event.lo +2026-04-08T17:58:29.364182Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/arrays.c -o ext/arrays.lo -MMD -MF ext/arrays.dep -MT ext/arrays.lo +2026-04-08T17:58:29.364218Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/auto_flush.c -o ext/auto_flush.lo -MMD -MF ext/auto_flush.dep -MT ext/auto_flush.lo +2026-04-08T17:58:29.364267Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/autoload_php_files.c -o ext/autoload_php_files.lo -MMD -MF ext/autoload_php_files.dep -MT ext/autoload_php_files.lo +2026-04-08T17:58:29.364306Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/code_origins.c -o ext/code_origins.lo -MMD -MF ext/code_origins.dep -MT ext/code_origins.lo +2026-04-08T17:58:29.364364Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/collect_backtrace.c -o ext/collect_backtrace.lo -MMD -MF ext/collect_backtrace.dep -MT ext/collect_backtrace.lo +2026-04-08T17:58:29.364405Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/comms_php.c -o ext/comms_php.lo -MMD -MF ext/comms_php.dep -MT ext/comms_php.lo +2026-04-08T17:58:29.364442Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/compat_string.c -o ext/compat_string.lo -MMD -MF ext/compat_string.dep -MT ext/compat_string.lo +2026-04-08T17:58:29.364484Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/coms.c -o ext/coms.lo -MMD -MF ext/coms.dep -MT ext/coms.lo +2026-04-08T17:58:29.364519Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/configuration.c -o ext/configuration.lo -MMD -MF ext/configuration.dep -MT ext/configuration.lo +2026-04-08T17:58:29.364577Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/crashtracking_frames.c -o ext/crashtracking_frames.lo -MMD -MF ext/crashtracking_frames.dep -MT ext/crashtracking_frames.lo +2026-04-08T17:58:29.364598Z 01O warning: /go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-crashtracker-ffi/Cargo.toml: unused manifest key: target.cfg(windows).features +2026-04-08T17:58:29.364631Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/ddshared.c -o ext/ddshared.lo -MMD -MF ext/ddshared.dep -MT ext/ddshared.lo +2026-04-08T17:58:29.364678Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/distributed_tracing_headers.c -o ext/distributed_tracing_headers.lo -MMD -MF ext/distributed_tracing_headers.dep -MT ext/distributed_tracing_headers.lo +2026-04-08T17:58:29.364714Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/dogstatsd.c -o ext/dogstatsd.lo -MMD -MF ext/dogstatsd.dep -MT ext/dogstatsd.lo +2026-04-08T17:58:29.364767Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/dogstatsd_client.c -o ext/dogstatsd_client.lo -MMD -MF ext/dogstatsd_client.dep -MT ext/dogstatsd_client.lo +2026-04-08T17:58:29.364810Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/endpoint_guessing.c -o ext/endpoint_guessing.lo -MMD -MF ext/endpoint_guessing.dep -MT ext/endpoint_guessing.lo +2026-04-08T17:58:29.364857Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/engine_api.c -o ext/engine_api.lo -MMD -MF ext/engine_api.dep -MT ext/engine_api.lo +2026-04-08T17:58:29.364897Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/engine_hooks.c -o ext/engine_hooks.lo -MMD -MF ext/engine_hooks.dep -MT ext/engine_hooks.lo +2026-04-08T17:58:29.364947Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/exception_serialize.c -o ext/exception_serialize.lo -MMD -MF ext/exception_serialize.dep -MT ext/exception_serialize.lo +2026-04-08T17:58:29.364988Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/excluded_modules.c -o ext/excluded_modules.lo -MMD -MF ext/excluded_modules.dep -MT ext/excluded_modules.lo +2026-04-08T17:58:29.365042Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/git.c -o ext/git.lo -MMD -MF ext/git.dep -MT ext/git.lo +2026-04-08T17:58:29.365085Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_api.c -o ext/handlers_api.lo -MMD -MF ext/handlers_api.dep -MT ext/handlers_api.lo +2026-04-08T17:58:29.365135Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_exception.c -o ext/handlers_exception.lo -MMD -MF ext/handlers_exception.dep -MT ext/handlers_exception.lo +2026-04-08T17:58:29.365174Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_httpstreams.c -o ext/handlers_httpstreams.lo -MMD -MF ext/handlers_httpstreams.dep -MT ext/handlers_httpstreams.lo +2026-04-08T17:58:29.365209Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_internal.c -o ext/handlers_internal.lo -MMD -MF ext/handlers_internal.dep -MT ext/handlers_internal.lo +2026-04-08T17:58:29.365259Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_kafka.c -o ext/handlers_kafka.lo -MMD -MF ext/handlers_kafka.dep -MT ext/handlers_kafka.lo +2026-04-08T17:58:29.365294Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_pcntl.c -o ext/handlers_pcntl.lo -MMD -MF ext/handlers_pcntl.dep -MT ext/handlers_pcntl.lo +2026-04-08T17:58:29.365346Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_signal.c -o ext/handlers_signal.lo -MMD -MF ext/handlers_signal.dep -MT ext/handlers_signal.lo +2026-04-08T17:58:29.365382Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/inferred_proxy_headers.c -o ext/inferred_proxy_headers.lo -MMD -MF ext/inferred_proxy_headers.dep -MT ext/inferred_proxy_headers.lo +2026-04-08T17:58:29.365441Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations/exec_integration.c -o ext/integrations/exec_integration.lo -MMD -MF ext/integrations/exec_integration.dep -MT ext/integrations/exec_integration.lo +2026-04-08T17:58:29.365483Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations/integrations.c -o ext/integrations/integrations.lo -MMD -MF ext/integrations/integrations.dep -MT ext/integrations/integrations.lo +2026-04-08T17:58:29.365532Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/ip_extraction.c -o ext/ip_extraction.lo -MMD -MF ext/ip_extraction.dep -MT ext/ip_extraction.lo +2026-04-08T17:58:29.365593Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/standalone_limiter.c -o ext/standalone_limiter.lo -MMD -MF ext/standalone_limiter.dep -MT ext/standalone_limiter.lo +2026-04-08T17:58:29.365665Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/live_debugger.c -o ext/live_debugger.lo -MMD -MF ext/live_debugger.dep -MT ext/live_debugger.lo +2026-04-08T17:58:29.365705Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/logging.c -o ext/logging.lo -MMD -MF ext/logging.dep -MT ext/logging.lo +2026-04-08T17:58:29.365747Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/limiter/limiter.c -o ext/limiter/limiter.lo -MMD -MF ext/limiter/limiter.dep -MT ext/limiter/limiter.lo +2026-04-08T17:58:29.365782Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/memory_limit.c -o ext/memory_limit.lo -MMD -MF ext/memory_limit.dep -MT ext/memory_limit.lo +2026-04-08T17:58:29.365835Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/otel_config.c -o ext/otel_config.lo -MMD -MF ext/otel_config.dep -MT ext/otel_config.lo +2026-04-08T17:58:29.365872Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/priority_sampling/priority_sampling.c -o ext/priority_sampling/priority_sampling.lo -MMD -MF ext/priority_sampling/priority_sampling.dep -MT ext/priority_sampling/priority_sampling.lo +2026-04-08T17:58:29.365915Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/process_tags.c -o ext/process_tags.lo -MMD -MF ext/process_tags.dep -MT ext/process_tags.lo +2026-04-08T17:58:29.365951Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/profiling.c -o ext/profiling.lo -MMD -MF ext/profiling.dep -MT ext/profiling.lo +2026-04-08T17:58:29.365989Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/random.c -o ext/random.lo -MMD -MF ext/random.dep -MT ext/random.lo +2026-04-08T17:58:29.366035Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/remote_config.c -o ext/remote_config.lo -MMD -MF ext/remote_config.dep -MT ext/remote_config.lo +2026-04-08T17:58:29.366077Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/serializer.c -o ext/serializer.lo -MMD -MF ext/serializer.dep -MT ext/serializer.lo +2026-04-08T17:58:29.366137Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/sidecar.c -o ext/sidecar.lo -MMD -MF ext/sidecar.dep -MT ext/sidecar.lo +2026-04-08T17:58:29.366173Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/signals.c -o ext/signals.lo -MMD -MF ext/signals.dep -MT ext/signals.lo +2026-04-08T17:58:29.366219Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/span.c -o ext/span.lo -MMD -MF ext/span.dep -MT ext/span.lo +2026-04-08T17:58:29.366256Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/startup_logging.c -o ext/startup_logging.lo -MMD -MF ext/startup_logging.dep -MT ext/startup_logging.lo +2026-04-08T17:58:29.366295Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/telemetry.c -o ext/telemetry.lo -MMD -MF ext/telemetry.dep -MT ext/telemetry.lo +2026-04-08T17:58:29.366333Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/threads.c -o ext/threads.lo -MMD -MF ext/threads.dep -MT ext/threads.lo +2026-04-08T17:58:29.366379Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/trace_source.c -o ext/trace_source.lo -MMD -MF ext/trace_source.dep -MT ext/trace_source.lo +2026-04-08T17:58:29.366419Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/tracer_tag_propagation/tracer_tag_propagation.c -o ext/tracer_tag_propagation/tracer_tag_propagation.lo -MMD -MF ext/tracer_tag_propagation/tracer_tag_propagation.dep -MT ext/tracer_tag_propagation/tracer_tag_propagation.lo +2026-04-08T17:58:29.366473Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/user_request.c -o ext/user_request.lo -MMD -MF ext/user_request.dep -MT ext/user_request.lo +2026-04-08T17:58:29.366508Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/weak_resources.c -o ext/weak_resources.lo -MMD -MF ext/weak_resources.dep -MT ext/weak_resources.lo +2026-04-08T17:58:29.366555Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/hook/uhook.c -o ext/hook/uhook.lo -MMD -MF ext/hook/uhook.dep -MT ext/hook/uhook.lo +2026-04-08T17:58:29.366592Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/hook/uhook_legacy.c -o ext/hook/uhook_legacy.lo -MMD -MF ext/hook/uhook_legacy.dep -MT ext/hook/uhook_legacy.lo +2026-04-08T17:58:29.366633Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/compat_getrandom.c -o ext/compat_getrandom.lo -MMD -MF ext/compat_getrandom.dep -MT ext/compat_getrandom.lo +2026-04-08T17:58:29.366650Z 01O make[5]: Circular //go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/mock_php.c <- //go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/mock_php.lo dependency dropped. +2026-04-08T17:58:29.366658Z 01O Updating crates.io index +2026-04-08T17:58:29.366661Z 01O mkdir zend_abstract_interface/interceptor/php8/.libs +2026-04-08T17:58:29.366687Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/interceptor/php8/resolver.c -MMD -MF zend_abstract_interface/interceptor/php8/resolver.dep -MT zend_abstract_interface/interceptor/php8/resolver.lo -fPIC -DPIC -o zend_abstract_interface/interceptor/php8/.libs/resolver.o +2026-04-08T17:58:29.864560Z 01O mkdir ext/vendor/mpack/.libs +2026-04-08T17:58:29.864601Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack/mpack.c -MMD -MF ext/vendor/mpack/mpack.dep -MT ext/vendor/mpack/mpack.lo -fPIC -DPIC -o ext/vendor/mpack/.libs/mpack.o +2026-04-08T17:58:29.864615Z 01O mkdir components/container_id/.libs +2026-04-08T17:58:29.864644Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components/container_id/container_id.c -MMD -MF components/container_id/container_id.dep -MT components/container_id/container_id.lo -fPIC -DPIC -o components/container_id/.libs/container_id.o +2026-04-08T17:58:29.864701Z 01O mkdir zend_abstract_interface/config/.libs +2026-04-08T17:58:29.864728Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/interceptor/php8/interceptor.c -MMD -MF zend_abstract_interface/interceptor/php8/interceptor.dep -MT zend_abstract_interface/interceptor/php8/interceptor.lo -fPIC -DPIC -o zend_abstract_interface/interceptor/php8/.libs/interceptor.o +2026-04-08T17:58:29.864740Z 01O mkdir ext/.libs +2026-04-08T17:58:29.864768Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/config_stable_file.c -MMD -MF zend_abstract_interface/config/config_stable_file.dep -MT zend_abstract_interface/config/config_stable_file.lo -fPIC -DPIC -o zend_abstract_interface/config/.libs/config_stable_file.o +2026-04-08T17:58:29.864787Z 01O mkdir components/sapi/.libs +2026-04-08T17:58:29.864792Z 01O mkdir zend_abstract_interface/exceptions/.libs +2026-04-08T17:58:29.864820Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components/sapi/sapi.c -MMD -MF components/sapi/sapi.dep -MT components/sapi/sapi.lo -fPIC -DPIC -o components/sapi/.libs/sapi.o +2026-04-08T17:58:29.864831Z 01O mkdir zend_abstract_interface/sandbox/php8/.libs +2026-04-08T17:58:29.864868Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_curl.c -MMD -MF ext/handlers_curl.dep -MT ext/handlers_curl.lo -fPIC -DPIC -o ext/.libs/handlers_curl.o +2026-04-08T17:58:29.864905Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/collect_backtrace.c -MMD -MF ext/collect_backtrace.dep -MT ext/collect_backtrace.lo -fPIC -DPIC -o ext/.libs/collect_backtrace.o +2026-04-08T17:58:29.864952Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/exceptions/exceptions.c -MMD -MF zend_abstract_interface/exceptions/exceptions.dep -MT zend_abstract_interface/exceptions/exceptions.lo -fPIC -DPIC -o zend_abstract_interface/exceptions/.libs/exceptions.o +2026-04-08T17:58:29.865001Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_fiber.c -MMD -MF ext/handlers_fiber.dep -MT ext/handlers_fiber.lo -fPIC -DPIC -o ext/.libs/handlers_fiber.o +2026-04-08T17:58:29.865090Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/sandbox/php8/sandbox.c -MMD -MF zend_abstract_interface/sandbox/php8/sandbox.dep -MT zend_abstract_interface/sandbox/php8/sandbox.lo -fPIC -DPIC -o zend_abstract_interface/sandbox/php8/.libs/sandbox.o +2026-04-08T17:58:29.865129Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/config_runtime.c -MMD -MF zend_abstract_interface/config/config_runtime.dep -MT zend_abstract_interface/config/config_runtime.lo -fPIC -DPIC -o zend_abstract_interface/config/.libs/config_runtime.o +2026-04-08T17:58:29.865166Z 01O mkdir zend_abstract_interface/hook/.libs +2026-04-08T17:58:29.865197Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/excluded_modules.c -MMD -MF ext/excluded_modules.dep -MT ext/excluded_modules.lo -fPIC -DPIC -o ext/.libs/excluded_modules.o +2026-04-08T17:58:29.865216Z 01O mkdir zend_abstract_interface/headers/.libs +2026-04-08T17:58:29.865241Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/hook/hook.c -MMD -MF zend_abstract_interface/hook/hook.dep -MT zend_abstract_interface/hook/hook.lo -fPIC -DPIC -o zend_abstract_interface/hook/.libs/hook.o +2026-04-08T17:58:29.865270Z 01O mkdir zend_abstract_interface/json/.libs +2026-04-08T17:58:29.865297Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/compat_string.c -MMD -MF ext/compat_string.dep -MT ext/compat_string.lo -fPIC -DPIC -o ext/.libs/compat_string.o +2026-04-08T17:58:29.865337Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/json/json.c -MMD -MF zend_abstract_interface/json/json.dep -MT zend_abstract_interface/json/json.lo -fPIC -DPIC -o zend_abstract_interface/json/.libs/json.o +2026-04-08T17:58:29.865361Z 01O mkdir ext/vendor/mt19937/.libs +2026-04-08T17:58:29.865367Z 01O mkdir components/log/.libs +2026-04-08T17:58:29.865389Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/asm_event.c -MMD -MF ext/asm_event.dep -MT ext/asm_event.lo -fPIC -DPIC -o ext/.libs/asm_event.o +2026-04-08T17:58:29.865408Z 01O mkdir zend_abstract_interface/env/.libs +2026-04-08T17:58:29.865432Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937/mt19937-64.c -MMD -MF ext/vendor/mt19937/mt19937-64.dep -MT ext/vendor/mt19937/mt19937-64.lo -fPIC -DPIC -o ext/vendor/mt19937/.libs/mt19937-64.o +2026-04-08T17:58:29.865484Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/exception_serialize.c -MMD -MF ext/exception_serialize.dep -MT ext/exception_serialize.lo -fPIC -DPIC -o ext/.libs/exception_serialize.o +2026-04-08T17:58:29.865520Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/config_decode.c -MMD -MF zend_abstract_interface/config/config_decode.dep -MT zend_abstract_interface/config/config_decode.lo -fPIC -DPIC -o zend_abstract_interface/config/.libs/config_decode.o +2026-04-08T17:58:29.865570Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components/log/log.c -MMD -MF components/log/log.dep -MT components/log/log.lo -fPIC -DPIC -o components/log/.libs/log.o +2026-04-08T17:58:29.865604Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/autoload_php_files.c -MMD -MF ext/autoload_php_files.dep -MT ext/autoload_php_files.lo -fPIC -DPIC -o ext/.libs/autoload_php_files.o +2026-04-08T17:58:29.865639Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/env/env.c -MMD -MF zend_abstract_interface/env/env.dep -MT zend_abstract_interface/env/env.lo -fPIC -DPIC -o zend_abstract_interface/env/.libs/env.o +2026-04-08T17:58:29.865665Z 01O mkdir src/dogstatsd/.libs +2026-04-08T17:58:29.865688Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_internal.c -MMD -MF ext/handlers_internal.dep -MT ext/handlers_internal.lo -fPIC -DPIC -o ext/.libs/handlers_internal.o +2026-04-08T17:58:29.865727Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/headers/headers.c -MMD -MF zend_abstract_interface/headers/headers.dep -MT zend_abstract_interface/headers/headers.lo -fPIC -DPIC -o zend_abstract_interface/headers/.libs/headers.o +2026-04-08T17:58:29.865748Z 01O mkdir zend_abstract_interface/jit_utils/.libs +2026-04-08T17:58:29.865777Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd/client.c -MMD -MF src/dogstatsd/client.dep -MT src/dogstatsd/client.lo -fPIC -DPIC -o src/dogstatsd/.libs/client.o +2026-04-08T17:58:29.865813Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/arrays.c -MMD -MF ext/arrays.dep -MT ext/arrays.lo -fPIC -DPIC -o ext/.libs/arrays.o +2026-04-08T17:58:29.865859Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/endpoint_guessing.c -MMD -MF ext/endpoint_guessing.dep -MT ext/endpoint_guessing.lo -fPIC -DPIC -o ext/.libs/endpoint_guessing.o +2026-04-08T17:58:29.865900Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/jit_utils/jit_blacklist.c -MMD -MF zend_abstract_interface/jit_utils/jit_blacklist.dep -MT zend_abstract_interface/jit_utils/jit_blacklist.lo -fPIC -DPIC -o zend_abstract_interface/jit_utils/.libs/jit_blacklist.o +2026-04-08T17:58:29.865927Z 01O mkdir zend_abstract_interface/uri_normalization/.libs +2026-04-08T17:58:29.865954Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/uri_normalization/uri_normalization.c -MMD -MF zend_abstract_interface/uri_normalization/uri_normalization.dep -MT zend_abstract_interface/uri_normalization/uri_normalization.lo -fPIC -DPIC -o zend_abstract_interface/uri_normalization/.libs/uri_normalization.o +2026-04-08T17:58:29.865966Z 01O mkdir components/string_view/.libs +2026-04-08T17:58:29.866006Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components/string_view/string_view.c -MMD -MF components/string_view/string_view.dep -MT components/string_view/string_view.lo -fPIC -DPIC -o components/string_view/.libs/string_view.o +2026-04-08T17:58:29.866093Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/config_ini.c -MMD -MF zend_abstract_interface/config/config_ini.dep -MT zend_abstract_interface/config/config_ini.lo -fPIC -DPIC -o zend_abstract_interface/config/.libs/config_ini.o +2026-04-08T17:58:29.866133Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_signal.c -MMD -MF ext/handlers_signal.dep -MT ext/handlers_signal.lo -fPIC -DPIC -o ext/.libs/handlers_signal.o +2026-04-08T17:58:29.866198Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/dogstatsd_client.c -MMD -MF ext/dogstatsd_client.dep -MT ext/dogstatsd_client.lo -fPIC -DPIC -o ext/.libs/dogstatsd_client.o +2026-04-08T17:58:29.866234Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/configuration.c -MMD -MF ext/configuration.dep -MT ext/configuration.lo -fPIC -DPIC -o ext/.libs/configuration.o +2026-04-08T17:58:29.866281Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/config.c -MMD -MF zend_abstract_interface/config/config.dep -MT zend_abstract_interface/config/config.lo -fPIC -DPIC -o zend_abstract_interface/config/.libs/config.o +2026-04-08T17:58:29.866317Z 01O mkdir zend_abstract_interface/zai_string/.libs +2026-04-08T17:58:29.866348Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/zai_string/string.c -MMD -MF zend_abstract_interface/zai_string/string.dep -MT zend_abstract_interface/zai_string/string.lo -fPIC -DPIC -o zend_abstract_interface/zai_string/.libs/string.o +2026-04-08T17:58:29.866379Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_exception.c -MMD -MF ext/handlers_exception.dep -MT ext/handlers_exception.lo -fPIC -DPIC -o ext/.libs/handlers_exception.o +2026-04-08T17:58:29.866398Z 01O mkdir zend_abstract_interface/sandbox/.libs +2026-04-08T17:58:29.866424Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/serializer.c -MMD -MF ext/serializer.dep -MT ext/serializer.lo -fPIC -DPIC -o ext/.libs/serializer.o +2026-04-08T17:58:29.866455Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/auto_flush.c -MMD -MF ext/auto_flush.dep -MT ext/auto_flush.lo -fPIC -DPIC -o ext/.libs/auto_flush.o +2026-04-08T17:58:29.866499Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/ddtrace.c -MMD -MF ext/ddtrace.dep -MT ext/ddtrace.lo -fPIC -DPIC -o ext/.libs/ddtrace.o +2026-04-08T17:58:29.866513Z 01O mkdir ext/integrations/.libs +2026-04-08T17:58:29.866561Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/memory_limit.c -MMD -MF ext/memory_limit.dep -MT ext/memory_limit.lo -fPIC -DPIC -o ext/.libs/memory_limit.o +2026-04-08T17:58:29.866590Z 01O mkdir ext/hook/.libs +2026-04-08T17:58:29.866615Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/hook/uhook_attributes.c -MMD -MF ext/hook/uhook_attributes.dep -MT ext/hook/uhook_attributes.lo -fPIC -DPIC -o ext/hook/.libs/uhook_attributes.o +2026-04-08T17:58:29.866654Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/sandbox/call.c -MMD -MF zend_abstract_interface/sandbox/call.dep -MT zend_abstract_interface/sandbox/call.lo -fPIC -DPIC -o zend_abstract_interface/sandbox/.libs/call.o +2026-04-08T17:58:29.866696Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/comms_php.c -MMD -MF ext/comms_php.dep -MT ext/comms_php.lo -fPIC -DPIC -o ext/.libs/comms_php.o +2026-04-08T17:58:29.866732Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/live_debugger.c -MMD -MF ext/live_debugger.dep -MT ext/live_debugger.lo -fPIC -DPIC -o ext/.libs/live_debugger.o +2026-04-08T17:58:29.866776Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/agent_info.c -MMD -MF ext/agent_info.dep -MT ext/agent_info.lo -fPIC -DPIC -o ext/.libs/agent_info.o +2026-04-08T17:58:29.866822Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations/integrations.c -MMD -MF ext/integrations/integrations.dep -MT ext/integrations/integrations.lo -fPIC -DPIC -o ext/integrations/.libs/integrations.o +2026-04-08T17:58:29.866877Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/engine_api.c -MMD -MF ext/engine_api.dep -MT ext/engine_api.lo -fPIC -DPIC -o ext/.libs/engine_api.o +2026-04-08T17:58:29.866933Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/inferred_proxy_headers.c -MMD -MF ext/inferred_proxy_headers.dep -MT ext/inferred_proxy_headers.lo -fPIC -DPIC -o ext/.libs/inferred_proxy_headers.o +2026-04-08T17:58:29.866967Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_httpstreams.c -MMD -MF ext/handlers_httpstreams.dep -MT ext/handlers_httpstreams.lo -fPIC -DPIC -o ext/.libs/handlers_httpstreams.o +2026-04-08T17:58:29.867013Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/otel_config.c -MMD -MF ext/otel_config.dep -MT ext/otel_config.lo -fPIC -DPIC -o ext/.libs/otel_config.o +2026-04-08T17:58:29.867091Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/hook/uhook_otel.c -MMD -MF ext/hook/uhook_otel.dep -MT ext/hook/uhook_otel.lo -fPIC -DPIC -o ext/hook/.libs/uhook_otel.o +2026-04-08T17:58:29.867141Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/engine_hooks.c -MMD -MF ext/engine_hooks.dep -MT ext/engine_hooks.lo -fPIC -DPIC -o ext/.libs/engine_hooks.o +2026-04-08T17:58:29.867195Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/dogstatsd.c -MMD -MF ext/dogstatsd.dep -MT ext/dogstatsd.lo -fPIC -DPIC -o ext/.libs/dogstatsd.o +2026-04-08T17:58:29.867237Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/hook/uhook_legacy.c -MMD -MF ext/hook/uhook_legacy.dep -MT ext/hook/uhook_legacy.lo -fPIC -DPIC -o ext/hook/.libs/uhook_legacy.o +2026-04-08T17:58:29.867285Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/distributed_tracing_headers.c -MMD -MF ext/distributed_tracing_headers.dep -MT ext/distributed_tracing_headers.lo -fPIC -DPIC -o ext/.libs/distributed_tracing_headers.o +2026-04-08T17:58:29.867334Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/logging.c -MMD -MF ext/logging.dep -MT ext/logging.lo -fPIC -DPIC -o ext/.libs/logging.o +2026-04-08T17:58:29.867378Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/standalone_limiter.c -MMD -MF ext/standalone_limiter.dep -MT ext/standalone_limiter.lo -fPIC -DPIC -o ext/.libs/standalone_limiter.o +2026-04-08T17:58:29.867417Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/ip_extraction.c -MMD -MF ext/ip_extraction.dep -MT ext/ip_extraction.lo -fPIC -DPIC -o ext/.libs/ip_extraction.o +2026-04-08T17:58:29.867460Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations/exec_integration.c -MMD -MF ext/integrations/exec_integration.dep -MT ext/integrations/exec_integration.lo -fPIC -DPIC -o ext/integrations/.libs/exec_integration.o +2026-04-08T17:58:30.365481Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/git.c -MMD -MF ext/git.dep -MT ext/git.lo -fPIC -DPIC -o ext/.libs/git.o +2026-04-08T17:58:30.365574Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_kafka.c -MMD -MF ext/handlers_kafka.dep -MT ext/handlers_kafka.lo -fPIC -DPIC -o ext/.libs/handlers_kafka.o +2026-04-08T17:58:30.365609Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/remote_config.c -MMD -MF ext/remote_config.dep -MT ext/remote_config.lo -fPIC -DPIC -o ext/.libs/remote_config.o +2026-04-08T17:58:30.365657Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_pcntl.c -MMD -MF ext/handlers_pcntl.dep -MT ext/handlers_pcntl.lo -fPIC -DPIC -o ext/.libs/handlers_pcntl.o +2026-04-08T17:58:30.365724Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/telemetry.c -MMD -MF ext/telemetry.dep -MT ext/telemetry.lo -fPIC -DPIC -o ext/.libs/telemetry.o +2026-04-08T17:58:30.365741Z 01O mkdir ext/limiter/.libs +2026-04-08T17:58:30.365752Z 01O mkdir ext/tracer_tag_propagation/.libs +2026-04-08T17:58:30.365774Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/limiter/limiter.c -MMD -MF ext/limiter/limiter.dep -MT ext/limiter/limiter.lo -fPIC -DPIC -o ext/limiter/.libs/limiter.o +2026-04-08T17:58:30.365825Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/startup_logging.c -MMD -MF ext/startup_logging.dep -MT ext/startup_logging.lo -fPIC -DPIC -o ext/.libs/startup_logging.o +2026-04-08T17:58:30.365873Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/tracer_tag_propagation/tracer_tag_propagation.c -MMD -MF ext/tracer_tag_propagation/tracer_tag_propagation.dep -MT ext/tracer_tag_propagation/tracer_tag_propagation.lo -fPIC -DPIC -o ext/tracer_tag_propagation/.libs/tracer_tag_propagation.o +2026-04-08T17:58:30.365902Z 01O mkdir ext/priority_sampling/.libs +2026-04-08T17:58:30.365929Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/profiling.c -MMD -MF ext/profiling.dep -MT ext/profiling.lo -fPIC -DPIC -o ext/.libs/profiling.o +2026-04-08T17:58:30.365962Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/crashtracking_frames.c -MMD -MF ext/crashtracking_frames.dep -MT ext/crashtracking_frames.lo -fPIC -DPIC -o ext/.libs/crashtracking_frames.o +2026-04-08T17:58:30.366003Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/random.c -MMD -MF ext/random.dep -MT ext/random.lo -fPIC -DPIC -o ext/.libs/random.o +2026-04-08T17:58:30.366051Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/priority_sampling/priority_sampling.c -MMD -MF ext/priority_sampling/priority_sampling.dep -MT ext/priority_sampling/priority_sampling.lo -fPIC -DPIC -o ext/priority_sampling/.libs/priority_sampling.o +2026-04-08T17:58:30.366086Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/endpoint_guessing.c:21:20: warning: unused function 'is_nonzero_digit' [-Wunused-function] +2026-04-08T17:58:30.366097Z 01O 21 | static inline bool is_nonzero_digit(char c) { return c >= '1' && c <= '9'; } +2026-04-08T17:58:30.366103Z 01O | ^~~~~~~~~~~~~~~~ +2026-04-08T17:58:30.366108Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/otel_config.c:25:49: warning: assigning to 'char *' from 'const char *' discards qualifiers [-Wincompatible-pointer-types-discards-qualifiers] +2026-04-08T17:58:30.366113Z 01O 25 | if (zai_option_str_is_some(sys)) { buf->ptr = sys.ptr; buf->len = sys.len; return true; } +2026-04-08T17:58:30.366121Z 01O | ^ ~~~~~~~ +2026-04-08T17:58:30.366143Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_api.c -MMD -MF ext/handlers_api.dep -MT ext/handlers_api.lo -fPIC -DPIC -o ext/.libs/handlers_api.o +2026-04-08T17:58:30.366159Z 01O 1 warning generated. +2026-04-08T17:58:30.366187Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/ddshared.c -MMD -MF ext/ddshared.dep -MT ext/ddshared.lo -fPIC -DPIC -o ext/.libs/ddshared.o +2026-04-08T17:58:30.366213Z 01O 1 warning generated. +2026-04-08T17:58:30.366244Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/weak_resources.c -MMD -MF ext/weak_resources.dep -MT ext/weak_resources.lo -fPIC -DPIC -o ext/.libs/weak_resources.o +2026-04-08T17:58:30.366297Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/process_tags.c -MMD -MF ext/process_tags.dep -MT ext/process_tags.lo -fPIC -DPIC -o ext/.libs/process_tags.o +2026-04-08T17:58:30.366320Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/live_debugger.c:441:46: warning: variable 'last_call' set but not used [-Wunused-but-set-variable] +2026-04-08T17:58:30.366329Z 01O 441 | zend_execute_data *call = execute_data, *last_call = NULL; +2026-04-08T17:58:30.366332Z 01O | ^ +2026-04-08T17:58:30.366355Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/coms.c -MMD -MF ext/coms.dep -MT ext/coms.lo -fPIC -DPIC -o ext/.libs/coms.o +2026-04-08T17:58:30.366391Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/threads.c -MMD -MF ext/threads.dep -MT ext/threads.lo -fPIC -DPIC -o ext/.libs/threads.o +2026-04-08T17:58:30.366434Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/code_origins.c -MMD -MF ext/code_origins.dep -MT ext/code_origins.lo -fPIC -DPIC -o ext/.libs/code_origins.o +2026-04-08T17:58:30.366467Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/span.c -MMD -MF ext/span.dep -MT ext/span.lo -fPIC -DPIC -o ext/.libs/span.o +2026-04-08T17:58:30.366482Z 01O Locking 4 packages to latest compatible versions +2026-04-08T17:58:30.366486Z 01O Updating build_common v0.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/build-common) -> v30.0.0 +2026-04-08T17:58:30.366492Z 01O Updating libdd-common-ffi v0.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-common-ffi) -> v30.0.0 +2026-04-08T17:58:30.366499Z 01O Updating libdd-crashtracker-ffi v0.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-crashtracker-ffi) -> v30.0.0 +2026-04-08T17:58:30.366512Z 01O Updating libdd-telemetry-ffi v0.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-telemetry-ffi) -> v30.0.0 +2026-04-08T17:58:30.366537Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/compat_getrandom.c -MMD -MF ext/compat_getrandom.dep -MT ext/compat_getrandom.lo -fPIC -DPIC -o ext/.libs/compat_getrandom.o +2026-04-08T17:58:30.366552Z 01O 1 warning generated. +2026-04-08T17:58:30.366574Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/user_request.c -MMD -MF ext/user_request.dep -MT ext/user_request.lo -fPIC -DPIC -o ext/.libs/user_request.o +2026-04-08T17:58:30.366585Z 01O Downloading crates ... +2026-04-08T17:58:30.366638Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/trace_source.c -MMD -MF ext/trace_source.dep -MT ext/trace_source.lo -fPIC -DPIC -o ext/.libs/trace_source.o +2026-04-08T17:58:30.366677Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/signals.c -MMD -MF ext/signals.dep -MT ext/signals.lo -fPIC -DPIC -o ext/.libs/signals.o +2026-04-08T17:58:30.366710Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/hook/uhook.c -MMD -MF ext/hook/uhook.dep -MT ext/hook/uhook.lo -fPIC -DPIC -o ext/hook/.libs/uhook.o +2026-04-08T17:58:30.366755Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/sidecar.c -MMD -MF ext/sidecar.dep -MT ext/sidecar.lo -fPIC -DPIC -o ext/.libs/sidecar.o +2026-04-08T17:58:30.865789Z 01O Downloaded arrayref v0.3.9 +2026-04-08T17:58:30.865798Z 01O Downloaded anstyle-query v1.1.2 +2026-04-08T17:58:30.865802Z 01O Downloaded function_name-proc-macro v0.3.0 +2026-04-08T17:58:30.865807Z 01O Downloaded http-body v1.0.1 +2026-04-08T17:58:30.865810Z 01O Downloaded humantime v2.1.0 +2026-04-08T17:58:30.865814Z 01O Downloaded windows-targets v0.48.5 +2026-04-08T17:58:30.865818Z 01O Downloaded futures-sink v0.3.31 +2026-04-08T17:58:30.865823Z 01O Downloaded ident_case v1.0.1 +2026-04-08T17:58:30.865826Z 01O Downloaded indexmap v1.9.3 +2026-04-08T17:58:30.865831Z 01O Downloaded sendfd v0.4.3 +2026-04-08T17:58:30.865833Z 01O Downloaded tokio-macros v2.6.0 +2026-04-08T17:58:30.865837Z 01O Downloaded slab v0.4.9 +2026-04-08T17:58:30.865842Z 01O Downloaded simd-adler32 v0.3.7 +2026-04-08T17:58:30.865844Z 01O Downloaded serde_spanned v0.6.8 +2026-04-08T17:58:30.865847Z 01O Downloaded thread_local v1.1.8 +2026-04-08T17:58:30.865852Z 01O Downloaded strsim v0.11.1 +2026-04-08T17:58:30.865893Z 01O Downloaded static_assertions v1.1.0 +2026-04-08T17:58:30.865909Z 01O Downloaded sharded-slab v0.1.7 +2026-04-08T17:58:30.865935Z 01O Downloaded serde_yaml v0.9.34+deprecated +2026-04-08T17:58:30.865941Z 01O Downloaded serde_with v3.12.0 +2026-04-08T17:58:30.865945Z 01O Downloaded simd-json v0.14.3 +2026-04-08T17:58:30.865951Z 01O Downloaded syn v2.0.96 +2026-04-08T17:58:30.865966Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/coms.c:1143:32: warning: unknown warning group '-Wclobbered', ignored [-Wunknown-warning-option] +2026-04-08T17:58:30.865974Z 01O 1143 | #pragma GCC diagnostic ignored "-Wclobbered" +2026-04-08T17:58:30.865980Z 01O | ^ +2026-04-08T17:58:30.865982Z 01O Downloaded hyper-util v0.1.15 +2026-04-08T17:58:30.865985Z 01O Downloaded shlex v1.3.0 +2026-04-08T17:58:30.865990Z 01O Downloaded rand_chacha v0.3.1 +2026-04-08T17:58:30.865993Z 01O Downloaded ref-cast v1.0.23 +2026-04-08T17:58:30.865998Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/sidecar.c:142:31: warning: unused function 'dd_sidecar_connection_factory_ex' [-Wunused-function] +2026-04-08T17:58:30.866006Z 01O 142 | static ddog_SidecarTransport *dd_sidecar_connection_factory_ex(bool is_fork); +2026-04-08T17:58:30.866008Z 01O | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +2026-04-08T17:58:30.866014Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/sidecar.c:143:31: warning: unused function 'dd_sidecar_connection_factory_thread' [-Wunused-function] +2026-04-08T17:58:30.866028Z 01O 143 | static ddog_SidecarTransport *dd_sidecar_connection_factory_thread(void); +2026-04-08T17:58:30.866032Z 01O | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +2026-04-08T17:58:30.866036Z 01O Downloaded serde_bytes v0.11.15 +2026-04-08T17:58:30.866041Z 01O Downloaded socket2 v0.5.10 +2026-04-08T17:58:30.866043Z 01O Downloaded ref-cast-impl v1.0.23 +2026-04-08T17:58:30.866047Z 01O Downloaded ryu v1.0.18 +2026-04-08T17:58:30.866060Z 01O Downloaded powerfmt v0.2.0 +2026-04-08T17:58:30.866078Z 01O 2 warnings generated. +2026-04-08T17:58:30.866092Z 01O Downloaded value-trait v0.10.1 +2026-04-08T17:58:30.866108Z 01O 1 warning generated. +2026-04-08T17:58:30.866112Z 01O Downloaded thiserror-impl v1.0.69 +2026-04-08T17:58:30.866118Z 01O Downloaded rustc-demangle v0.1.26 +2026-04-08T17:58:30.866123Z 01O Downloaded num-traits v0.2.19 +2026-04-08T17:58:30.866126Z 01O Downloaded rand v0.8.5 +2026-04-08T17:58:30.866131Z 01O Downloaded mio v1.0.3 +2026-04-08T17:58:30.866136Z 01O Downloaded indexmap v2.12.1 +2026-04-08T17:58:30.866139Z 01O Downloaded itertools v0.11.0 +2026-04-08T17:58:30.866144Z 01O Downloaded itertools v0.12.1 +2026-04-08T17:58:30.866149Z 01O Downloaded portable-atomic v1.10.0 +2026-04-08T17:58:30.866151Z 01O Downloaded zerocopy v0.8.24 +2026-04-08T17:58:30.866154Z 01O Downloaded winnow v0.6.24 +2026-04-08T17:58:30.866159Z 01O Downloaded tracing-subscriber v0.3.22 +2026-04-08T17:58:30.866161Z 01O Downloaded zerocopy v0.7.35 +2026-04-08T17:58:30.866165Z 01O Downloaded regex v1.11.1 +2026-04-08T17:58:30.866169Z 01O Downloaded toml_edit v0.22.22 +2026-04-08T17:58:31.366796Z 01O Downloaded nix v0.29.0 +2026-04-08T17:58:31.366806Z 01O Downloaded object v0.36.7 +2026-04-08T17:58:31.366809Z 01O Downloaded nix v0.30.1 +2026-04-08T17:58:31.366815Z 01O Downloaded regex-syntax v0.8.5 +2026-04-08T17:58:31.366817Z 01O Downloaded rustix v0.38.43 +2026-04-08T17:58:31.366821Z 01O Downloaded proc-macro2 v1.0.93 +2026-04-08T17:58:31.366847Z 01O Downloaded rustix v1.1.3 +2026-04-08T17:58:31.366859Z 01O Downloaded miniz_oxide v0.8.3 +2026-04-08T17:58:31.366864Z 01O Downloaded memchr v2.7.4 +2026-04-08T17:58:31.366889Z 01O Downloaded tracing v0.1.44 +2026-04-08T17:58:31.366902Z 01O Downloaded tracing-core v0.1.36 +2026-04-08T17:58:31.366909Z 01O Downloaded msvc-demangler v0.10.1 +2026-04-08T17:58:31.366959Z 01O Downloaded miniz_oxide v0.9.0 +2026-04-08T17:58:31.366965Z 01O Downloaded log v0.4.25 +2026-04-08T17:58:31.366985Z 01O Downloaded io-lifetimes v1.0.11 +2026-04-08T17:58:31.366989Z 01O Downloaded unsafe-libyaml v0.2.11 +2026-04-08T17:58:31.366993Z 01O Downloaded unicode-ident v1.0.14 +2026-04-08T17:58:31.366998Z 01O Downloaded regex-automata v0.4.9 +2026-04-08T17:58:31.367001Z 01O Downloaded rmp-serde v1.3.0 +2026-04-08T17:58:31.367007Z 01O Downloaded prost v0.14.3 +2026-04-08T17:58:31.367012Z 01O Downloaded priority-queue v2.1.1 +2026-04-08T17:58:31.367014Z 01O Downloaded pin-project v1.1.8 +2026-04-08T17:58:31.367017Z 01O Downloaded once_cell v1.21.3 +2026-04-08T17:58:31.367041Z 01O Downloaded memmap2 v0.9.5 +2026-04-08T17:58:31.367044Z 01O Downloaded jobserver v0.1.32 +2026-04-08T17:58:31.367048Z 01O Downloaded windows_x86_64_gnu v0.48.5 +2026-04-08T17:58:31.367052Z 01O Downloaded libc v0.2.177 +2026-04-08T17:58:31.867356Z 01O Downloaded uuid v1.12.1 +2026-04-08T17:58:31.867364Z 01O Downloaded tokio v1.49.0 +2026-04-08T17:58:31.867368Z 01O Downloaded typenum v1.17.0 +2026-04-08T17:58:31.867374Z 01O Downloaded tracing-log v0.2.0 +2026-04-08T17:58:31.867376Z 01O Downloaded tower-service v0.3.3 +2026-04-08T17:58:31.867379Z 01O Downloaded tokio-util v0.7.13 +2026-04-08T17:58:31.867389Z 01O Downloaded thiserror v1.0.69 +2026-04-08T17:58:31.867392Z 01O Downloaded rmpv v1.3.0 +2026-04-08T17:58:31.867396Z 01O Downloaded rmp v0.8.14 +2026-04-08T17:58:31.867401Z 01O Downloaded rand_core v0.6.4 +2026-04-08T17:58:31.867404Z 01O Downloaded quote v1.0.38 +2026-04-08T17:58:31.867407Z 01O Downloaded prost-derive v0.14.3 +2026-04-08T17:58:31.867412Z 01O Downloaded ppv-lite86 v0.2.20 +2026-04-08T17:58:31.867414Z 01O Downloaded pin-project-lite v0.2.16 +2026-04-08T17:58:31.867417Z 01O Downloaded pin-project-internal v1.1.8 +2026-04-08T17:58:31.867423Z 01O Downloaded percent-encoding v2.3.1 +2026-04-08T17:58:31.867425Z 01O Downloaded paste v1.0.15 +2026-04-08T17:58:31.867428Z 01O Downloaded os_info v3.14.0 +2026-04-08T17:58:31.867447Z 01O Downloaded zerocopy-derive v0.7.35 +2026-04-08T17:58:31.867460Z 01O Downloaded windows-core v0.51.1 +2026-04-08T17:58:31.867467Z 01O Downloaded toml v0.8.19 +2026-04-08T17:58:31.867494Z 01O Downloaded untrusted v0.9.0 +2026-04-08T17:58:31.867506Z 01O Downloaded try-lock v0.2.5 +2026-04-08T17:58:31.867511Z 01O Downloaded toml_datetime v0.6.8 +2026-04-08T17:58:31.867524Z 01O Downloaded pin-utils v0.1.0 +2026-04-08T17:58:31.867532Z 01O Downloaded num-derive v0.4.2 +2026-04-08T17:58:31.867536Z 01O Downloaded matchers v0.2.0 +2026-04-08T17:58:31.867555Z 01O Downloaded lazy_static v1.4.0 +2026-04-08T17:58:31.867559Z 01O Downloaded itoa v1.0.14 +2026-04-08T17:58:31.867562Z 01O Downloaded is_terminal_polyfill v1.70.1 +2026-04-08T17:58:31.867567Z 01O Downloaded utf8parse v0.2.2 +2026-04-08T17:58:31.867569Z 01O Downloaded unicode-xid v0.2.6 +2026-04-08T17:58:31.867573Z 01O Downloaded page_size v0.6.0 +2026-04-08T17:58:31.867578Z 01O Downloaded hex v0.4.3 +2026-04-08T17:58:31.867580Z 01O Downloaded heck v0.5.0 +2026-04-08T17:58:31.867583Z 01O Downloaded cc v1.2.55 +2026-04-08T17:58:31.867588Z 01O Downloaded openssl-probe v0.1.5 +2026-04-08T17:58:31.867590Z 01O Downloaded memfd v0.6.4 +2026-04-08T17:58:31.867593Z 01O Downloaded ring v0.17.14 +2026-04-08T17:58:32.368420Z 01O Downloaded manual_future v0.1.1 +2026-04-08T17:58:32.368430Z 01O Downloaded getrandom v0.3.2 +2026-04-08T17:58:32.368433Z 01O Downloaded futures-executor v0.3.31 +2026-04-08T17:58:32.368438Z 01O Downloaded fnv v1.0.7 +2026-04-08T17:58:32.368441Z 01O Downloaded bytes v1.11.1 +2026-04-08T17:58:32.368444Z 01O Downloaded prctl v1.0.0 +2026-04-08T17:58:32.368448Z 01O Downloaded num-conv v0.1.0 +2026-04-08T17:58:32.368451Z 01O Downloaded is-terminal v0.4.13 +2026-04-08T17:58:32.368454Z 01O Downloaded hashbrown v0.16.1 +2026-04-08T17:58:32.368459Z 01O Downloaded futures-macro v0.3.31 +2026-04-08T17:58:32.368461Z 01O Downloaded fs_extra v1.3.0 +2026-04-08T17:58:32.368464Z 01O Downloaded const-str v0.5.7 +2026-04-08T17:58:32.368520Z 01O Downloaded autocfg v1.4.0 +2026-04-08T17:58:32.368527Z 01O Downloaded adler2 v2.0.0 +2026-04-08T17:58:32.368531Z 01O Downloaded float-cmp v0.10.0 +2026-04-08T17:58:32.368536Z 01O Downloaded either v1.13.0 +2026-04-08T17:58:32.368539Z 01O Downloaded darling_macro v0.20.10 +2026-04-08T17:58:32.368542Z 01O Downloaded crossbeam-queue v0.3.12 +2026-04-08T17:58:32.368564Z 01O Downloaded constcat v0.4.1 +2026-04-08T17:58:32.368571Z 01O Downloaded cfg-if v1.0.1 +2026-04-08T17:58:32.368578Z 01O Downloaded block-buffer v0.10.4 +2026-04-08T17:58:32.368585Z 01O Downloaded aws-lc-rs v1.15.4 +2026-04-08T17:58:32.368587Z 01O Downloaded rustls v0.23.37 +2026-04-08T17:58:32.368591Z 01O Downloaded gimli v0.32.0 +2026-04-08T17:58:32.368596Z 01O Downloaded gimli v0.31.1 +2026-04-08T17:58:32.368598Z 01O Downloaded fallible-iterator v0.3.0 +2026-04-08T17:58:32.368601Z 01O Downloaded chrono v0.4.41 +2026-04-08T17:58:32.368607Z 01O Downloaded cbindgen v0.29.0 +2026-04-08T17:58:32.368609Z 01O Downloaded cbindgen v0.27.0 +2026-04-08T17:58:32.868735Z 01O Downloaded blazesym v0.2.3 +2026-04-08T17:58:32.868745Z 01O Downloaded serde_json v1.0.137 +2026-04-08T17:58:32.868749Z 01O Downloaded symbolic-demangle v12.13.3 +2026-04-08T17:58:32.868755Z 01O Downloaded zeroize v1.8.1 +2026-04-08T17:58:32.868757Z 01O Downloaded time v0.3.37 +2026-04-08T17:58:32.868760Z 01O Downloaded hyper v1.6.0 +2026-04-08T17:58:32.868765Z 01O Downloaded hashbrown v0.15.2 +2026-04-08T17:58:32.868767Z 01O Downloaded linux-raw-sys v0.4.15 +2026-04-08T17:58:32.868770Z 01O Downloaded hashbrown v0.14.5 +2026-04-08T17:58:32.868775Z 01O Downloaded clap_builder v4.5.27 +2026-04-08T17:58:32.868777Z 01O Downloaded serde v1.0.228 +2026-04-08T17:58:32.868780Z 01O Downloaded socket2 v0.6.2 +2026-04-08T17:58:32.868785Z 01O Downloaded rustls-webpki v0.103.9 +2026-04-08T17:58:32.868787Z 01O Downloaded http v1.4.0 +2026-04-08T17:58:32.868791Z 01O Downloaded aho-corasick v1.1.3 +2026-04-08T17:58:32.868796Z 01O Downloaded tempfile v3.24.0 +2026-04-08T17:58:32.868798Z 01O Downloaded serde_derive v1.0.228 +2026-04-08T17:58:32.868804Z 01O Downloaded memory-stats v1.2.0 +2026-04-08T17:58:32.868809Z 01O Downloaded futures-util v0.3.31 +2026-04-08T17:58:32.868812Z 01O Downloaded cpp_demangle v0.4.4 +2026-04-08T17:58:32.868816Z 01O Downloaded signal-hook-registry v1.4.2 +2026-04-08T17:58:32.868820Z 01O Downloaded serde_with_macros v3.12.0 +2026-04-08T17:58:32.868823Z 01O Downloaded schemars_derive v0.8.21 +2026-04-08T17:58:32.868827Z 01O Downloaded serde_core v1.0.228 +2026-04-08T17:58:32.868831Z 01O Downloaded schemars v0.8.21 +2026-04-08T17:58:32.868834Z 01O Downloaded stable_deref_trait v1.2.0 +2026-04-08T17:58:32.868837Z 01O Downloaded simdutf8 v0.1.5 +2026-04-08T17:58:32.868842Z 01O Downloaded sha2 v0.10.8 +2026-04-08T17:58:32.868846Z 01O Downloaded linux-raw-sys v0.11.0 +2026-04-08T17:58:33.369434Z 01O Downloaded serde_derive_internals v0.29.1 +2026-04-08T17:58:33.369468Z 01O Downloaded sys-info v0.9.1 +2026-04-08T17:58:33.369474Z 01O Downloaded rustls-native-certs v0.8.1 +2026-04-08T17:58:33.369494Z 01O Downloaded tokio-rustls v0.26.1 +2026-04-08T17:58:33.369507Z 01O Downloaded hashbrown v0.12.3 +2026-04-08T17:58:33.369512Z 01O Downloaded cpp_demangle v0.5.1 +2026-04-08T17:58:33.369532Z 01O Downloaded clap v4.5.27 +2026-04-08T17:58:33.369543Z 01O Downloaded symbolic-common v12.13.3 +2026-04-08T17:58:33.369548Z 01O Downloaded subtle v2.6.1 +2026-04-08T17:58:33.369561Z 01O Downloaded smallvec v1.15.1 +2026-04-08T17:58:33.369571Z 01O Downloaded version_check v0.9.5 +2026-04-08T17:58:33.369575Z 01O Downloaded getrandom v0.2.15 +2026-04-08T17:58:33.369590Z 01O Downloaded futures v0.3.31 +2026-04-08T17:58:33.369593Z 01O Downloaded rustls-pki-types v1.14.0 +2026-04-08T17:58:33.369596Z 01O Downloaded memoffset v0.9.1 +2026-04-08T17:58:33.369601Z 01O Downloaded zwohash v0.1.2 +2026-04-08T17:58:33.369603Z 01O Downloaded crossbeam-channel v0.5.15 +2026-04-08T17:58:33.369607Z 01O Downloaded httparse v1.9.5 +2026-04-08T17:58:33.369649Z 01O Downloaded http-body-util v0.1.2 +2026-04-08T17:58:33.369652Z 01O Downloaded find-msvc-tools v0.1.9 +2026-04-08T17:58:33.369655Z 01O Downloaded cmake v0.1.57 +2026-04-08T17:58:33.369660Z 01O Downloaded base64 v0.22.1 +2026-04-08T17:58:33.369669Z 01O Downloaded want v0.3.1 +2026-04-08T17:58:33.369673Z 01O Downloaded iana-time-zone v0.1.61 +2026-04-08T17:58:33.369694Z 01O Downloaded env_logger v0.10.2 +2026-04-08T17:58:33.369701Z 01O Downloaded backtrace v0.3.74 +2026-04-08T17:58:33.369704Z 01O Downloaded time-macros v0.2.19 +2026-04-08T17:58:33.369710Z 01O Downloaded termcolor v1.4.1 +2026-04-08T17:58:33.369712Z 01O Downloaded halfbrown v0.2.5 +2026-04-08T17:58:33.369716Z 01O Downloaded function_name v0.3.0 +2026-04-08T17:58:33.369721Z 01O Downloaded foldhash v0.1.5 +2026-04-08T17:58:33.369723Z 01O Downloaded dunce v1.0.5 +2026-04-08T17:58:33.369726Z 01O Downloaded darling v0.20.10 +2026-04-08T17:58:33.369731Z 01O Downloaded const_format_proc_macros v0.2.34 +2026-04-08T17:58:33.369733Z 01O Downloaded clap_lex v0.7.4 +2026-04-08T17:58:33.369737Z 01O Downloaded glibc_version v0.1.2 +2026-04-08T17:58:33.369742Z 01O Downloaded futures-task v0.3.31 +2026-04-08T17:58:33.369744Z 01O Downloaded futures-channel v0.3.31 +2026-04-08T17:58:33.369747Z 01O Downloaded fastrand v2.3.0 +2026-04-08T17:58:33.369760Z 01O Downloaded debugid v0.8.0 +2026-04-08T17:58:33.369764Z 01O Downloaded anyhow v1.0.98 +2026-04-08T17:58:33.369767Z 01O Downloaded heck v0.4.1 +2026-04-08T17:58:33.369772Z 01O Downloaded generic-array v0.14.7 +2026-04-08T17:58:33.369775Z 01O Downloaded crypto-common v0.1.6 +2026-04-08T17:58:33.369778Z 01O Downloaded arc-swap v1.7.1 +2026-04-08T17:58:33.369783Z 01O Downloaded futures-io v0.3.31 +2026-04-08T17:58:33.369785Z 01O Downloaded equivalent v1.0.1 +2026-04-08T17:58:33.369788Z 01O Downloaded digest v0.10.7 +2026-04-08T17:58:33.369793Z 01O Downloaded const_format v0.2.34 +2026-04-08T17:58:33.369796Z 01O Downloaded cfg_aliases v0.2.1 +2026-04-08T17:58:33.369799Z 01O Downloaded allocator-api2 v0.2.21 +2026-04-08T17:58:33.369806Z 01O Downloaded time-core v0.1.2 +2026-04-08T17:58:33.369809Z 01O Downloaded hyper-rustls v0.27.7 +2026-04-08T17:58:33.369812Z 01O Downloaded darling_core v0.20.10 +2026-04-08T17:58:33.369817Z 01O Downloaded crossbeam-utils v0.8.21 +2026-04-08T17:58:33.369819Z 01O Downloaded cadence v1.5.0 +2026-04-08T17:58:33.369823Z 01O Downloaded bitflags v2.8.0 +2026-04-08T17:58:33.369827Z 01O Downloaded addr2line v0.24.2 +2026-04-08T17:58:33.369829Z 01O Downloaded deranged v0.3.11 +2026-04-08T17:58:33.369832Z 01O Downloaded byteorder v1.5.0 +2026-04-08T17:58:33.369840Z 01O Downloaded bincode v1.3.3 +2026-04-08T17:58:33.369842Z 01O Downloaded ahash v0.8.12 +2026-04-08T17:58:33.369845Z 01O Downloaded futures-core v0.3.31 +2026-04-08T17:58:33.369862Z 01O Downloaded anstyle-parse v0.2.6 +2026-04-08T17:58:33.369871Z 01O Downloaded anstream v0.6.18 +2026-04-08T17:58:33.369876Z 01O Downloaded errno v0.3.10 +2026-04-08T17:58:33.369889Z 01O Downloaded dyn-clone v1.0.17 +2026-04-08T17:58:33.369897Z 01O Downloaded cpufeatures v0.2.16 +2026-04-08T17:58:33.369901Z 01O Downloaded colorchoice v1.0.3 +2026-04-08T17:58:33.369916Z 01O Downloaded anstyle v1.0.10 +2026-04-08T17:58:33.369925Z 01O Downloaded aws-lc-sys v0.37.0 +2026-04-08T17:58:33.870316Z 01O Downloaded windows v0.51.1 +2026-04-08T17:58:34.371105Z 01O Compiling proc-macro2 v1.0.93 +2026-04-08T17:58:34.371124Z 01O Compiling unicode-ident v1.0.14 +2026-04-08T17:58:34.371129Z 01O Compiling libc v0.2.177 +2026-04-08T17:58:34.371150Z 01O Compiling autocfg v1.4.0 +2026-04-08T17:58:34.371170Z 01O Compiling cfg-if v1.0.1 +2026-04-08T17:58:34.371179Z 01O Compiling serde_core v1.0.228 +2026-04-08T17:58:34.371199Z 01O Compiling shlex v1.3.0 +2026-04-08T17:58:34.371211Z 01O Compiling find-msvc-tools v0.1.9 +2026-04-08T17:58:34.371216Z 01O Compiling serde v1.0.228 +2026-04-08T17:58:34.371229Z 01O Compiling memchr v2.7.4 +2026-04-08T17:58:34.371235Z 01O Compiling anyhow v1.0.98 +2026-04-08T17:58:34.371278Z 01O Compiling once_cell v1.21.3 +2026-04-08T17:58:34.371284Z 01O Compiling bytes v1.11.1 +2026-04-08T17:58:34.371286Z 01O Compiling cfg_aliases v0.2.1 +2026-04-08T17:58:34.371290Z 01O Compiling itoa v1.0.14 +2026-04-08T17:58:34.371295Z 01O Compiling pin-project-lite v0.2.16 +2026-04-08T17:58:34.371297Z 01O Compiling httparse v1.9.5 +2026-04-08T17:58:34.371316Z 01O Compiling bitflags v2.8.0 +2026-04-08T17:58:34.371331Z 01O Compiling adler2 v2.0.0 +2026-04-08T17:58:34.371340Z 01O Compiling rustc-demangle v0.1.26 +2026-04-08T17:58:34.371345Z 01O Compiling futures-core v0.3.31 +2026-04-08T17:58:34.371357Z 01O Compiling dunce v1.0.5 +2026-04-08T17:58:34.371365Z 01O Compiling object v0.36.7 +2026-04-08T17:58:34.371369Z 01O Compiling futures-sink v0.3.31 +2026-04-08T17:58:34.371384Z 01O Compiling fs_extra v1.3.0 +2026-04-08T17:58:34.371393Z 01O Compiling gimli v0.31.1 +2026-04-08T17:58:34.371398Z 01O Compiling strsim v0.11.1 +2026-04-08T17:58:34.871658Z 01O Compiling thiserror v1.0.69 +2026-04-08T17:58:34.871669Z 01O Compiling futures-io v0.3.31 +2026-04-08T17:58:34.871676Z 01O Compiling pin-utils v0.1.0 +2026-04-08T17:58:34.871685Z 01O Compiling futures-task v0.3.31 +2026-04-08T17:58:34.871688Z 01O Compiling getrandom v0.3.2 +2026-04-08T17:58:34.871691Z 01O Compiling version_check v0.9.5 +2026-04-08T17:58:34.871709Z 01O Compiling zeroize v1.8.1 +2026-04-08T17:58:34.871713Z 01O Compiling aws-lc-rs v1.15.4 +2026-04-08T17:58:34.871716Z 01O Compiling unicode-xid v0.2.6 +2026-04-08T17:58:34.871722Z 01O Compiling regex-syntax v0.8.5 +2026-04-08T17:58:34.871724Z 01O Compiling rustls v0.23.37 +2026-04-08T17:58:34.871729Z 01O Compiling utf8parse v0.2.2 +2026-04-08T17:58:34.871735Z 01O Compiling untrusted v0.9.0 +2026-04-08T17:58:34.871737Z 01O Compiling try-lock v0.2.5 +2026-04-08T17:58:34.871742Z 01O Compiling miniz_oxide v0.8.3 +2026-04-08T17:58:34.871761Z 01O Compiling nix v0.29.0 +2026-04-08T17:58:34.871776Z 01O Compiling smallvec v1.15.1 +2026-04-08T17:58:34.871782Z 01O Compiling futures-channel v0.3.31 +2026-04-08T17:58:34.871791Z 01O Compiling tracing-core v0.1.36 +2026-04-08T17:58:34.871794Z 01O Compiling anstyle-parse v0.2.6 +2026-04-08T17:58:34.871798Z 01O Compiling hashbrown v0.16.1 +2026-04-08T17:58:34.871819Z 01O Compiling rustix v1.1.3 +2026-04-08T17:58:34.871831Z 01O Compiling equivalent v1.0.1 +2026-04-08T17:58:34.871836Z 01O Compiling anstyle-query v1.1.2 +2026-04-08T17:58:34.871853Z 01O Compiling subtle v2.6.1 +2026-04-08T17:58:34.871863Z 01O Compiling is_terminal_polyfill v1.70.1 +2026-04-08T17:58:34.871868Z 01O Compiling rustls-pki-types v1.14.0 +2026-04-08T17:58:34.871878Z 01O Compiling want v0.3.1 +2026-04-08T17:58:34.871885Z 01O Compiling colorchoice v1.0.3 +2026-04-08T17:58:34.871890Z 01O Compiling anstyle v1.0.10 +2026-04-08T17:58:34.871903Z 01O Compiling slab v0.4.9 +2026-04-08T17:58:34.871911Z 01O Compiling num-traits v0.2.19 +2026-04-08T17:58:34.871916Z 01O Compiling memoffset v0.9.1 +2026-04-08T17:58:34.871928Z 01O Compiling heck v0.5.0 +2026-04-08T17:58:34.871937Z 01O Compiling either v1.13.0 +2026-04-08T17:58:34.871941Z 01O Compiling clap_lex v0.7.4 +2026-04-08T17:58:34.871954Z 01O Compiling openssl-probe v0.1.5 +2026-04-08T17:58:34.871962Z 01O Compiling serde_json v1.0.137 +2026-04-08T17:58:35.374349Z 01O Compiling linux-raw-sys v0.11.0 +2026-04-08T17:58:35.374358Z 01O Compiling tower-service v0.3.3 +2026-04-08T17:58:35.374362Z 01O Compiling winnow v0.6.24 +2026-04-08T17:58:35.374367Z 01O Compiling aho-corasick v1.1.3 +2026-04-08T17:58:35.374370Z 01O Compiling byteorder v1.5.0 +2026-04-08T17:58:35.374374Z 01O Compiling ryu v1.0.18 +2026-04-08T17:58:35.374379Z 01O Compiling http v1.4.0 +2026-04-08T17:58:35.374381Z 01O Compiling anstream v0.6.18 +2026-04-08T17:58:35.374384Z 01O Compiling itertools v0.12.1 +2026-04-08T17:58:35.374389Z 01O Compiling paste v1.0.15 +2026-04-08T17:58:35.374392Z 01O Compiling fastrand v2.3.0 +2026-04-08T17:58:35.374440Z 01O Compiling cbindgen v0.29.0 +2026-04-08T17:58:35.374445Z 01O Compiling tracing v0.1.44 +2026-04-08T17:58:35.374448Z 01O Compiling hex v0.4.3 +2026-04-08T17:58:35.374451Z 01O Compiling log v0.4.25 +2026-04-08T17:58:35.374456Z 01O Compiling static_assertions v1.1.0 +2026-04-08T17:58:35.874186Z 01O Compiling rustls-native-certs v0.8.1 +2026-04-08T17:58:35.874204Z 01O Compiling clap_builder v4.5.27 +2026-04-08T17:58:35.874210Z 01O Compiling zerocopy v0.8.24 +2026-04-08T17:58:35.874235Z 01O Compiling indexmap v2.12.1 +2026-04-08T17:58:35.874248Z 01O Compiling ahash v0.8.12 +2026-04-08T17:58:35.874253Z 01O Compiling allocator-api2 v0.2.21 +2026-04-08T17:58:35.874260Z 01O Compiling cc v1.2.55 +2026-04-08T17:58:35.874262Z 01O Compiling quote v1.0.38 +2026-04-08T17:58:35.874266Z 01O Compiling crossbeam-utils v0.8.21 +2026-04-08T17:58:35.874273Z 01O Compiling libdd-trace-protobuf v3.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-trace-protobuf) +2026-04-08T17:58:36.374495Z 01O Compiling libdd-ddsketch v1.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-ddsketch) +2026-04-08T17:58:36.374507Z 01O Compiling typenum v1.17.0 +2026-04-08T17:58:36.374512Z 01O Compiling generic-array v0.14.7 +2026-04-08T17:58:36.374517Z 01O Compiling syn v2.0.96 +2026-04-08T17:58:36.374520Z 01O Compiling foldhash v0.1.5 +2026-04-08T17:58:36.374524Z 01O Compiling base64 v0.22.1 +2026-04-08T17:58:36.374528Z 01O Compiling http-body v1.0.1 +2026-04-08T17:58:36.374541Z 01O Compiling hashbrown v0.15.2 +2026-04-08T17:58:36.374546Z 01O Compiling iana-time-zone v0.1.61 +2026-04-08T17:58:36.875426Z 01O Compiling const_format_proc_macros v0.2.34 +2026-04-08T17:58:36.875443Z 01O Compiling rustix v0.38.43 +2026-04-08T17:58:36.875450Z 01O Compiling nix v0.30.1 +2026-04-08T17:58:36.875476Z 01O Compiling windows_x86_64_gnu v0.48.5 +2026-04-08T17:58:36.875489Z 01O Compiling ident_case v1.0.1 +2026-04-08T17:58:36.875495Z 01O Compiling stable_deref_trait v1.2.0 +2026-04-08T17:58:36.875519Z 01O Compiling linux-raw-sys v0.4.15 +2026-04-08T17:58:36.875531Z 01O Compiling fnv v1.0.7 +2026-04-08T17:58:37.376192Z 01O Compiling jobserver v0.1.32 +2026-04-08T17:58:37.376203Z 01O Compiling regex-automata v0.4.9 +2026-04-08T17:58:37.376207Z 01O Compiling mio v1.0.3 +2026-04-08T17:58:37.376213Z 01O Compiling socket2 v0.6.2 +2026-04-08T17:58:37.376215Z 01O Compiling socket2 v0.5.10 +2026-04-08T17:58:37.376219Z 01O Compiling cpp_demangle v0.4.4 +2026-04-08T17:58:37.376224Z 01O Compiling cpufeatures v0.2.16 +2026-04-08T17:58:37.376227Z 01O Compiling signal-hook-registry v1.4.2 +2026-04-08T17:58:37.876525Z 01O Compiling getrandom v0.2.15 +2026-04-08T17:58:37.876535Z 01O Compiling crossbeam-channel v0.5.15 +2026-04-08T17:58:37.876539Z 01O Compiling tempfile v3.24.0 +2026-04-08T17:58:37.876545Z 01O Compiling addr2line v0.24.2 +2026-04-08T17:58:37.876550Z 01O Compiling rand_core v0.6.4 +2026-04-08T17:58:37.876553Z 01O Compiling rmp v0.8.14 +2026-04-08T17:58:37.876559Z 01O Compiling memmap2 v0.9.5 +2026-04-08T17:58:37.876561Z 01O Compiling cpp_demangle v0.5.1 +2026-04-08T17:58:38.377444Z 01O Compiling crossbeam-queue v0.3.12 +2026-04-08T17:58:38.377461Z 01O Compiling fallible-iterator v0.3.0 +2026-04-08T17:58:38.377466Z 01O Compiling const_format v0.2.34 +2026-04-08T17:58:38.377471Z 01O Compiling clap v4.5.27 +2026-04-08T17:58:38.377474Z 01O Compiling constcat v0.4.1 +2026-04-08T17:58:38.377480Z 01O Compiling io-lifetimes v1.0.11 +2026-04-08T17:58:38.377486Z 01O Compiling blazesym v0.2.3 +2026-04-08T17:58:38.377488Z 01O Compiling rmpv v1.3.0 +2026-04-08T17:58:38.377491Z 01O Compiling portable-atomic v1.10.0 +2026-04-08T17:58:38.377496Z 01O Compiling arc-swap v1.7.1 +2026-04-08T17:58:38.377499Z 01O Compiling symbolic-demangle v12.13.3 +2026-04-08T17:58:38.377503Z 01O Compiling cadence v1.5.0 +2026-04-08T17:58:38.377508Z 01O Compiling schemars v0.8.21 +2026-04-08T17:58:38.377511Z 01O Compiling simd-adler32 v0.3.7 +2026-04-08T17:58:38.377562Z 01O Compiling windows-targets v0.48.5 +2026-04-08T17:58:38.377568Z 01O Compiling page_size v0.6.0 +2026-04-08T17:58:38.878137Z 01O Compiling msvc-demangler v0.10.1 +2026-04-08T17:58:38.878147Z 01O Compiling ref-cast v1.0.23 +2026-04-08T17:58:38.878152Z 01O Compiling dyn-clone v1.0.17 +2026-04-08T17:58:38.878157Z 01O Compiling powerfmt v0.2.0 +2026-04-08T17:58:38.878160Z 01O Compiling percent-encoding v2.3.1 +2026-04-08T17:58:38.878163Z 01O Compiling windows-core v0.51.1 +2026-04-08T17:58:38.878178Z 01O Compiling miniz_oxide v0.9.0 +2026-04-08T17:58:38.878181Z 01O Compiling errno v0.3.10 +2026-04-08T17:58:38.878199Z 01O Compiling gimli v0.32.0 +2026-04-08T17:58:38.878205Z 01O Compiling float-cmp v0.10.0 +2026-04-08T17:58:38.878207Z 01O Compiling lazy_static v1.4.0 +2026-04-08T17:58:38.878211Z 01O Compiling time-core v0.1.2 +2026-04-08T17:58:38.878218Z 01O Compiling cmake v0.1.57 +2026-04-08T17:58:38.878222Z 01O Compiling cc_utils v0.1.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/tools/cc_utils) +2026-04-08T17:58:38.878226Z 01O Compiling num-conv v0.1.0 +2026-04-08T17:58:38.878231Z 01O Compiling function_name-proc-macro v0.3.0 +2026-04-08T17:58:38.878233Z 01O Compiling thread_local v1.1.8 +2026-04-08T17:58:38.878237Z 01O Compiling simdutf8 v0.1.5 +2026-04-08T17:58:38.878250Z 01O Compiling unsafe-libyaml v0.2.11 +2026-04-08T17:58:38.878258Z 01O Compiling sharded-slab v0.1.7 +2026-04-08T17:58:38.878265Z 01O Compiling prctl v1.0.0 +2026-04-08T17:58:38.878272Z 01O Compiling priority-queue v2.1.1 +2026-04-08T17:58:39.378743Z 01O Compiling hashbrown v0.14.5 +2026-04-08T17:58:39.378781Z 01O Compiling memory-stats v1.2.0 +2026-04-08T17:58:39.378787Z 01O Compiling tracing-log v0.2.0 +2026-04-08T17:58:39.378812Z 01O Compiling datadog-sidecar-ffi v0.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/datadog-sidecar-ffi) +2026-04-08T17:58:39.378827Z 01O Compiling zwohash v0.1.2 +2026-04-08T17:58:39.378834Z 01O Compiling arrayref v0.3.9 +2026-04-08T17:58:39.378847Z 01O Compiling is-terminal v0.4.13 +2026-04-08T17:58:39.378851Z 01O Compiling termcolor v1.4.1 +2026-04-08T17:58:39.378855Z 01O Compiling humantime v2.1.0 +2026-04-08T17:58:39.378860Z 01O Compiling itertools v0.11.0 +2026-04-08T17:58:39.378863Z 01O Compiling const-str v0.5.7 +2026-04-08T17:58:39.378867Z 01O Compiling crypto-common v0.1.6 +2026-04-08T17:58:39.378872Z 01O Compiling block-buffer v0.10.4 +2026-04-08T17:58:39.378875Z 01O Compiling function_name v0.3.0 +2026-04-08T17:58:39.879774Z 01O Compiling digest v0.10.7 +2026-04-08T17:58:39.879791Z 01O Compiling windows v0.51.1 +2026-04-08T17:58:39.879795Z 01O Compiling aws-lc-sys v0.37.0 +2026-04-08T17:58:39.879824Z 01O Compiling sys-info v0.9.1 +2026-04-08T17:58:39.879839Z 01O Compiling libdd-libunwind-sys v0.1.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-libunwind-sys) +2026-04-08T17:58:39.879846Z 01O Compiling spawn_worker v0.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/spawn_worker) +2026-04-08T17:58:39.879852Z 01O Compiling sha2 v0.10.8 +2026-04-08T17:58:39.879854Z 01O Compiling backtrace v0.3.74 +2026-04-08T17:58:39.879858Z 01O Compiling memfd v0.6.4 +2026-04-08T17:58:40.880610Z 01O Compiling darling_core v0.20.10 +2026-04-08T17:58:40.880620Z 01O Compiling serde_derive_internals v0.29.1 +2026-04-08T17:58:41.381178Z 01O Compiling regex v1.11.1 +2026-04-08T17:58:41.381188Z 01O Compiling serde_derive v1.0.228 +2026-04-08T17:58:41.381192Z 01O Compiling futures-macro v0.3.31 +2026-04-08T17:58:41.381198Z 01O Compiling tokio-macros v2.6.0 +2026-04-08T17:58:41.381200Z 01O Compiling thiserror-impl v1.0.69 +2026-04-08T17:58:41.381204Z 01O Compiling pin-project-internal v1.1.8 +2026-04-08T17:58:41.381210Z 01O Compiling prost-derive v0.14.3 +2026-04-08T17:58:41.381212Z 01O Compiling zerocopy-derive v0.7.35 +2026-04-08T17:58:41.381216Z 01O Compiling num-derive v0.4.2 +2026-04-08T17:58:41.381241Z 01O Compiling ref-cast-impl v1.0.23 +2026-04-08T17:58:41.381255Z 01O Compiling datadog-ipc-macros v0.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/datadog-ipc-macros) +2026-04-08T17:58:41.381263Z 01O Compiling datadog-sidecar-macros v0.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/datadog-sidecar-macros) +2026-04-08T17:58:41.381269Z 01O Compiling schemars_derive v0.8.21 +2026-04-08T17:58:41.881573Z 01O Compiling glibc_version v0.1.2 +2026-04-08T17:58:41.881585Z 01O Compiling matchers v0.2.0 +2026-04-08T17:58:41.881593Z 01O Compiling tracing-subscriber v0.3.22 +2026-04-08T17:58:41.881603Z 01O Compiling datadog-ipc v0.1.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/datadog-ipc) +2026-04-08T17:58:42.381913Z 01O Compiling tokio v1.49.0 +2026-04-08T17:58:42.381923Z 01O Compiling futures-util v0.3.31 +2026-04-08T17:58:42.381928Z 01O Compiling zerocopy v0.7.35 +2026-04-08T17:58:42.381934Z 01O Compiling pin-project v1.1.8 +2026-04-08T17:58:42.381937Z 01O Compiling env_logger v0.10.2 +2026-04-08T17:58:42.882829Z 01O Compiling darling_macro v0.20.10 +2026-04-08T17:58:42.882841Z 01O Compiling libdd-capabilities v0.1.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-capabilities) +2026-04-08T17:58:42.882846Z 01O Compiling prost v0.14.3 +2026-04-08T17:58:43.383737Z 01O Compiling ppv-lite86 v0.2.20 +2026-04-08T17:58:43.383754Z 01O Compiling darling v0.20.10 +2026-04-08T17:58:43.383759Z 01O Compiling serde_with_macros v3.12.0 +2026-04-08T17:58:43.383765Z 01O Compiling rand_chacha v0.3.1 +2026-04-08T17:58:43.884538Z 01O Compiling rand v0.8.5 +2026-04-08T17:58:44.885504Z 01O Compiling toml_datetime v0.6.8 +2026-04-08T17:58:44.885514Z 01O Compiling serde_spanned v0.6.8 +2026-04-08T17:58:45.385609Z 01O Compiling uuid v1.12.1 +2026-04-08T17:58:45.385625Z 01O Compiling serde_bytes v0.11.15 +2026-04-08T17:58:45.385633Z 01O Compiling rmp-serde v1.3.0 +2026-04-08T17:58:45.385651Z 01O Compiling libdd-tinybytes v1.1.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-tinybytes) +2026-04-08T17:58:45.385664Z 01O Compiling chrono v0.4.41 +2026-04-08T17:58:45.385669Z 01O Compiling halfbrown v0.2.5 +2026-04-08T17:58:45.385677Z 01O Compiling os_info v3.14.0 +2026-04-08T17:58:45.385679Z 01O Compiling deranged v0.3.11 +2026-04-08T17:58:45.385683Z 01O Compiling toml_edit v0.22.22 +2026-04-08T17:58:45.385688Z 01O Compiling serde_with v3.12.0 +2026-04-08T17:58:45.385691Z 01O Compiling bincode v1.3.3 +2026-04-08T17:58:45.385694Z 01O Compiling serde_yaml v0.9.34+deprecated +2026-04-08T17:58:45.385700Z 01O Compiling futures-executor v0.3.31 +2026-04-08T17:58:45.385703Z 01O Compiling http-body-util v0.1.2 +2026-04-08T17:58:45.886057Z 01O Compiling debugid v0.8.0 +2026-04-08T17:58:45.886067Z 01O Compiling futures v0.3.31 +2026-04-08T17:58:45.886071Z 01O Compiling symbolic-common v12.13.3 +2026-04-08T17:58:45.886076Z 01O Compiling value-trait v0.10.1 +2026-04-08T17:58:46.386801Z 01O Compiling manual_future v0.1.1 +2026-04-08T17:58:46.386815Z 01O Compiling time v0.3.37 +2026-04-08T17:58:46.386820Z 01O Compiling simd-json v0.14.3 +2026-04-08T17:58:47.888250Z 01O Compiling hyper v1.6.0 +2026-04-08T17:58:47.888283Z 01O Compiling toml v0.8.19 +2026-04-08T17:58:48.389193Z 01O Compiling libdd-trace-normalization v2.0.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-trace-normalization) +2026-04-08T17:58:48.389260Z 01O Compiling libdd-library-config v1.1.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-library-config) +2026-04-08T17:58:48.889400Z 01O Compiling tokio-util v0.7.13 +2026-04-08T17:58:48.889409Z 01O Compiling sendfd v0.4.3 +2026-04-08T17:58:48.889413Z 01O Compiling hyper-util v0.1.15 +2026-04-08T17:58:49.890421Z 01O Compiling libdd-common v3.0.2 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-common) +2026-04-08T17:58:50.891862Z 01O Compiling libdd-crashtracker v1.0.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-crashtracker) +2026-04-08T17:58:50.891874Z 01O Compiling build_common v30.0.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/build-common) +2026-04-08T17:58:51.392409Z 01O Compiling libdd-common-ffi v30.0.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-common-ffi) +2026-04-08T17:58:51.392425Z 01O Compiling libdd-telemetry-ffi v30.0.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-telemetry-ffi) +2026-04-08T17:58:51.392435Z 01O Compiling libdd-library-config-ffi v0.0.2 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-library-config-ffi) +2026-04-08T17:58:51.392445Z 01O Compiling libdd-crashtracker-ffi v30.0.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-crashtracker-ffi) +2026-04-08T17:58:51.392454Z 01O Compiling datadog-live-debugger-ffi v0.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/datadog-live-debugger-ffi) +2026-04-08T17:59:07.410109Z 01O Compiling rustls-webpki v0.103.9 +2026-04-08T17:59:10.914373Z 01O Compiling tokio-rustls v0.26.1 +2026-04-08T17:59:11.415153Z 01O Compiling hyper-rustls v0.27.7 +2026-04-08T17:59:11.915680Z 01O Compiling libdd-telemetry v4.0.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-telemetry) +2026-04-08T17:59:11.915714Z 01O Compiling libdd-capabilities-impl v0.1.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-capabilities-impl) +2026-04-08T17:59:11.915723Z 01O Compiling libdd-dogstatsd-client v2.0.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-dogstatsd-client) +2026-04-08T17:59:11.915747Z 01O Compiling libdd-trace-utils v3.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-trace-utils) +2026-04-08T17:59:12.917150Z 01O Compiling libdd-trace-stats v2.0.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-trace-stats) +2026-04-08T17:59:12.917161Z 01O Compiling libdd-data-pipeline v3.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-data-pipeline) +2026-04-08T17:59:13.918634Z 01O Compiling datadog-live-debugger v0.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/datadog-live-debugger) +2026-04-08T17:59:14.919440Z 01O Compiling datadog-remote-config v0.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/datadog-remote-config) +2026-04-08T17:59:41.952959Z 01O Compiling datadog-sidecar v0.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/datadog-sidecar) +2026-04-08T18:00:41.524471Z 01O Compiling ddtrace-php v0.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs) +2026-04-08T18:02:17.637455Z 01O Finished `tracer-release` profile [optimized + debuginfo] target(s) in 3m 48s +2026-04-08T18:02:18.138375Z 01O (cd "/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/php_sidecar_mockgen"; HOST= TARGET= CARGO_TARGET_DIR=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/target_mockgen/ cargo run /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/mock_php.c /opt/php/debug/bin/php /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/handlers_curl.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/hook/.libs/uhook_attributes.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/hook/.libs/uhook_otel.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/handlers_fiber.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/ddtrace.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/agent_info.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/asm_event.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/arrays.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/auto_flush.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/autoload_php_files.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/code_origins.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/collect_backtrace.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/comms_php.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/compat_string.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/coms.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/configuration.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/crashtracking_frames.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/ddshared.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/distributed_tracing_headers.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/dogstatsd.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/dogstatsd_client.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/endpoint_guessing.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/engine_api.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/engine_hooks.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/exception_serialize.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/excluded_modules.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/git.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/handlers_api.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/handlers_exception.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/handlers_httpstreams.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/handlers_internal.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/handlers_kafka.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/handlers_pcntl.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/handlers_signal.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/inferred_proxy_headers.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations/.libs/exec_integration.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations/.libs/integrations.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/ip_extraction.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/standalone_limiter.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/live_debugger.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/logging.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/limiter/.libs/limiter.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/memory_limit.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/otel_config.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/priority_sampling/.libs/priority_sampling.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/process_tags.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/profiling.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/random.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/remote_config.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/serializer.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/sidecar.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/signals.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/span.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/startup_logging.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/telemetry.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/threads.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/trace_source.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/tracer_tag_propagation/.libs/tracer_tag_propagation.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/user_request.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/weak_resources.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/hook/.libs/uhook.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/hook/.libs/uhook_legacy.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/compat_getrandom.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/interceptor/php8/.libs/interceptor.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/interceptor/php8/.libs/resolver.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/jit_utils/.libs/jit_blacklist.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/sandbox/php8/.libs/sandbox.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/.libs/config.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/.libs/config_decode.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/.libs/config_ini.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/.libs/config_stable_file.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/.libs/config_runtime.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/env/.libs/env.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/exceptions/.libs/exceptions.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/headers/.libs/headers.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/hook/.libs/hook.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/json/.libs/json.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/sandbox/.libs/call.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/uri_normalization/.libs/uri_normalization.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/zai_string/.libs/string.o) +2026-04-08T18:02:18.138491Z 01O warning: /go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-crashtracker-ffi/Cargo.toml: unused manifest key: target.cfg(windows).features +2026-04-08T18:02:18.138500Z 01O Downloading crates ... +2026-04-08T18:02:18.138507Z 01O Downloaded crc32fast v1.4.2 +2026-04-08T18:02:18.138509Z 01O Downloaded twox-hash v1.6.3 +2026-04-08T18:02:18.138513Z 01O Downloaded current_platform v0.2.0 +2026-04-08T18:02:18.138517Z 01O Downloaded ruzstd v0.3.1 +2026-04-08T18:02:18.138522Z 01O Downloaded object v0.31.1 +2026-04-08T18:02:18.138525Z 01O Downloaded flate2 v1.0.35 +2026-04-08T18:02:18.138530Z 01O Compiling proc-macro2 v1.0.93 +2026-04-08T18:02:18.138532Z 01O Compiling unicode-ident v1.0.14 +2026-04-08T18:02:18.138536Z 01O Compiling cfg-if v1.0.1 +2026-04-08T18:02:18.138541Z 01O Compiling thiserror v1.0.69 +2026-04-08T18:02:18.138543Z 01O Compiling adler2 v2.0.0 +2026-04-08T18:02:18.138546Z 01O Compiling static_assertions v1.1.0 +2026-04-08T18:02:18.138551Z 01O Compiling byteorder v1.5.0 +2026-04-08T18:02:18.138553Z 01O Compiling anyhow v1.0.98 +2026-04-08T18:02:18.138557Z 01O Compiling shlex v1.3.0 +2026-04-08T18:02:18.138582Z 01O Compiling find-msvc-tools v0.1.9 +2026-04-08T18:02:18.138596Z 01O Compiling current_platform v0.2.0 +2026-04-08T18:02:18.138602Z 01O Compiling memchr v2.7.4 +2026-04-08T18:02:18.138626Z 01O Compiling crc32fast v1.4.2 +2026-04-08T18:02:18.138629Z 01O Compiling twox-hash v1.6.3 +2026-04-08T18:02:18.138642Z 01O Compiling miniz_oxide v0.8.3 +2026-04-08T18:02:18.138648Z 01O Compiling cc v1.2.55 +2026-04-08T18:02:18.638948Z 01O Compiling flate2 v1.0.35 +2026-04-08T18:02:18.638958Z 01O Compiling quote v1.0.38 +2026-04-08T18:02:19.139673Z 01O Compiling cc_utils v0.1.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/tools/cc_utils) +2026-04-08T18:02:19.139683Z 01O Compiling syn v2.0.96 +2026-04-08T18:02:20.641345Z 01O Compiling thiserror-impl v1.0.69 +2026-04-08T18:02:21.142350Z 01O Compiling ruzstd v0.3.1 +2026-04-08T18:02:21.642911Z 01O Compiling object v0.31.1 +2026-04-08T18:02:24.145520Z 01O Compiling sidecar_mockgen v0.1.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/tools/sidecar_mockgen) +2026-04-08T18:02:24.646440Z 01O Compiling php_sidecar_mockgen v0.1.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/php_sidecar_mockgen) +2026-04-08T18:02:24.646461Z 01O Finished `dev` profile [unoptimized + debuginfo] target(s) in 6.69s +2026-04-08T18:02:24.646580Z 01O Running `/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/target_mockgen/debug/php_sidecar_mockgen /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/mock_php.c /opt/php/debug/bin/php /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/handlers_curl.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/hook/.libs/uhook_attributes.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/hook/.libs/uhook_otel.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/handlers_fiber.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/ddtrace.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/agent_info.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/asm_event.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/arrays.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/auto_flush.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/autoload_php_files.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/code_origins.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/collect_backtrace.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/comms_php.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/compat_string.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/coms.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/configuration.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/crashtracking_frames.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/ddshared.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/distributed_tracing_headers.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/dogstatsd.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/dogstatsd_client.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/endpoint_guessing.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/engine_api.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/engine_hooks.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/exception_serialize.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/excluded_modules.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/git.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/handlers_api.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/handlers_exception.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/handlers_httpstreams.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/handlers_internal.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/handlers_kafka.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/handlers_pcntl.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/handlers_signal.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/inferred_proxy_headers.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations/.libs/exec_integration.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations/.libs/integrations.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/ip_extraction.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/standalone_limiter.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/live_debugger.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/logging.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/limiter/.libs/limiter.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/memory_limit.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/otel_config.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/priority_sampling/.libs/priority_sampling.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/process_tags.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/profiling.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/random.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/remote_config.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/serializer.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/sidecar.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/signals.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/span.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/startup_logging.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/telemetry.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/threads.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/trace_source.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/tracer_tag_propagation/.libs/tracer_tag_propagation.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/user_request.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/weak_resources.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/hook/.libs/uhook.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/hook/.libs/uhook_legacy.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/compat_getrandom.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/interceptor/php8/.libs/interceptor.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/interceptor/php8/.libs/resolver.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/jit_utils/.libs/jit_blacklist.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/sandbox/php8/.libs/sandbox.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/.libs/config.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/.libs/config_decode.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/.libs/config_ini.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/.libs/config_stable_file.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/.libs/config_runtime.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/env/.libs/env.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/exceptions/.libs/exceptions.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/headers/.libs/headers.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/hook/.libs/hook.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/json/.libs/json.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/sandbox/.libs/call.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/uri_normalization/.libs/uri_normalization.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/zai_string/.libs/string.o` +2026-04-08T18:02:24.646689Z 01O OPT_LEVEL = Some(2) +2026-04-08T18:02:24.646695Z 01O TARGET = Some() +2026-04-08T18:02:24.646702Z 01O OUT_DIR = None +2026-04-08T18:02:24.646704Z 01O CARGO_ENCODED_RUSTFLAGS = None +2026-04-08T18:02:24.646708Z 01O CC_x86_64-unknown-linux-gnu = None +2026-04-08T18:02:24.646713Z 01O CC_x86_64_unknown_linux_gnu = None +2026-04-08T18:02:24.646716Z 01O HOST_CC = None +2026-04-08T18:02:24.646719Z 01O CC = None +2026-04-08T18:02:24.646724Z 01O cargo:rerun-if-env-changed=CC_ENABLE_DEBUG_OUTPUT +2026-04-08T18:02:24.646726Z 01O RUSTC_WRAPPER = None +2026-04-08T18:02:24.646730Z 01O CRATE_CC_NO_DEFAULTS = None +2026-04-08T18:02:24.646734Z 01O DEBUG = None +2026-04-08T18:02:24.646737Z 01O CFLAGS = None +2026-04-08T18:02:24.646740Z 01O HOST_CFLAGS = None +2026-04-08T18:02:24.646745Z 01O CFLAGS_x86_64_unknown_linux_gnu = None +2026-04-08T18:02:24.646748Z 01O CFLAGS_x86_64-unknown-linux-gnu = None +2026-04-08T18:02:24.646753Z 01O compiling: LC_ALL="C" "cc" "-O2" "-ffunction-sections" "-fdata-sections" "-fPIC" "-m64" "--target=x86_64-unknown-linux-gnu" "-Werror" "-Wall" "-Wextra" "-shared" "-o" "mock_php.shared_lib" "mock_php_syms.c" "-ldl" +2026-04-08T18:02:25.147096Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I/ -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension// -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -c //go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/mock_php.c -o //go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/mock_php.lo -MMD -MF //go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/mock_php.dep -MT //go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/mock_php.lo +2026-04-08T18:02:25.147124Z 01O mkdir //go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/.libs +2026-04-08T18:02:25.147154Z 01O cc -I/ -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension// -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -c //go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/mock_php.c -MMD -MF //go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/mock_php.dep -MT //go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/mock_php.lo -fPIC -DPIC -o //go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/.libs/mock_php.o +2026-04-08T18:02:25.147268Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=link cc -shared -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -Wl,--undefined-version -o ddtrace.la -export-dynamic -avoid-version -prefer-pic -module -rpath /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/modules -lcurl -lm -lrt -export-symbols /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ddtrace.sym -flto -fuse-linker-plugin /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/target/tracer-release/libddtrace_php.a components/container_id/container_id.lo components/log/log.lo components/sapi/sapi.lo components/string_view/string_view.lo zend_abstract_interface/interceptor/php8/interceptor.lo zend_abstract_interface/interceptor/php8/resolver.lo zend_abstract_interface/jit_utils/jit_blacklist.lo zend_abstract_interface/sandbox/php8/sandbox.lo zend_abstract_interface/config/config.lo zend_abstract_interface/config/config_decode.lo zend_abstract_interface/config/config_ini.lo zend_abstract_interface/config/config_stable_file.lo zend_abstract_interface/config/config_runtime.lo zend_abstract_interface/env/env.lo zend_abstract_interface/exceptions/exceptions.lo zend_abstract_interface/headers/headers.lo zend_abstract_interface/hook/hook.lo zend_abstract_interface/json/json.lo zend_abstract_interface/sandbox/call.lo zend_abstract_interface/uri_normalization/uri_normalization.lo zend_abstract_interface/zai_string/string.lo ext/vendor/mpack/mpack.lo ext/vendor/mt19937/mt19937-64.lo src/dogstatsd/client.lo ext/handlers_curl.lo ext/hook/uhook_attributes.lo ext/hook/uhook_otel.lo ext/handlers_fiber.lo ext/ddtrace.lo ext/agent_info.lo ext/asm_event.lo ext/arrays.lo ext/auto_flush.lo ext/autoload_php_files.lo ext/code_origins.lo ext/collect_backtrace.lo ext/comms_php.lo ext/compat_string.lo ext/coms.lo ext/configuration.lo ext/crashtracking_frames.lo ext/ddshared.lo ext/distributed_tracing_headers.lo ext/dogstatsd.lo ext/dogstatsd_client.lo ext/endpoint_guessing.lo ext/engine_api.lo ext/engine_hooks.lo ext/exception_serialize.lo ext/excluded_modules.lo ext/git.lo ext/handlers_api.lo ext/handlers_exception.lo ext/handlers_httpstreams.lo ext/handlers_internal.lo ext/handlers_kafka.lo ext/handlers_pcntl.lo ext/handlers_signal.lo ext/inferred_proxy_headers.lo ext/integrations/exec_integration.lo ext/integrations/integrations.lo ext/ip_extraction.lo ext/standalone_limiter.lo ext/live_debugger.lo ext/logging.lo ext/limiter/limiter.lo ext/memory_limit.lo ext/otel_config.lo ext/priority_sampling/priority_sampling.lo ext/process_tags.lo ext/profiling.lo ext/random.lo ext/remote_config.lo ext/serializer.lo ext/sidecar.lo ext/signals.lo ext/span.lo ext/startup_logging.lo ext/telemetry.lo ext/threads.lo ext/trace_source.lo ext/tracer_tag_propagation/tracer_tag_propagation.lo ext/user_request.lo ext/weak_resources.lo ext/hook/uhook.lo ext/hook/uhook_legacy.lo ext/compat_getrandom.lo //go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/mock_php.lo -lrt +2026-04-08T18:02:25.647716Z 01O mkdir .libs +2026-04-08T18:02:25.647724Z 01O +2026-04-08T18:02:25.647730Z 01O *** Warning: Linking the shared library ddtrace.la against the +2026-04-08T18:02:25.647737Z 01O *** static library /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/target/tracer-release/libddtrace_php.a is not portable! +2026-04-08T18:02:25.647741Z 01O echo "{ global:" > .libs/ddtrace.ver +2026-04-08T18:02:25.647746Z 01O cat /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ddtrace.sym | sed -e "s/\(.*\)/\1;/" >> .libs/ddtrace.ver +2026-04-08T18:02:25.647753Z 01O echo "local: *; };" >> .libs/ddtrace.ver +2026-04-08T18:02:25.647786Z 01O cc -shared components/container_id/.libs/container_id.o components/log/.libs/log.o components/sapi/.libs/sapi.o components/string_view/.libs/string_view.o zend_abstract_interface/interceptor/php8/.libs/interceptor.o zend_abstract_interface/interceptor/php8/.libs/resolver.o zend_abstract_interface/jit_utils/.libs/jit_blacklist.o zend_abstract_interface/sandbox/php8/.libs/sandbox.o zend_abstract_interface/config/.libs/config.o zend_abstract_interface/config/.libs/config_decode.o zend_abstract_interface/config/.libs/config_ini.o zend_abstract_interface/config/.libs/config_stable_file.o zend_abstract_interface/config/.libs/config_runtime.o zend_abstract_interface/env/.libs/env.o zend_abstract_interface/exceptions/.libs/exceptions.o zend_abstract_interface/headers/.libs/headers.o zend_abstract_interface/hook/.libs/hook.o zend_abstract_interface/json/.libs/json.o zend_abstract_interface/sandbox/.libs/call.o zend_abstract_interface/uri_normalization/.libs/uri_normalization.o zend_abstract_interface/zai_string/.libs/string.o ext/vendor/mpack/.libs/mpack.o ext/vendor/mt19937/.libs/mt19937-64.o src/dogstatsd/.libs/client.o ext/.libs/handlers_curl.o ext/hook/.libs/uhook_attributes.o ext/hook/.libs/uhook_otel.o ext/.libs/handlers_fiber.o ext/.libs/ddtrace.o ext/.libs/agent_info.o ext/.libs/asm_event.o ext/.libs/arrays.o ext/.libs/auto_flush.o ext/.libs/autoload_php_files.o ext/.libs/code_origins.o ext/.libs/collect_backtrace.o ext/.libs/comms_php.o ext/.libs/compat_string.o ext/.libs/coms.o ext/.libs/configuration.o ext/.libs/crashtracking_frames.o ext/.libs/ddshared.o ext/.libs/distributed_tracing_headers.o ext/.libs/dogstatsd.o ext/.libs/dogstatsd_client.o ext/.libs/endpoint_guessing.o ext/.libs/engine_api.o ext/.libs/engine_hooks.o ext/.libs/exception_serialize.o ext/.libs/excluded_modules.o ext/.libs/git.o ext/.libs/handlers_api.o ext/.libs/handlers_exception.o ext/.libs/handlers_httpstreams.o ext/.libs/handlers_internal.o ext/.libs/handlers_kafka.o ext/.libs/handlers_pcntl.o ext/.libs/handlers_signal.o ext/.libs/inferred_proxy_headers.o ext/integrations/.libs/exec_integration.o ext/integrations/.libs/integrations.o ext/.libs/ip_extraction.o ext/.libs/standalone_limiter.o ext/.libs/live_debugger.o ext/.libs/logging.o ext/limiter/.libs/limiter.o ext/.libs/memory_limit.o ext/.libs/otel_config.o ext/priority_sampling/.libs/priority_sampling.o ext/.libs/process_tags.o ext/.libs/profiling.o ext/.libs/random.o ext/.libs/remote_config.o ext/.libs/serializer.o ext/.libs/sidecar.o ext/.libs/signals.o ext/.libs/span.o ext/.libs/startup_logging.o ext/.libs/telemetry.o ext/.libs/threads.o ext/.libs/trace_source.o ext/tracer_tag_propagation/.libs/tracer_tag_propagation.o ext/.libs/user_request.o ext/.libs/weak_resources.o ext/hook/.libs/uhook.o ext/hook/.libs/uhook_legacy.o ext/.libs/compat_getrandom.o //go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/.libs/mock_php.o -lcurl -lm /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/target/tracer-release/libddtrace_php.a -lrt -pthread -Wl,--undefined-version -Wl,-soname -Wl,ddtrace.so -Wl,-version-script -Wl,.libs/ddtrace.ver -o .libs/ddtrace.so +2026-04-08T18:02:26.148244Z 01O creating ddtrace.la +2026-04-08T18:02:26.148279Z 01O (cd .libs && rm -f ddtrace.la && ln -s ../ddtrace.la ddtrace.la) +2026-04-08T18:02:26.148287Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=install cp ./ddtrace.la /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/modules +2026-04-08T18:02:26.148296Z 01O cp ./.libs/ddtrace.so /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/modules/ddtrace.so +2026-04-08T18:02:26.148300Z 01O cp ./.libs/ddtrace.lai /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/modules/ddtrace.la +2026-04-08T18:02:26.148305Z 01O PATH="$PATH:/sbin" ldconfig -n /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/modules +2026-04-08T18:02:26.148312Z 01O ---------------------------------------------------------------------- +2026-04-08T18:02:26.148315Z 01O Libraries have been installed in: +2026-04-08T18:02:26.148320Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/modules +2026-04-08T18:02:26.148324Z 01O +2026-04-08T18:02:26.148327Z 01O If you ever happen to want to link against installed libraries +2026-04-08T18:02:26.148330Z 01O in a given directory, LIBDIR, you must either use libtool, and +2026-04-08T18:02:26.148336Z 01O specify the full pathname of the library, or use the `-LLIBDIR' +2026-04-08T18:02:26.148340Z 01O flag during linking and do at least one of the following: +2026-04-08T18:02:26.148365Z 01O - add LIBDIR to the `LD_LIBRARY_PATH' environment variable +2026-04-08T18:02:26.148398Z 01O during execution +2026-04-08T18:02:26.148411Z 01O - add LIBDIR to the `LD_RUN_PATH' environment variable +2026-04-08T18:02:26.148420Z 01O during linking +2026-04-08T18:02:26.148424Z 01O - use the `-Wl,--rpath -Wl,LIBDIR' linker flag +2026-04-08T18:02:26.148427Z 01O - have your system administrator add LIBDIR to `/etc/ld.so.conf' +2026-04-08T18:02:26.148432Z 01O +2026-04-08T18:02:26.148438Z 01O See any operating system documentation about shared libraries for +2026-04-08T18:02:26.148441Z 01O more information, such as the ld(1) and ld.so(8) manual pages. +2026-04-08T18:02:26.148493Z 01O ---------------------------------------------------------------------- +2026-04-08T18:02:26.148514Z 01O +2026-04-08T18:02:26.148517Z 01O Build complete. +2026-04-08T18:02:26.148522Z 01O Don't forget to run 'make test'. +2026-04-08T18:02:26.148538Z 01O +2026-04-08T18:02:26.148545Z 01O make[5]: Leaving directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension' +2026-04-08T18:02:26.148551Z 01O make[4]: Leaving directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php' +2026-04-08T18:02:26.148557Z 01O make[3]: Leaving directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' +2026-04-08T18:02:26.148561Z 01O [ 53%] Built target ddtrace +2026-04-08T18:02:26.148566Z 01O make[2]: Leaving directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' +2026-04-08T18:02:26.148571Z 01O make[1]: *** [CMakeFiles/Makefile2:537: CMakeFiles/xtest.dir/rule] Error 2 +2026-04-08T18:02:26.148575Z 01O make[1]: Leaving directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' +2026-04-08T18:02:26.148578Z 01O make: *** [Makefile:268: xtest] Error 2 +2026-04-08T18:02:26.148584Z 01O +2026-04-08T18:02:26.148643Z 00O section_end:1775671346:step_script +2026-04-08T18:02:26.148645Z 00O+section_start:1775671346:cleanup_file_variables[collapsed=true] +2026-04-08T18:02:26.150240Z 00O+Cleaning up project directory and file based variables +2026-04-08T18:02:26.649018Z 01O +2026-04-08T18:02:26.649088Z 00O section_end:1775671346:cleanup_file_variables +2026-04-08T18:02:26.649090Z 00O+ +2026-04-08T18:02:26.888495Z 00O ERROR: Job failed: command terminated with exit code 1 +2026-04-08T18:02:26.888501Z 00O  diff --git a/appsec-limits.diff b/appsec-limits.diff new file mode 100644 index 00000000000..faab5aed827 --- /dev/null +++ b/appsec-limits.diff @@ -0,0 +1,16 @@ +diff --git a/.gitlab/generate-appsec.php b/.gitlab/generate-appsec.php +index cd8ef347a..cf729d887 100644 +--- a/.gitlab/generate-appsec.php ++++ b/.gitlab/generate-appsec.php +@@ -71,8 +71,9 @@ stages: + image: registry.ddbuild.io/images/mirror/datadog/dd-trace-ci:php-${PHP_MAJOR_MINOR}_bookworm-6 + variables: + KUBERNETES_CPU_REQUEST: 3 +- KUBERNETES_MEMORY_REQUEST: 4Gi +- KUBERNETES_MEMORY_LIMIT: 4Gi ++ KUBERNETES_CPU_LIMIT: 3 ++ KUBERNETES_MEMORY_REQUEST: 6Gi ++ KUBERNETES_MEMORY_LIMIT: 6Gi + parallel: + matrix: + - PHP_MAJOR_MINOR: *all_minor_major_targets diff --git a/dockerfiles/dev/run_zai_tests_linux.sh b/dockerfiles/dev/run_zai_tests_linux.sh new file mode 100755 index 00000000000..c8c44ccef01 --- /dev/null +++ b/dockerfiles/dev/run_zai_tests_linux.sh @@ -0,0 +1,76 @@ +#!/usr/bin/env bash +# Run zend_abstract_interface tests (including "SAPI env takes priority over cache") +# inside the dd-trace-php 8.5-bookworm Linux container. +# +# Usage (from repo root): +# ./dockerfiles/dev/run_zai_tests_linux.sh +# → runs this script inside the container (container entrypoint must pass through) +# +# ./dockerfiles/dev/run_zai_tests_linux.sh --docker +# → starts 8.5-bookworm and runs this script inside it (use from host) +# +# With Linux override (recommended on Linux hosts): +# docker compose -f docker-compose.yml -f docker-compose.linux.override.yml run --rm --no-deps 8.5-bookworm ./dockerfiles/dev/run_zai_tests_linux.sh + +set -euo pipefail + +if [[ "${1:-}" == "--docker" ]]; then + SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" + REPO_ROOT="$(cd "${SCRIPT_DIR}/../.." && pwd)" + cd "${REPO_ROOT}" + COMPOSE_FILES="-f docker-compose.yml" + [[ "$(uname)" != "Darwin" && -f docker-compose.linux.override.yml ]] && COMPOSE_FILES="${COMPOSE_FILES} -f docker-compose.linux.override.yml" + # Use container path; repo is mounted at /home/circleci/app + # Named volume zai_linux_build persists build artifacts across runs for faster incremental builds. + # Docker creates named volumes owned by root, so fix permissions first (idempotent). + docker run --rm -v zai_linux_build:/build alpine chmod 777 /build + exec docker compose ${COMPOSE_FILES} run --rm --no-deps \ + -v zai_linux_build:/home/circleci/app/tmp/linux_zai_build \ + 7.0-bookworm /home/circleci/app/dockerfiles/dev/run_zai_tests_linux.sh +fi + +APP_DIR="${APP_DIR:-/home/circleci/app}" +# In CI image, default PHP is switch-php debug → /opt/php/debug +PHP_PREFIX="${PHP_PREFIX:-/opt/php/debug}" +BUILD_DIR="${APP_DIR}/tmp/linux_zai_build" +TEA_BUILD="${BUILD_DIR}/tea-build" +TEA_INSTALL="${BUILD_DIR}/tea-install" +ZAI_BUILD="${BUILD_DIR}/zai-build" + +echo "=== PHP ===" +php -v +php-config --version +echo "PhpConfig_ROOT=${PHP_PREFIX}" + +echo "=== Build Tea ===" +mkdir -p "${TEA_BUILD}" "${TEA_INSTALL}" +cd "${TEA_BUILD}" +if [[ ! -f CMakeCache.txt ]]; then + cmake -DPhpConfig_ROOT="${PHP_PREFIX}" \ + -DCMAKE_BUILD_TYPE=Debug \ + -DCMAKE_INSTALL_PREFIX="${TEA_INSTALL}" \ + "${APP_DIR}/tea" +fi +cmake --build . +cmake --install . + +echo "=== Build zend_abstract_interface with tests ===" +mkdir -p "${ZAI_BUILD}" +cd "${ZAI_BUILD}" +if [[ ! -f CMakeCache.txt ]]; then + cmake -DPhpConfig_ROOT="${PHP_PREFIX}" \ + -DBUILD_ZAI_TESTING=ON \ + -DTea_DIR="${TEA_INSTALL}/cmake" \ + -DCMAKE_BUILD_TYPE=Debug \ + "${APP_DIR}/zend_abstract_interface" +fi +cmake --build . + +echo "=== Run config tests (SAPI env takes priority) ===" +ctest -R "SAPI env takes priority" --output-on-failure -V + +echo "=== Run all config tests ===" +ctest -R "config/" --output-on-failure + +echo "=== Run all env tests ===" +ctest -R "env/" --output-on-failure diff --git a/librust_out.rlib b/librust_out.rlib new file mode 100644 index 0000000000000000000000000000000000000000..8c4270aff929ab2e8b227c655657de56250845f2 GIT binary patch literal 4608 zcmcf^ZE#z~@!pfHC)>(cCalcRi+6DaEl3HQdfouUnOttGP|1Wv>Ev6=maia?P?@y)d9Q&1x;U=f3q- ztJk17h!QPszN_5g!orw9jh>4mY;9WoCR>5m?ey^==be9k`lSpZ0?Wje7)n-*!W@LM zp$x{b>sJR;;(UE#jzCku#zhcyWx<3PtF`Lhio1oAC793%^96ZVdk~p~BP|eFP~!5_ zuXN!-nE$yX&cdw}P&~pCXZ=rVZ%eZe1f}v=VF0<9VP`c3`oaPYo98UixC}h}SS_b5 z%I7rs+LG^u$oIq^$Fcjj?%ZYCQF`RKt75YZks0~U5?ygoA;%TDIDH|n(S#8Bq_{@^ z#N_2)4E^;L(W>p8{-2s-1B+a|UZX4Ioi=Alq0JG3v&Po7Hv1gbwnp!kW)E+7TJ4Qq zXK3r<>XrFBj-UQV`H^i)n_e2i0ys{m;an~aZ*b{KiVI<-Anct$A}A@ayI3O-1c4+d z#a`#MZwVnHMM{>$#*mxX6l)SzI4P?52(-zH5QZ%unW9LvV@f3}ca*S& zWXlmFXYPGD@_fU`_h;tm-afF3zbmjimO?y9NVyK=z`|`&WMF9 zx;PcRy>$O&^Evg&+{>JZSRn|Gi}xbpHrTPU>xm!PTFoi{G$6ue|zJB+o%7qe8nT!bWo&U zkuQ<2k$)zSkmpH1d1sZmnvjZF?D!bu@dnrA>r>!>362UVb|Vp+#bp$>Ru8T$s;$JoV0e z2k&j$)DSYO>OSuF)h;jFw)6YAy4*s|A)x3NcojdjQ3 z?R8>byc6oCgl|nGtSHceZiF1cYV|qWafC{M)mpu}rdpt`Z3THrJ^mydS*^BBK6|4> zP@dJgZrzX9Cy$8Zo}~RHLgTfAfMd1V-H!TA4c{bBkRx1HbLw@)Tw#7&K45|Q_}LkP z76Q+_d;s%t!63A8>buudhZe_@kW83j0Uh8+qSAC|st6d^QEW0!QSoNl3$^Jl%Bha1 zq$w(C8JAqJFc-@ix14J5Q$AphOMska=~)Y1naSP*^VHx+-JpbYQXPA8aXvfEY@!9ID#Gj*ZO~g6Xq5(=+Jha3 zg8E)ji66ee0+)q$kJFuVw7Z{fEvGtbDc`u{teo=tsm@sKj?&F+g8xdKQ=4{8T4#F zJ2bVrE+T388Xj-KF1a zTDd!5j96|-9Hchb)=sq#-nH&hKZ7-(+N?UtE6%8uQz7L~2o>J2S~_rn6^ zKg``XK$P}{O9#UGannk;P7%!=Qh{T<-rOTj0+Dl=>9m1U=TwPrTAt8eGdcdLfvd5%(zw(@8F z>OFb#c68(>c-PjN*mcfUXFZO0cDB{&ZQj(_@ZbOQZ-0S8q~PAeu^#SD+@GhM0?UNJtb7>i#7K148=KzX1`Kb_tiH%Q7m zdQkraI9V93gAr~YybWU_BWxMH3wbZjZm3A369Z)a`!QN(LCPOY7{X&p|Tj`zB+B(!ec z-q_r((LjF0eM value or use a ... suffix to tell +2026-04-08T19:20:07.209508Z 01O CMake that the project does not need compatibility with older versions. +2026-04-08T19:20:07.209510Z 01O +2026-04-08T19:20:07.209513Z 01O +2026-04-08T19:20:07.209518Z 01O -- Could NOT find GTestSrc (missing: GTEST_SOURCE_DIR GTEST_INCLUDE_DIR) +2026-04-08T19:20:07.209521Z 01O [ 11%] Building C object _deps/zlib-build/CMakeFiles/zlibstatic.dir/inflate.c.o +2026-04-08T19:20:07.209535Z 01O -- Configuring done +2026-04-08T19:20:07.209556Z 01O -- Generating done +2026-04-08T19:20:07.209560Z 01O CMake Warning: +2026-04-08T19:20:07.209564Z 01O Manually-specified variables were not used by the project: +2026-04-08T19:20:07.209569Z 01O +2026-04-08T19:20:07.209571Z 01O CMAKE_POLICY_VERSION_MINIMUM +2026-04-08T19:20:07.209615Z 01O +2026-04-08T19:20:07.209620Z 01O +2026-04-08T19:20:07.209629Z 01O -- Build files have been written to: /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/third_party/libddwaf/third_party/proj_rapidjson-prefix/src/proj_rapidjson-build +2026-04-08T19:20:07.209634Z 01O [ 12%] No build step for 'proj_rapidjson' +2026-04-08T19:20:07.209640Z 01O [ 14%] Performing install step for 'proj_rapidjson' +2026-04-08T19:20:07.209643Z 01O [ 15%] Building C object _deps/zlib-build/CMakeFiles/zlibstatic.dir/infback.c.o +2026-04-08T19:20:07.209646Z 01O [ 15%] Completed 'proj_rapidjson' +2026-04-08T19:20:07.209654Z 01O [ 15%] Built target proj_rapidjson +2026-04-08T19:20:07.209657Z 01O [ 15%] Building C object _deps/zlib-build/CMakeFiles/zlibstatic.dir/inftrees.c.o +2026-04-08T19:20:07.209661Z 01O [ 15%] Building C object _deps/zlib-build/CMakeFiles/zlibstatic.dir/inffast.c.o +2026-04-08T19:20:07.209668Z 01O [ 15%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/clock.cpp.o +2026-04-08T19:20:07.209671Z 01O [ 15%] Linking CXX static library libcpp-base64.a +2026-04-08T19:20:07.209675Z 01O [ 17%] Building C object _deps/zlib-build/CMakeFiles/zlibstatic.dir/trees.c.o +2026-04-08T19:20:07.209681Z 01O [ 17%] Built target cpp-base64 +2026-04-08T19:20:07.209683Z 01O [ 17%] Building C object _deps/zlib-build/CMakeFiles/zlibstatic.dir/uncompr.c.o +2026-04-08T19:20:07.209689Z 01O [ 17%] Building C object _deps/zlib-build/CMakeFiles/zlibstatic.dir/zutil.c.o +2026-04-08T19:20:07.710101Z 01O [ 17%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/interface.cpp.o +2026-04-08T19:20:07.710112Z 01O [ 19%] Linking C static library libz.a +2026-04-08T19:20:07.710117Z 01O [ 19%] Built target zlibstatic +2026-04-08T19:20:07.710122Z 01O [ 20%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/context.cpp.o +2026-04-08T19:20:08.711354Z 01O [ 20%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/context_allocator.cpp.o +2026-04-08T19:20:09.711869Z 01O In file included from /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/libddwaf/src/context.cpp:15: +2026-04-08T19:20:09.711879Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/libddwaf/src/context.hpp:50:5: warning: explicitly defaulted move constructor is implicitly deleted [-Wdefaulted-function-deleted] +2026-04-08T19:20:09.711886Z 01O 50 | context(context &&) = default; +2026-04-08T19:20:09.711893Z 01O | ^ +2026-04-08T19:20:09.711896Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/libddwaf/src/context.hpp:90:25: note: move constructor of 'context' is implicitly deleted because field 'collector_' has a deleted move constructor +2026-04-08T19:20:09.711903Z 01O 90 | attribute_collector collector_; +2026-04-08T19:20:09.711918Z 01O | ^ +2026-04-08T19:20:09.711931Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/libddwaf/src/attribute_collector.hpp:37:5: note: 'attribute_collector' has been explicitly marked deleted here +2026-04-08T19:20:09.711941Z 01O 37 | attribute_collector(attribute_collector &&other) noexcept = delete; +2026-04-08T19:20:09.711948Z 01O | ^ +2026-04-08T19:20:09.711952Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/libddwaf/src/context.hpp:50:27: note: replace 'default' with 'delete' +2026-04-08T19:20:09.711956Z 01O 50 | context(context &&) = default; +2026-04-08T19:20:09.711962Z 01O | ^~~~~~~ +2026-04-08T19:20:09.711964Z 01O | delete +2026-04-08T19:20:09.711969Z 01O [ 20%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/serializer.cpp.o +2026-04-08T19:20:09.711976Z 01O [ 20%] Building CXX object _deps/spdlog-build/CMakeFiles/spdlog.dir/src/stdout_sinks.cpp.o +2026-04-08T19:20:10.212315Z 01O In file included from /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/libddwaf/src/interface.cpp:18: +2026-04-08T19:20:10.212379Z 01O In file included from /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/libddwaf/src/builder/waf_builder.hpp:14: +2026-04-08T19:20:10.212394Z 01O In file included from /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/libddwaf/src/waf.hpp:11: +2026-04-08T19:20:10.212405Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/libddwaf/src/context.hpp:50:5: warning: explicitly defaulted move constructor is implicitly deleted [-Wdefaulted-function-deleted] +2026-04-08T19:20:10.212417Z 01O 50 | context(context &&) = default; +2026-04-08T19:20:10.212421Z 01O | ^ +2026-04-08T19:20:10.212451Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/libddwaf/src/context.hpp:90:25: note: move constructor of 'context' is implicitly deleted because field 'collector_' has a deleted move constructor +2026-04-08T19:20:10.212465Z 01O 90 | attribute_collector collector_; +2026-04-08T19:20:10.212478Z 01O | ^ +2026-04-08T19:20:10.212482Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/libddwaf/src/attribute_collector.hpp:37:5: note: 'attribute_collector' has been explicitly marked deleted here +2026-04-08T19:20:10.212488Z 01O 37 | attribute_collector(attribute_collector &&other) noexcept = delete; +2026-04-08T19:20:10.212495Z 01O | ^ +2026-04-08T19:20:10.212498Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/libddwaf/src/context.hpp:50:27: note: replace 'default' with 'delete' +2026-04-08T19:20:10.212503Z 01O 50 | context(context &&) = default; +2026-04-08T19:20:10.212511Z 01O | ^~~~~~~ +2026-04-08T19:20:10.212516Z 01O | delete +2026-04-08T19:20:10.713051Z 01O 1 warning generated. +2026-04-08T19:20:10.713063Z 01O [ 22%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/object.cpp.o +2026-04-08T19:20:11.213489Z 01O [ 22%] Building CXX object _deps/spdlog-build/CMakeFiles/spdlog.dir/src/color_sinks.cpp.o +2026-04-08T19:20:11.714008Z 01O 1 warning generated. +2026-04-08T19:20:11.714022Z 01O [ 22%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/object_helpers.cpp.o +2026-04-08T19:20:12.214805Z 01O [ 22%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/object_store.cpp.o +2026-04-08T19:20:12.214815Z 01O [ 23%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/module.cpp.o +2026-04-08T19:20:12.715429Z 01O [ 25%] Building CXX object _deps/spdlog-build/CMakeFiles/spdlog.dir/src/file_sinks.cpp.o +2026-04-08T19:20:13.215908Z 01O [ 25%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/expression.cpp.o +2026-04-08T19:20:13.716753Z 01O [ 25%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/ruleset_info.cpp.o +2026-04-08T19:20:14.216946Z 01O [ 25%] Building CXX object _deps/spdlog-build/CMakeFiles/spdlog.dir/src/async.cpp.o +2026-04-08T19:20:14.216959Z 01O [ 26%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/ip_utils.cpp.o +2026-04-08T19:20:15.218005Z 01O [ 26%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/iterator.cpp.o +2026-04-08T19:20:15.218015Z 01O [ 26%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/log.cpp.o +2026-04-08T19:20:15.718713Z 01O [ 28%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/obfuscator.cpp.o +2026-04-08T19:20:15.718722Z 01O [ 28%] Building CXX object _deps/spdlog-build/CMakeFiles/spdlog.dir/src/cfg.cpp.o +2026-04-08T19:20:15.718727Z 01O [ 30%] Building CXX object _deps/spdlog-build/CMakeFiles/spdlog.dir/src/bundled_fmtlib_format.cpp.o +2026-04-08T19:20:16.719744Z 01O [ 30%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/uri_utils.cpp.o +2026-04-08T19:20:16.719760Z 01O [ 30%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/json_utils.cpp.o +2026-04-08T19:20:17.220395Z 01O [ 31%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/platform.cpp.o +2026-04-08T19:20:17.220404Z 01O [ 31%] Linking CXX static library libspdlogd.a +2026-04-08T19:20:17.220408Z 01O [ 31%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/sha256.cpp.o +2026-04-08T19:20:17.721020Z 01O [ 31%] Built target spdlog +2026-04-08T19:20:17.721041Z 01O [ 31%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/uuid.cpp.o +2026-04-08T19:20:17.721047Z 01O [ 33%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/action_mapper.cpp.o +2026-04-08T19:20:18.221799Z 01O [ 33%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/attribute_collector.cpp.o +2026-04-08T19:20:18.221816Z 01O [ 33%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/rule.cpp.o +2026-04-08T19:20:18.721927Z 01O [ 34%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/utf8.cpp.o +2026-04-08T19:20:19.222301Z 01O [ 34%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/builder/action_mapper_builder.cpp.o +2026-04-08T19:20:19.722990Z 01O [ 34%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/builder/matcher_builder.cpp.o +2026-04-08T19:20:20.223858Z 01O [ 36%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/builder/module_builder.cpp.o +2026-04-08T19:20:20.223873Z 01O [ 36%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/builder/processor_builder.cpp.o +2026-04-08T19:20:20.724393Z 01O [ 36%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/builder/ruleset_builder.cpp.o +2026-04-08T19:20:22.226062Z 01O [ 38%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/builder/checksum_builder.cpp.o +2026-04-08T19:20:22.226073Z 01O [ 38%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/tokenizer/sql_base.cpp.o +2026-04-08T19:20:22.726740Z 01O [ 38%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/tokenizer/pgsql.cpp.o +2026-04-08T19:20:23.727588Z 01O [ 39%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/tokenizer/mysql.cpp.o +2026-04-08T19:20:23.727598Z 01O [ 39%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/tokenizer/sqlite.cpp.o +2026-04-08T19:20:24.227960Z 01O [ 39%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/tokenizer/generic_sql.cpp.o +2026-04-08T19:20:25.229301Z 01O [ 41%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/tokenizer/shell.cpp.o +2026-04-08T19:20:25.229310Z 01O [ 41%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/exclusion/input_filter.cpp.o +2026-04-08T19:20:25.729963Z 01O [ 41%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/exclusion/object_filter.cpp.o +2026-04-08T19:20:25.729972Z 01O [ 42%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/exclusion/rule_filter.cpp.o +2026-04-08T19:20:26.730955Z 01O [ 42%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/configuration/common/expression_parser.cpp.o +2026-04-08T19:20:27.231681Z 01O [ 42%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/configuration/common/matcher_parser.cpp.o +2026-04-08T19:20:27.732011Z 01O [ 44%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/configuration/common/transformer_parser.cpp.o +2026-04-08T19:20:27.732022Z 01O [ 44%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/configuration/common/raw_configuration.cpp.o +2026-04-08T19:20:29.233571Z 01O [ 44%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/configuration/common/reference_parser.cpp.o +2026-04-08T19:20:29.233634Z 01O [ 46%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/configuration/actions_parser.cpp.o +2026-04-08T19:20:29.733721Z 01O [ 46%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/configuration/data_parser.cpp.o +2026-04-08T19:20:29.733729Z 01O [ 46%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/configuration/exclusion_parser.cpp.o +2026-04-08T19:20:31.735198Z 01O [ 47%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/configuration/processor_parser.cpp.o +2026-04-08T19:20:32.736492Z 01O [ 47%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/configuration/processor_override_parser.cpp.o +2026-04-08T19:20:32.736501Z 01O [ 47%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/configuration/rule_override_parser.cpp.o +2026-04-08T19:20:33.737642Z 01O [ 49%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/configuration/rule_parser.cpp.o +2026-04-08T19:20:35.740003Z 01O [ 49%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/configuration/legacy_rule_parser.cpp.o +2026-04-08T19:20:35.740018Z 01O [ 49%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/configuration/scanner_parser.cpp.o +2026-04-08T19:20:35.740025Z 01O [ 50%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/configuration/configuration_manager.cpp.o +2026-04-08T19:20:37.242057Z 01O [ 50%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/processor/extract_schema.cpp.o +2026-04-08T19:20:38.743556Z 01O [ 50%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/processor/fingerprint.cpp.o +2026-04-08T19:20:39.244240Z 01O [ 52%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/processor/jwt_decode.cpp.o +2026-04-08T19:20:39.244250Z 01O [ 52%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/processor/uri_parse.cpp.o +2026-04-08T19:20:39.744822Z 01O [ 52%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/condition/exists.cpp.o +2026-04-08T19:20:41.246723Z 01O [ 53%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/condition/lfi_detector.cpp.o +2026-04-08T19:20:41.246733Z 01O [ 53%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/condition/sqli_detector.cpp.o +2026-04-08T19:20:41.747391Z 01O [ 53%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/condition/ssrf_detector.cpp.o +2026-04-08T19:20:41.747405Z 01O [ 55%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/condition/scalar_condition.cpp.o +2026-04-08T19:20:42.748692Z 01O [ 55%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/condition/negated_scalar_condition.cpp.o +2026-04-08T19:20:43.749966Z 01O [ 55%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/condition/shi_common.cpp.o +2026-04-08T19:20:43.749982Z 01O [ 57%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/condition/shi_detector.cpp.o +2026-04-08T19:20:43.749993Z 01O [ 57%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/condition/cmdi_detector.cpp.o +2026-04-08T19:20:45.250956Z 01O [ 57%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/checksum/luhn_checksum.cpp.o +2026-04-08T19:20:45.250967Z 01O [ 58%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/matcher/phrase_match.cpp.o +2026-04-08T19:20:46.251977Z 01O [ 58%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/matcher/regex_match.cpp.o +2026-04-08T19:20:46.251985Z 01O [ 58%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/matcher/regex_match_with_checksum.cpp.o +2026-04-08T19:20:46.251989Z 01O [ 58%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/matcher/is_sqli.cpp.o +2026-04-08T19:20:46.752871Z 01O [ 60%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/matcher/is_xss.cpp.o +2026-04-08T19:20:47.253509Z 01O [ 60%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/matcher/ip_match.cpp.o +2026-04-08T19:20:47.253541Z 01O [ 60%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/matcher/exact_match.cpp.o +2026-04-08T19:20:47.253546Z 01O [ 61%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/matcher/hidden_ascii_match.cpp.o +2026-04-08T19:20:47.754346Z 01O [ 61%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/transformer/lowercase.cpp.o +2026-04-08T19:20:48.755472Z 01O [ 61%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/transformer/compress_whitespace.cpp.o +2026-04-08T19:20:48.755481Z 01O [ 63%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/transformer/normalize_path.cpp.o +2026-04-08T19:20:48.755488Z 01O [ 63%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/transformer/manager.cpp.o +2026-04-08T19:20:49.255732Z 01O [ 63%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/transformer/remove_nulls.cpp.o +2026-04-08T19:20:49.755902Z 01O [ 65%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/transformer/remove_comments.cpp.o +2026-04-08T19:20:50.256695Z 01O [ 65%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/transformer/shell_unescape.cpp.o +2026-04-08T19:20:50.256702Z 01O [ 65%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/transformer/unicode_normalize.cpp.o +2026-04-08T19:20:50.757209Z 01O [ 66%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/transformer/url_basename.cpp.o +2026-04-08T19:20:51.257921Z 01O [ 66%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/transformer/url_decode.cpp.o +2026-04-08T19:20:51.257931Z 01O [ 66%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/transformer/url_querystring.cpp.o +2026-04-08T19:20:51.257991Z 01O [ 68%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/transformer/url_path.cpp.o +2026-04-08T19:20:51.758567Z 01O [ 68%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/transformer/base64_decode.cpp.o +2026-04-08T19:20:52.258941Z 01O [ 68%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/transformer/base64_encode.cpp.o +2026-04-08T19:20:52.258979Z 01O [ 69%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/transformer/css_decode.cpp.o +2026-04-08T19:20:52.258992Z 01O [ 69%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/transformer/html_entity_decode.cpp.o +2026-04-08T19:20:52.759577Z 01O [ 69%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/transformer/js_decode.cpp.o +2026-04-08T19:20:53.260477Z 01O [ 71%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/vendor/fmt/format.cc.o +2026-04-08T19:20:53.760966Z 01O [ 71%] Building C object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/vendor/radixlib/radixlib.c.o +2026-04-08T19:20:53.760976Z 01O [ 71%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/vendor/lua-aho-corasick/ac_fast.cxx.o +2026-04-08T19:20:53.760981Z 01O [ 73%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/vendor/lua-aho-corasick/ac_slow.cxx.o +2026-04-08T19:20:54.261634Z 01O [ 73%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/vendor/lua-aho-corasick/ac.cxx.o +2026-04-08T19:20:54.762262Z 01O [ 73%] Building C object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/vendor/libinjection/src/xss.c.o +2026-04-08T19:20:54.762271Z 01O [ 74%] Building C object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/vendor/libinjection/src/libinjection_html5.c.o +2026-04-08T19:20:54.762276Z 01O [ 74%] Building C object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/vendor/libinjection/src/libinjection_xss.c.o +2026-04-08T19:20:55.262919Z 01O [ 74%] Building C object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/vendor/libinjection/src/libinjection_sqli.c.o +2026-04-08T19:20:55.262934Z 01O [ 76%] Building C object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/vendor/utf8proc/utf8proc.c.o +2026-04-08T19:20:55.262940Z 01O [ 76%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/vendor/re2/bitstate.cc.o +2026-04-08T19:20:55.262946Z 01O [ 76%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/vendor/re2/compile.cc.o +2026-04-08T19:20:55.262949Z 01O [ 77%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/vendor/re2/dfa.cc.o +2026-04-08T19:20:55.262954Z 01O [ 77%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/vendor/re2/nfa.cc.o +2026-04-08T19:20:56.263856Z 01O [ 77%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/vendor/re2/onepass.cc.o +2026-04-08T19:20:56.764530Z 01O [ 79%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/vendor/re2/parse.cc.o +2026-04-08T19:20:56.764571Z 01O [ 79%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/vendor/re2/perl_groups.cc.o +2026-04-08T19:20:56.764577Z 01O [ 79%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/vendor/re2/prog.cc.o +2026-04-08T19:20:56.764601Z 01O [ 80%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/vendor/re2/re2.cc.o +2026-04-08T19:20:57.765770Z 01O [ 80%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/vendor/re2/regexp.cc.o +2026-04-08T19:20:58.265942Z 01O [ 80%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/vendor/re2/simplify.cc.o +2026-04-08T19:20:58.265951Z 01O [ 82%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/vendor/re2/tostring.cc.o +2026-04-08T19:20:58.265956Z 01O [ 82%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/vendor/re2/unicode_casefold.cc.o +2026-04-08T19:20:58.766625Z 01O [ 82%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/vendor/re2/unicode_groups.cc.o +2026-04-08T19:20:58.766634Z 01O [ 84%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/vendor/re2/util/rune.cc.o +2026-04-08T19:20:58.766639Z 01O [ 84%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/vendor/re2/util/strutil.cc.o +2026-04-08T19:20:59.767849Z 01O [ 84%] Built target libddwaf_objects +2026-04-08T19:20:59.767858Z 01O [ 85%] Building CXX object CMakeFiles/helper_objects.dir/src/helper/client.cpp.o +2026-04-08T19:20:59.767863Z 01O [ 85%] Building CXX object CMakeFiles/helper_objects.dir/src/helper/compression.cpp.o +2026-04-08T19:20:59.767869Z 01O [ 85%] Building CXX object CMakeFiles/helper_objects.dir/src/helper/config.cpp.o +2026-04-08T19:20:59.767872Z 01O [ 87%] Building CXX object CMakeFiles/helper_objects.dir/src/helper/engine.cpp.o +2026-04-08T19:21:00.768888Z 01O [ 87%] Building CXX object CMakeFiles/helper_objects.dir/src/helper/engine_settings.cpp.o +2026-04-08T19:21:01.269538Z 01O [ 87%] Building CXX object CMakeFiles/helper_objects.dir/src/helper/json_helper.cpp.o +2026-04-08T19:21:03.271428Z 01O [ 88%] Building CXX object CMakeFiles/helper_objects.dir/src/helper/network/acceptor.cpp.o +2026-04-08T19:21:03.271438Z 01O [ 88%] Building CXX object CMakeFiles/helper_objects.dir/src/helper/network/broker.cpp.o +2026-04-08T19:21:03.772084Z 01O [ 88%] Building CXX object CMakeFiles/helper_objects.dir/src/helper/network/msgpack_helpers.cpp.o +2026-04-08T19:21:04.773453Z 01O [ 90%] Building CXX object CMakeFiles/helper_objects.dir/src/helper/network/proto.cpp.o +2026-04-08T19:21:04.773463Z 01O [ 90%] Building CXX object CMakeFiles/helper_objects.dir/src/helper/network/socket.cpp.o +2026-04-08T19:21:05.774668Z 01O [ 90%] Building CXX object CMakeFiles/helper_objects.dir/src/helper/parameter.cpp.o +2026-04-08T19:21:06.275342Z 01O [ 92%] Building CXX object CMakeFiles/helper_objects.dir/src/helper/parameter_base.cpp.o +2026-04-08T19:21:06.275352Z 01O [ 92%] Building CXX object CMakeFiles/helper_objects.dir/src/helper/remote_config/client.cpp.o +2026-04-08T19:21:06.275357Z 01O [ 92%] Building CXX object CMakeFiles/helper_objects.dir/src/helper/remote_config/client_handler.cpp.o +2026-04-08T19:21:06.776023Z 01O [ 93%] Building CXX object CMakeFiles/helper_objects.dir/src/helper/remote_config/config.cpp.o +2026-04-08T19:21:07.276701Z 01O [ 93%] Building CXX object CMakeFiles/helper_objects.dir/src/helper/remote_config/listeners/asm_features_listener.cpp.o +2026-04-08T19:21:09.288590Z 01O [ 93%] Building CXX object CMakeFiles/helper_objects.dir/src/helper/remote_config/listeners/config_aggregators/asm_aggregator.cpp.o +2026-04-08T19:21:09.288625Z 01O [ 95%] Building CXX object CMakeFiles/helper_objects.dir/src/helper/remote_config/listeners/config_aggregators/asm_features_aggregator.cpp.o +2026-04-08T19:21:09.779920Z 01O [ 95%] Building CXX object CMakeFiles/helper_objects.dir/src/helper/remote_config/listeners/engine_listener.cpp.o +2026-04-08T19:21:09.779936Z 01O [ 95%] Building CXX object CMakeFiles/helper_objects.dir/src/helper/runner.cpp.o +2026-04-08T19:21:11.281807Z 01O [ 95%] Building CXX object CMakeFiles/helper_objects.dir/src/helper/service.cpp.o +2026-04-08T19:21:11.281817Z 01O [ 96%] Building CXX object CMakeFiles/helper_objects.dir/src/helper/service_manager.cpp.o +2026-04-08T19:21:12.783676Z 01O [ 96%] Building CXX object CMakeFiles/helper_objects.dir/src/helper/subscriber/waf.cpp.o +2026-04-08T19:21:13.784991Z 01O [ 96%] Building CXX object CMakeFiles/helper_objects.dir/src/helper/utils.cpp.o +2026-04-08T19:21:15.286939Z 01O [ 98%] Building CXX object CMakeFiles/helper_objects.dir/src/helper/worker_pool.cpp.o +2026-04-08T19:21:16.788980Z 01O [ 98%] Built target helper_objects +2026-04-08T19:21:16.788996Z 01O [100%] Building CXX object CMakeFiles/ddappsec-helper.dir/src/helper/main.cpp.o +2026-04-08T19:21:20.793814Z 01O [100%] Linking CXX shared library libddappsec-helper.so +2026-04-08T19:21:20.793882Z 01O [100%] Built target ddappsec-helper +2026-04-08T19:21:20.793894Z 01O $ make format tidy +2026-04-08T19:21:21.800865Z 01O Built target format +2026-04-08T19:21:21.800878Z 01O [100%] Built target libxml2_build +2026-04-08T19:21:21.800885Z 01O [100%] Using cached Boost libraries +2026-04-08T19:21:21.800904Z 01O Using cached Boost build +2026-04-08T19:21:21.800910Z 01O [100%] Built target boost_build +2026-04-08T19:21:21.800915Z 01O Enabled checks: +2026-04-08T19:21:21.800922Z 01O abseil-cleanup-ctad +2026-04-08T19:21:21.800924Z 01O abseil-duration-addition +2026-04-08T19:21:21.800927Z 01O abseil-duration-comparison +2026-04-08T19:21:21.800932Z 01O abseil-duration-conversion-cast +2026-04-08T19:21:21.800935Z 01O abseil-duration-division +2026-04-08T19:21:21.800938Z 01O abseil-duration-factory-float +2026-04-08T19:21:21.800942Z 01O abseil-duration-factory-scale +2026-04-08T19:21:21.800948Z 01O abseil-duration-subtraction +2026-04-08T19:21:21.800951Z 01O abseil-duration-unnecessary-conversion +2026-04-08T19:21:21.800957Z 01O abseil-faster-strsplit-delimiter +2026-04-08T19:21:21.800959Z 01O abseil-no-internal-dependencies +2026-04-08T19:21:21.800962Z 01O abseil-no-namespace +2026-04-08T19:21:21.800967Z 01O abseil-redundant-strcat-calls +2026-04-08T19:21:21.800969Z 01O abseil-str-cat-append +2026-04-08T19:21:21.800981Z 01O abseil-string-find-startswith +2026-04-08T19:21:21.800998Z 01O abseil-string-find-str-contains +2026-04-08T19:21:21.801008Z 01O abseil-time-comparison +2026-04-08T19:21:21.801012Z 01O abseil-time-subtraction +2026-04-08T19:21:21.801025Z 01O abseil-upgrade-duration-conversions +2026-04-08T19:21:21.801059Z 01O altera-kernel-name-restriction +2026-04-08T19:21:21.801066Z 01O altera-single-work-item-barrier +2026-04-08T19:21:21.801071Z 01O android-cloexec-accept +2026-04-08T19:21:21.801073Z 01O android-cloexec-accept4 +2026-04-08T19:21:21.801076Z 01O android-cloexec-creat +2026-04-08T19:21:21.801081Z 01O android-cloexec-dup +2026-04-08T19:21:21.801083Z 01O android-cloexec-epoll-create +2026-04-08T19:21:21.801086Z 01O android-cloexec-epoll-create1 +2026-04-08T19:21:21.801091Z 01O android-cloexec-fopen +2026-04-08T19:21:21.801094Z 01O android-cloexec-inotify-init +2026-04-08T19:21:21.801097Z 01O android-cloexec-inotify-init1 +2026-04-08T19:21:21.801102Z 01O android-cloexec-memfd-create +2026-04-08T19:21:21.801104Z 01O android-cloexec-open +2026-04-08T19:21:21.801108Z 01O android-cloexec-pipe +2026-04-08T19:21:21.801113Z 01O android-cloexec-pipe2 +2026-04-08T19:21:21.801116Z 01O android-cloexec-socket +2026-04-08T19:21:21.801119Z 01O android-comparison-in-temp-failure-retry +2026-04-08T19:21:21.801125Z 01O boost-use-ranges +2026-04-08T19:21:21.801127Z 01O boost-use-to-string +2026-04-08T19:21:21.801132Z 01O bugprone-argument-comment +2026-04-08T19:21:21.801137Z 01O bugprone-assert-side-effect +2026-04-08T19:21:21.801141Z 01O bugprone-assignment-in-if-condition +2026-04-08T19:21:21.801145Z 01O bugprone-bad-signal-to-kill-thread +2026-04-08T19:21:21.801159Z 01O bugprone-bool-pointer-implicit-conversion +2026-04-08T19:21:21.801168Z 01O bugprone-branch-clone +2026-04-08T19:21:21.801173Z 01O bugprone-casting-through-void +2026-04-08T19:21:21.801193Z 01O bugprone-chained-comparison +2026-04-08T19:21:21.801198Z 01O bugprone-compare-pointer-to-member-virtual-function +2026-04-08T19:21:21.801203Z 01O bugprone-copy-constructor-init +2026-04-08T19:21:21.801209Z 01O bugprone-crtp-constructor-accessibility +2026-04-08T19:21:21.801213Z 01O bugprone-dangling-handle +2026-04-08T19:21:21.801216Z 01O bugprone-dynamic-static-initializers +2026-04-08T19:21:21.801223Z 01O bugprone-easily-swappable-parameters +2026-04-08T19:21:21.801226Z 01O bugprone-exception-escape +2026-04-08T19:21:21.801229Z 01O bugprone-fold-init-type +2026-04-08T19:21:21.801234Z 01O bugprone-forward-declaration-namespace +2026-04-08T19:21:21.801288Z 01O bugprone-forwarding-reference-overload +2026-04-08T19:21:21.801294Z 01O bugprone-implicit-widening-of-multiplication-result +2026-04-08T19:21:21.801312Z 01O bugprone-inaccurate-erase +2026-04-08T19:21:21.801323Z 01O bugprone-inc-dec-in-conditions +2026-04-08T19:21:21.801328Z 01O bugprone-incorrect-enable-if +2026-04-08T19:21:21.801338Z 01O bugprone-incorrect-roundings +2026-04-08T19:21:21.801346Z 01O bugprone-infinite-loop +2026-04-08T19:21:21.801350Z 01O bugprone-integer-division +2026-04-08T19:21:21.801360Z 01O bugprone-lambda-function-name +2026-04-08T19:21:21.801369Z 01O bugprone-macro-parentheses +2026-04-08T19:21:21.801373Z 01O bugprone-macro-repeated-side-effects +2026-04-08T19:21:21.801383Z 01O bugprone-misplaced-operator-in-strlen-in-alloc +2026-04-08T19:21:21.801386Z 01O bugprone-misplaced-pointer-arithmetic-in-alloc +2026-04-08T19:21:21.801390Z 01O bugprone-misplaced-widening-cast +2026-04-08T19:21:21.801395Z 01O bugprone-move-forwarding-reference +2026-04-08T19:21:21.801398Z 01O bugprone-multi-level-implicit-pointer-conversion +2026-04-08T19:21:21.801402Z 01O bugprone-multiple-new-in-one-expression +2026-04-08T19:21:21.801407Z 01O bugprone-multiple-statement-macro +2026-04-08T19:21:21.801410Z 01O bugprone-narrowing-conversions +2026-04-08T19:21:21.801414Z 01O bugprone-no-escape +2026-04-08T19:21:21.801419Z 01O bugprone-non-zero-enum-to-bool-conversion +2026-04-08T19:21:21.801421Z 01O bugprone-not-null-terminated-result +2026-04-08T19:21:21.801425Z 01O bugprone-optional-value-conversion +2026-04-08T19:21:21.801430Z 01O bugprone-parent-virtual-call +2026-04-08T19:21:21.801433Z 01O bugprone-pointer-arithmetic-on-polymorphic-object +2026-04-08T19:21:21.801436Z 01O bugprone-posix-return +2026-04-08T19:21:21.801443Z 01O bugprone-redundant-branch-condition +2026-04-08T19:21:21.801446Z 01O bugprone-return-const-ref-from-parameter +2026-04-08T19:21:21.801458Z 01O bugprone-shared-ptr-array-mismatch +2026-04-08T19:21:21.801466Z 01O bugprone-signal-handler +2026-04-08T19:21:21.801469Z 01O bugprone-signed-char-misuse +2026-04-08T19:21:21.801472Z 01O bugprone-sizeof-container +2026-04-08T19:21:21.801481Z 01O bugprone-sizeof-expression +2026-04-08T19:21:21.801484Z 01O bugprone-spuriously-wake-up-functions +2026-04-08T19:21:21.801487Z 01O bugprone-standalone-empty +2026-04-08T19:21:21.801494Z 01O bugprone-string-constructor +2026-04-08T19:21:21.801497Z 01O bugprone-string-integer-assignment +2026-04-08T19:21:21.801501Z 01O bugprone-string-literal-with-embedded-nul +2026-04-08T19:21:21.801506Z 01O bugprone-stringview-nullptr +2026-04-08T19:21:21.801509Z 01O bugprone-suspicious-enum-usage +2026-04-08T19:21:21.801513Z 01O bugprone-suspicious-include +2026-04-08T19:21:21.801518Z 01O bugprone-suspicious-memory-comparison +2026-04-08T19:21:21.801521Z 01O bugprone-suspicious-memset-usage +2026-04-08T19:21:21.801524Z 01O bugprone-suspicious-missing-comma +2026-04-08T19:21:21.801530Z 01O bugprone-suspicious-realloc-usage +2026-04-08T19:21:21.801532Z 01O bugprone-suspicious-semicolon +2026-04-08T19:21:21.801536Z 01O bugprone-suspicious-string-compare +2026-04-08T19:21:21.801542Z 01O bugprone-suspicious-stringview-data-usage +2026-04-08T19:21:21.801545Z 01O bugprone-swapped-arguments +2026-04-08T19:21:21.801549Z 01O bugprone-switch-missing-default-case +2026-04-08T19:21:21.801555Z 01O bugprone-terminating-continue +2026-04-08T19:21:21.801562Z 01O bugprone-throw-keyword-missing +2026-04-08T19:21:21.801566Z 01O bugprone-too-small-loop-variable +2026-04-08T19:21:21.801587Z 01O bugprone-unchecked-optional-access +2026-04-08T19:21:21.801590Z 01O bugprone-undefined-memory-manipulation +2026-04-08T19:21:21.801595Z 01O bugprone-undelegated-constructor +2026-04-08T19:21:21.801602Z 01O bugprone-unhandled-exception-at-new +2026-04-08T19:21:21.801605Z 01O bugprone-unhandled-self-assignment +2026-04-08T19:21:21.801608Z 01O bugprone-unique-ptr-array-mismatch +2026-04-08T19:21:21.801637Z 01O bugprone-unsafe-functions +2026-04-08T19:21:21.801640Z 01O bugprone-unused-local-non-trivial-variable +2026-04-08T19:21:21.801644Z 01O bugprone-unused-raii +2026-04-08T19:21:21.801650Z 01O bugprone-unused-return-value +2026-04-08T19:21:21.801659Z 01O bugprone-use-after-move +2026-04-08T19:21:21.801663Z 01O bugprone-virtual-near-miss +2026-04-08T19:21:21.801674Z 01O cert-con36-c +2026-04-08T19:21:21.801682Z 01O cert-con54-cpp +2026-04-08T19:21:21.801686Z 01O cert-ctr56-cpp +2026-04-08T19:21:21.801701Z 01O cert-dcl03-c +2026-04-08T19:21:21.801712Z 01O cert-dcl16-c +2026-04-08T19:21:21.801716Z 01O cert-dcl50-cpp +2026-04-08T19:21:21.801727Z 01O cert-dcl54-cpp +2026-04-08T19:21:21.801735Z 01O cert-dcl58-cpp +2026-04-08T19:21:21.801739Z 01O cert-dcl59-cpp +2026-04-08T19:21:21.801751Z 01O cert-env33-c +2026-04-08T19:21:21.801758Z 01O cert-err09-cpp +2026-04-08T19:21:21.801762Z 01O cert-err33-c +2026-04-08T19:21:21.801780Z 01O cert-err34-c +2026-04-08T19:21:21.801783Z 01O cert-err52-cpp +2026-04-08T19:21:21.801788Z 01O cert-err58-cpp +2026-04-08T19:21:21.801793Z 01O cert-err60-cpp +2026-04-08T19:21:21.801795Z 01O cert-err61-cpp +2026-04-08T19:21:21.801798Z 01O cert-exp42-c +2026-04-08T19:21:21.801804Z 01O cert-fio38-c +2026-04-08T19:21:21.801807Z 01O cert-flp30-c +2026-04-08T19:21:21.801810Z 01O cert-flp37-c +2026-04-08T19:21:21.801814Z 01O cert-int09-c +2026-04-08T19:21:21.801816Z 01O cert-mem57-cpp +2026-04-08T19:21:21.801819Z 01O cert-msc24-c +2026-04-08T19:21:21.801824Z 01O cert-msc30-c +2026-04-08T19:21:21.801827Z 01O cert-msc32-c +2026-04-08T19:21:21.801830Z 01O cert-msc33-c +2026-04-08T19:21:21.801835Z 01O cert-msc50-cpp +2026-04-08T19:21:21.801837Z 01O cert-msc51-cpp +2026-04-08T19:21:21.801840Z 01O cert-msc54-cpp +2026-04-08T19:21:21.801844Z 01O cert-oop11-cpp +2026-04-08T19:21:21.801851Z 01O cert-oop54-cpp +2026-04-08T19:21:21.801854Z 01O cert-oop57-cpp +2026-04-08T19:21:21.801872Z 01O cert-oop58-cpp +2026-04-08T19:21:21.801876Z 01O cert-pos44-c +2026-04-08T19:21:21.801880Z 01O cert-pos47-c +2026-04-08T19:21:21.801886Z 01O cert-sig30-c +2026-04-08T19:21:21.801888Z 01O cert-str34-c +2026-04-08T19:21:21.801892Z 01O clang-analyzer-apiModeling.Errno +2026-04-08T19:21:21.801898Z 01O clang-analyzer-apiModeling.TrustNonnull +2026-04-08T19:21:21.801901Z 01O clang-analyzer-apiModeling.TrustReturnsNonnull +2026-04-08T19:21:21.801905Z 01O clang-analyzer-apiModeling.google.GTest +2026-04-08T19:21:21.801912Z 01O clang-analyzer-apiModeling.llvm.CastValue +2026-04-08T19:21:21.801915Z 01O clang-analyzer-apiModeling.llvm.ReturnValue +2026-04-08T19:21:21.801920Z 01O clang-analyzer-core.BitwiseShift +2026-04-08T19:21:21.801926Z 01O clang-analyzer-core.CallAndMessage +2026-04-08T19:21:21.801929Z 01O clang-analyzer-core.CallAndMessageModeling +2026-04-08T19:21:21.801933Z 01O clang-analyzer-core.DivideZero +2026-04-08T19:21:21.801939Z 01O clang-analyzer-core.DynamicTypePropagation +2026-04-08T19:21:21.801941Z 01O clang-analyzer-core.NonNullParamChecker +2026-04-08T19:21:21.801945Z 01O clang-analyzer-core.NonnilStringConstants +2026-04-08T19:21:21.801951Z 01O clang-analyzer-core.NullDereference +2026-04-08T19:21:21.801953Z 01O clang-analyzer-core.StackAddrEscapeBase +2026-04-08T19:21:21.801957Z 01O clang-analyzer-core.StackAddressEscape +2026-04-08T19:21:21.801962Z 01O clang-analyzer-core.UndefinedBinaryOperatorResult +2026-04-08T19:21:21.801965Z 01O clang-analyzer-core.VLASize +2026-04-08T19:21:21.801968Z 01O clang-analyzer-core.builtin.BuiltinFunctions +2026-04-08T19:21:21.801973Z 01O clang-analyzer-core.builtin.NoReturnFunctions +2026-04-08T19:21:21.801976Z 01O clang-analyzer-core.uninitialized.ArraySubscript +2026-04-08T19:21:21.801981Z 01O clang-analyzer-core.uninitialized.Assign +2026-04-08T19:21:21.801986Z 01O clang-analyzer-core.uninitialized.Branch +2026-04-08T19:21:21.801989Z 01O clang-analyzer-core.uninitialized.CapturedBlockVariable +2026-04-08T19:21:21.802019Z 01O clang-analyzer-core.uninitialized.NewArraySize +2026-04-08T19:21:21.802040Z 01O clang-analyzer-core.uninitialized.UndefReturn +2026-04-08T19:21:21.802045Z 01O clang-analyzer-cplusplus.ArrayDelete +2026-04-08T19:21:21.802049Z 01O clang-analyzer-cplusplus.InnerPointer +2026-04-08T19:21:21.802057Z 01O clang-analyzer-cplusplus.Move +2026-04-08T19:21:21.802059Z 01O clang-analyzer-cplusplus.NewDelete +2026-04-08T19:21:21.802063Z 01O clang-analyzer-cplusplus.NewDeleteLeaks +2026-04-08T19:21:21.802068Z 01O clang-analyzer-cplusplus.PlacementNew +2026-04-08T19:21:21.802071Z 01O clang-analyzer-cplusplus.PureVirtualCall +2026-04-08T19:21:21.802074Z 01O clang-analyzer-cplusplus.SelfAssignment +2026-04-08T19:21:21.802080Z 01O clang-analyzer-cplusplus.SmartPtrModeling +2026-04-08T19:21:21.802083Z 01O clang-analyzer-cplusplus.StringChecker +2026-04-08T19:21:21.802088Z 01O clang-analyzer-cplusplus.VirtualCallModeling +2026-04-08T19:21:21.802093Z 01O clang-analyzer-deadcode.DeadStores +2026-04-08T19:21:21.802096Z 01O clang-analyzer-fuchsia.HandleChecker +2026-04-08T19:21:21.802099Z 01O clang-analyzer-nullability.NullPassedToNonnull +2026-04-08T19:21:21.802105Z 01O clang-analyzer-nullability.NullReturnedFromNonnull +2026-04-08T19:21:21.802107Z 01O clang-analyzer-nullability.NullabilityBase +2026-04-08T19:21:21.802111Z 01O clang-analyzer-nullability.NullableDereferenced +2026-04-08T19:21:21.802117Z 01O clang-analyzer-nullability.NullablePassedToNonnull +2026-04-08T19:21:21.802120Z 01O clang-analyzer-nullability.NullableReturnedFromNonnull +2026-04-08T19:21:21.802130Z 01O clang-analyzer-optin.core.EnumCastOutOfRange +2026-04-08T19:21:21.802135Z 01O clang-analyzer-optin.cplusplus.UninitializedObject +2026-04-08T19:21:21.802138Z 01O clang-analyzer-optin.cplusplus.VirtualCall +2026-04-08T19:21:21.802142Z 01O clang-analyzer-optin.mpi.MPI-Checker +2026-04-08T19:21:21.802148Z 01O clang-analyzer-optin.osx.OSObjectCStyleCast +2026-04-08T19:21:21.802151Z 01O clang-analyzer-optin.osx.cocoa.localizability.EmptyLocalizationContextChecker +2026-04-08T19:21:21.802155Z 01O clang-analyzer-optin.osx.cocoa.localizability.NonLocalizedStringChecker +2026-04-08T19:21:21.802168Z 01O clang-analyzer-optin.performance.GCDAntipattern +2026-04-08T19:21:21.802176Z 01O clang-analyzer-optin.performance.Padding +2026-04-08T19:21:21.802181Z 01O clang-analyzer-optin.portability.UnixAPI +2026-04-08T19:21:21.802192Z 01O clang-analyzer-optin.taint.TaintedAlloc +2026-04-08T19:21:21.802200Z 01O clang-analyzer-osx.API +2026-04-08T19:21:21.802205Z 01O clang-analyzer-osx.MIG +2026-04-08T19:21:21.802217Z 01O clang-analyzer-osx.NSOrCFErrorDerefChecker +2026-04-08T19:21:21.802226Z 01O clang-analyzer-osx.NumberObjectConversion +2026-04-08T19:21:21.802230Z 01O clang-analyzer-osx.OSObjectRetainCount +2026-04-08T19:21:21.802242Z 01O clang-analyzer-osx.ObjCProperty +2026-04-08T19:21:21.802245Z 01O clang-analyzer-osx.SecKeychainAPI +2026-04-08T19:21:21.802249Z 01O clang-analyzer-osx.cocoa.AtSync +2026-04-08T19:21:21.802254Z 01O clang-analyzer-osx.cocoa.AutoreleaseWrite +2026-04-08T19:21:21.802257Z 01O clang-analyzer-osx.cocoa.ClassRelease +2026-04-08T19:21:21.802260Z 01O clang-analyzer-osx.cocoa.Dealloc +2026-04-08T19:21:21.802265Z 01O clang-analyzer-osx.cocoa.IncompatibleMethodTypes +2026-04-08T19:21:21.802268Z 01O clang-analyzer-osx.cocoa.Loops +2026-04-08T19:21:21.802272Z 01O clang-analyzer-osx.cocoa.MissingSuperCall +2026-04-08T19:21:21.802279Z 01O clang-analyzer-osx.cocoa.NSAutoreleasePool +2026-04-08T19:21:21.802282Z 01O clang-analyzer-osx.cocoa.NSError +2026-04-08T19:21:21.802286Z 01O clang-analyzer-osx.cocoa.NilArg +2026-04-08T19:21:21.802293Z 01O clang-analyzer-osx.cocoa.NonNilReturnValue +2026-04-08T19:21:21.802296Z 01O clang-analyzer-osx.cocoa.ObjCGenerics +2026-04-08T19:21:21.802299Z 01O clang-analyzer-osx.cocoa.RetainCount +2026-04-08T19:21:21.802304Z 01O clang-analyzer-osx.cocoa.RetainCountBase +2026-04-08T19:21:21.802327Z 01O clang-analyzer-osx.cocoa.RunLoopAutoreleaseLeak +2026-04-08T19:21:21.802332Z 01O clang-analyzer-osx.cocoa.SelfInit +2026-04-08T19:21:21.802353Z 01O clang-analyzer-osx.cocoa.SuperDealloc +2026-04-08T19:21:21.802356Z 01O clang-analyzer-osx.cocoa.UnusedIvars +2026-04-08T19:21:21.802362Z 01O clang-analyzer-osx.cocoa.VariadicMethodTypes +2026-04-08T19:21:21.802367Z 01O clang-analyzer-osx.coreFoundation.CFError +2026-04-08T19:21:21.802370Z 01O clang-analyzer-osx.coreFoundation.CFNumber +2026-04-08T19:21:21.802375Z 01O clang-analyzer-osx.coreFoundation.CFRetainRelease +2026-04-08T19:21:21.802380Z 01O clang-analyzer-osx.coreFoundation.containers.OutOfBounds +2026-04-08T19:21:21.802383Z 01O clang-analyzer-osx.coreFoundation.containers.PointerSizedValues +2026-04-08T19:21:21.802386Z 01O clang-analyzer-security.FloatLoopCounter +2026-04-08T19:21:21.802392Z 01O clang-analyzer-security.PutenvStackArray +2026-04-08T19:21:21.802395Z 01O clang-analyzer-security.SetgidSetuidOrder +2026-04-08T19:21:21.802399Z 01O clang-analyzer-security.cert.env.InvalidPtr +2026-04-08T19:21:21.802405Z 01O clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling +2026-04-08T19:21:21.802408Z 01O clang-analyzer-security.insecureAPI.SecuritySyntaxChecker +2026-04-08T19:21:21.802411Z 01O clang-analyzer-security.insecureAPI.UncheckedReturn +2026-04-08T19:21:21.802416Z 01O clang-analyzer-security.insecureAPI.bcmp +2026-04-08T19:21:21.802419Z 01O clang-analyzer-security.insecureAPI.bcopy +2026-04-08T19:21:21.802428Z 01O clang-analyzer-security.insecureAPI.bzero +2026-04-08T19:21:21.802444Z 01O clang-analyzer-security.insecureAPI.decodeValueOfObjCType +2026-04-08T19:21:21.802454Z 01O clang-analyzer-security.insecureAPI.getpw +2026-04-08T19:21:21.802459Z 01O clang-analyzer-security.insecureAPI.gets +2026-04-08T19:21:21.802469Z 01O clang-analyzer-security.insecureAPI.mkstemp +2026-04-08T19:21:21.802477Z 01O clang-analyzer-security.insecureAPI.mktemp +2026-04-08T19:21:21.802482Z 01O clang-analyzer-security.insecureAPI.rand +2026-04-08T19:21:21.802495Z 01O clang-analyzer-security.insecureAPI.strcpy +2026-04-08T19:21:21.802504Z 01O clang-analyzer-security.insecureAPI.vfork +2026-04-08T19:21:21.802508Z 01O clang-analyzer-unix.API +2026-04-08T19:21:21.802521Z 01O clang-analyzer-unix.BlockInCriticalSection +2026-04-08T19:21:21.802530Z 01O clang-analyzer-unix.DynamicMemoryModeling +2026-04-08T19:21:21.802534Z 01O clang-analyzer-unix.Errno +2026-04-08T19:21:21.802544Z 01O clang-analyzer-unix.Malloc +2026-04-08T19:21:21.802552Z 01O clang-analyzer-unix.MallocSizeof +2026-04-08T19:21:21.802556Z 01O clang-analyzer-unix.MismatchedDeallocator +2026-04-08T19:21:21.802567Z 01O clang-analyzer-unix.StdCLibraryFunctions +2026-04-08T19:21:21.802575Z 01O clang-analyzer-unix.Stream +2026-04-08T19:21:21.802579Z 01O clang-analyzer-unix.Vfork +2026-04-08T19:21:21.802593Z 01O clang-analyzer-unix.cstring.BadSizeArg +2026-04-08T19:21:21.802602Z 01O clang-analyzer-unix.cstring.CStringModeling +2026-04-08T19:21:21.802607Z 01O clang-analyzer-unix.cstring.NullArg +2026-04-08T19:21:21.802613Z 01O clang-analyzer-valist.CopyToSelf +2026-04-08T19:21:21.802615Z 01O clang-analyzer-valist.Uninitialized +2026-04-08T19:21:21.802619Z 01O clang-analyzer-valist.Unterminated +2026-04-08T19:21:21.802624Z 01O clang-analyzer-valist.ValistBase +2026-04-08T19:21:21.802627Z 01O clang-analyzer-webkit.NoUncountedMemberChecker +2026-04-08T19:21:21.802632Z 01O clang-analyzer-webkit.RefCntblBaseVirtualDtor +2026-04-08T19:21:21.802639Z 01O clang-analyzer-webkit.UncountedLambdaCapturesChecker +2026-04-08T19:21:21.802641Z 01O concurrency-mt-unsafe +2026-04-08T19:21:21.802645Z 01O concurrency-thread-canceltype-asynchronous +2026-04-08T19:21:21.802650Z 01O cppcoreguidelines-avoid-c-arrays +2026-04-08T19:21:21.802653Z 01O cppcoreguidelines-avoid-capturing-lambda-coroutines +2026-04-08T19:21:21.802677Z 01O cppcoreguidelines-avoid-const-or-ref-data-members +2026-04-08T19:21:21.802693Z 01O cppcoreguidelines-avoid-goto +2026-04-08T19:21:21.802703Z 01O cppcoreguidelines-avoid-magic-numbers +2026-04-08T19:21:21.802707Z 01O cppcoreguidelines-avoid-reference-coroutine-parameters +2026-04-08T19:21:21.802719Z 01O cppcoreguidelines-c-copy-assignment-signature +2026-04-08T19:21:21.802727Z 01O cppcoreguidelines-explicit-virtual-functions +2026-04-08T19:21:21.802732Z 01O cppcoreguidelines-interfaces-global-init +2026-04-08T19:21:21.802742Z 01O cppcoreguidelines-macro-to-enum +2026-04-08T19:21:21.802751Z 01O cppcoreguidelines-macro-usage +2026-04-08T19:21:21.802756Z 01O cppcoreguidelines-misleading-capture-default-by-value +2026-04-08T19:21:21.802768Z 01O cppcoreguidelines-missing-std-forward +2026-04-08T19:21:21.802777Z 01O cppcoreguidelines-narrowing-conversions +2026-04-08T19:21:21.802782Z 01O cppcoreguidelines-no-malloc +2026-04-08T19:21:21.802792Z 01O cppcoreguidelines-no-suspend-with-lock +2026-04-08T19:21:21.802800Z 01O cppcoreguidelines-noexcept-destructor +2026-04-08T19:21:21.802804Z 01O cppcoreguidelines-noexcept-move-operations +2026-04-08T19:21:21.802814Z 01O cppcoreguidelines-noexcept-swap +2026-04-08T19:21:21.802822Z 01O cppcoreguidelines-owning-memory +2026-04-08T19:21:21.802827Z 01O cppcoreguidelines-prefer-member-initializer +2026-04-08T19:21:21.802839Z 01O cppcoreguidelines-pro-bounds-array-to-pointer-decay +2026-04-08T19:21:21.802846Z 01O cppcoreguidelines-pro-bounds-constant-array-index +2026-04-08T19:21:21.802851Z 01O cppcoreguidelines-pro-type-const-cast +2026-04-08T19:21:21.802861Z 01O cppcoreguidelines-pro-type-cstyle-cast +2026-04-08T19:21:21.802869Z 01O cppcoreguidelines-pro-type-member-init +2026-04-08T19:21:21.802873Z 01O cppcoreguidelines-pro-type-reinterpret-cast +2026-04-08T19:21:21.802884Z 01O cppcoreguidelines-pro-type-static-cast-downcast +2026-04-08T19:21:21.802892Z 01O cppcoreguidelines-pro-type-vararg +2026-04-08T19:21:21.802896Z 01O cppcoreguidelines-rvalue-reference-param-not-moved +2026-04-08T19:21:21.802907Z 01O cppcoreguidelines-slicing +2026-04-08T19:21:21.802914Z 01O cppcoreguidelines-special-member-functions +2026-04-08T19:21:21.802920Z 01O cppcoreguidelines-use-default-member-init +2026-04-08T19:21:21.802929Z 01O cppcoreguidelines-virtual-class-destructor +2026-04-08T19:21:21.802932Z 01O darwin-avoid-spinlock +2026-04-08T19:21:21.802935Z 01O darwin-dispatch-once-nonstatic +2026-04-08T19:21:21.802941Z 01O fuchsia-header-anon-namespaces +2026-04-08T19:21:21.802943Z 01O fuchsia-multiple-inheritance +2026-04-08T19:21:21.802946Z 01O fuchsia-statically-constructed-objects +2026-04-08T19:21:21.802952Z 01O fuchsia-trailing-return +2026-04-08T19:21:21.802954Z 01O fuchsia-virtual-inheritance +2026-04-08T19:21:21.802957Z 01O google-build-explicit-make-pair +2026-04-08T19:21:21.802962Z 01O google-build-namespaces +2026-04-08T19:21:21.802966Z 01O google-build-using-namespace +2026-04-08T19:21:21.802969Z 01O google-default-arguments +2026-04-08T19:21:21.802974Z 01O google-explicit-constructor +2026-04-08T19:21:21.802978Z 01O google-global-names-in-headers +2026-04-08T19:21:21.802981Z 01O google-objc-avoid-nsobject-new +2026-04-08T19:21:21.802993Z 01O google-objc-avoid-throwing-exception +2026-04-08T19:21:21.803000Z 01O google-objc-function-naming +2026-04-08T19:21:21.803005Z 01O google-objc-global-variable-declaration +2026-04-08T19:21:21.803016Z 01O google-readability-avoid-underscore-in-googletest-name +2026-04-08T19:21:21.803023Z 01O google-readability-braces-around-statements +2026-04-08T19:21:21.803040Z 01O google-readability-function-size +2026-04-08T19:21:21.803044Z 01O google-readability-namespace-comments +2026-04-08T19:21:21.803054Z 01O google-runtime-int +2026-04-08T19:21:21.803067Z 01O google-runtime-operator +2026-04-08T19:21:21.803075Z 01O google-upgrade-googletest-case +2026-04-08T19:21:21.803079Z 01O hicpp-avoid-goto +2026-04-08T19:21:21.803112Z 01O hicpp-braces-around-statements +2026-04-08T19:21:21.803117Z 01O hicpp-deprecated-headers +2026-04-08T19:21:21.803127Z 01O hicpp-exception-baseclass +2026-04-08T19:21:21.803134Z 01O hicpp-explicit-conversions +2026-04-08T19:21:21.803138Z 01O hicpp-function-size +2026-04-08T19:21:21.803148Z 01O hicpp-ignored-remove-result +2026-04-08T19:21:21.803155Z 01O hicpp-invalid-access-moved +2026-04-08T19:21:21.803159Z 01O hicpp-member-init +2026-04-08T19:21:21.803171Z 01O hicpp-move-const-arg +2026-04-08T19:21:21.803178Z 01O hicpp-multiway-paths-covered +2026-04-08T19:21:21.803182Z 01O hicpp-new-delete-operators +2026-04-08T19:21:21.803192Z 01O hicpp-no-assembler +2026-04-08T19:21:21.803199Z 01O hicpp-no-malloc +2026-04-08T19:21:21.803203Z 01O hicpp-noexcept-move +2026-04-08T19:21:21.803214Z 01O hicpp-special-member-functions +2026-04-08T19:21:21.803221Z 01O hicpp-static-assert +2026-04-08T19:21:21.803225Z 01O hicpp-undelegated-constructor +2026-04-08T19:21:21.803236Z 01O hicpp-uppercase-literal-suffix +2026-04-08T19:21:21.803244Z 01O hicpp-use-auto +2026-04-08T19:21:21.803249Z 01O hicpp-use-emplace +2026-04-08T19:21:21.803257Z 01O hicpp-use-equals-default +2026-04-08T19:21:21.803264Z 01O hicpp-use-equals-delete +2026-04-08T19:21:21.803268Z 01O hicpp-use-noexcept +2026-04-08T19:21:21.803278Z 01O hicpp-use-nullptr +2026-04-08T19:21:21.803285Z 01O hicpp-use-override +2026-04-08T19:21:21.803289Z 01O hicpp-vararg +2026-04-08T19:21:21.803300Z 01O linuxkernel-must-check-errs +2026-04-08T19:21:21.803307Z 01O llvm-else-after-return +2026-04-08T19:21:21.803311Z 01O llvm-include-order +2026-04-08T19:21:21.803321Z 01O llvm-namespace-comment +2026-04-08T19:21:21.803328Z 01O llvm-prefer-isa-or-dyn-cast-in-conditionals +2026-04-08T19:21:21.803333Z 01O llvm-prefer-register-over-unsigned +2026-04-08T19:21:21.803342Z 01O llvm-qualified-auto +2026-04-08T19:21:21.803349Z 01O llvm-twine-local +2026-04-08T19:21:21.803353Z 01O misc-confusable-identifiers +2026-04-08T19:21:21.803363Z 01O misc-const-correctness +2026-04-08T19:21:21.803370Z 01O misc-coroutine-hostile-raii +2026-04-08T19:21:21.803374Z 01O misc-definitions-in-headers +2026-04-08T19:21:21.803384Z 01O misc-header-include-cycle +2026-04-08T19:21:21.803393Z 01O misc-misleading-bidirectional +2026-04-08T19:21:21.803398Z 01O misc-misleading-identifier +2026-04-08T19:21:21.803407Z 01O misc-misplaced-const +2026-04-08T19:21:21.803415Z 01O misc-new-delete-overloads +2026-04-08T19:21:21.803419Z 01O misc-no-recursion +2026-04-08T19:21:21.803429Z 01O misc-non-copyable-objects +2026-04-08T19:21:21.803436Z 01O misc-redundant-expression +2026-04-08T19:21:21.803439Z 01O misc-static-assert +2026-04-08T19:21:21.803450Z 01O misc-throw-by-value-catch-by-reference +2026-04-08T19:21:21.803458Z 01O misc-unconventional-assign-operator +2026-04-08T19:21:21.803462Z 01O misc-uniqueptr-reset-release +2026-04-08T19:21:21.803473Z 01O misc-unused-alias-decls +2026-04-08T19:21:21.803480Z 01O misc-unused-parameters +2026-04-08T19:21:21.803485Z 01O misc-unused-using-decls +2026-04-08T19:21:21.803495Z 01O misc-use-anonymous-namespace +2026-04-08T19:21:21.803502Z 01O misc-use-internal-linkage +2026-04-08T19:21:21.803506Z 01O modernize-avoid-bind +2026-04-08T19:21:21.803516Z 01O modernize-concat-nested-namespaces +2026-04-08T19:21:21.803519Z 01O modernize-deprecated-headers +2026-04-08T19:21:21.803523Z 01O modernize-deprecated-ios-base-aliases +2026-04-08T19:21:21.803528Z 01O modernize-loop-convert +2026-04-08T19:21:21.803530Z 01O modernize-make-shared +2026-04-08T19:21:21.803533Z 01O modernize-make-unique +2026-04-08T19:21:21.803543Z 01O modernize-min-max-use-initializer-list +2026-04-08T19:21:21.803547Z 01O modernize-pass-by-value +2026-04-08T19:21:21.803552Z 01O modernize-raw-string-literal +2026-04-08T19:21:21.803558Z 01O modernize-redundant-void-arg +2026-04-08T19:21:21.803560Z 01O modernize-replace-auto-ptr +2026-04-08T19:21:21.803578Z 01O modernize-replace-disallow-copy-and-assign-macro +2026-04-08T19:21:21.803583Z 01O modernize-replace-random-shuffle +2026-04-08T19:21:21.803586Z 01O modernize-return-braced-init-list +2026-04-08T19:21:21.803589Z 01O modernize-shrink-to-fit +2026-04-08T19:21:21.803594Z 01O modernize-type-traits +2026-04-08T19:21:21.803596Z 01O modernize-unary-static-assert +2026-04-08T19:21:21.803600Z 01O modernize-use-auto +2026-04-08T19:21:21.803605Z 01O modernize-use-bool-literals +2026-04-08T19:21:21.803607Z 01O modernize-use-constraints +2026-04-08T19:21:21.803619Z 01O modernize-use-default-member-init +2026-04-08T19:21:21.803630Z 01O modernize-use-designated-initializers +2026-04-08T19:21:21.803638Z 01O modernize-use-emplace +2026-04-08T19:21:21.803642Z 01O modernize-use-equals-default +2026-04-08T19:21:21.803653Z 01O modernize-use-equals-delete +2026-04-08T19:21:21.803660Z 01O modernize-use-nodiscard +2026-04-08T19:21:21.803664Z 01O modernize-use-noexcept +2026-04-08T19:21:21.803674Z 01O modernize-use-nullptr +2026-04-08T19:21:21.803680Z 01O modernize-use-override +2026-04-08T19:21:21.803684Z 01O modernize-use-ranges +2026-04-08T19:21:21.803695Z 01O modernize-use-starts-ends-with +2026-04-08T19:21:21.803701Z 01O modernize-use-std-format +2026-04-08T19:21:21.803705Z 01O modernize-use-std-numbers +2026-04-08T19:21:21.803716Z 01O modernize-use-std-print +2026-04-08T19:21:21.803724Z 01O modernize-use-transparent-functors +2026-04-08T19:21:21.803730Z 01O modernize-use-uncaught-exceptions +2026-04-08T19:21:21.803739Z 01O modernize-use-using +2026-04-08T19:21:21.803745Z 01O mpi-buffer-deref +2026-04-08T19:21:21.803749Z 01O mpi-type-mismatch +2026-04-08T19:21:21.803760Z 01O objc-assert-equals +2026-04-08T19:21:21.803768Z 01O objc-avoid-nserror-init +2026-04-08T19:21:21.803772Z 01O objc-dealloc-in-category +2026-04-08T19:21:21.803783Z 01O objc-forbidden-subclassing +2026-04-08T19:21:21.803790Z 01O objc-missing-hash +2026-04-08T19:21:21.803795Z 01O objc-nsdate-formatter +2026-04-08T19:21:21.803804Z 01O objc-nsinvocation-argument-lifetime +2026-04-08T19:21:21.803812Z 01O objc-property-declaration +2026-04-08T19:21:21.803816Z 01O objc-super-self +2026-04-08T19:21:21.803827Z 01O openmp-exception-escape +2026-04-08T19:21:21.803842Z 01O openmp-use-default-none +2026-04-08T19:21:21.803846Z 01O performance-avoid-endl +2026-04-08T19:21:21.803856Z 01O performance-enum-size +2026-04-08T19:21:21.803864Z 01O performance-faster-string-find +2026-04-08T19:21:21.803869Z 01O performance-for-range-copy +2026-04-08T19:21:21.803877Z 01O performance-implicit-conversion-in-loop +2026-04-08T19:21:21.803884Z 01O performance-inefficient-algorithm +2026-04-08T19:21:21.803889Z 01O performance-inefficient-string-concatenation +2026-04-08T19:21:21.803904Z 01O performance-inefficient-vector-operation +2026-04-08T19:21:21.803916Z 01O performance-move-const-arg +2026-04-08T19:21:21.803922Z 01O performance-move-constructor-init +2026-04-08T19:21:21.803928Z 01O performance-no-automatic-move +2026-04-08T19:21:21.803930Z 01O performance-noexcept-destructor +2026-04-08T19:21:21.803933Z 01O performance-noexcept-move-constructor +2026-04-08T19:21:21.803938Z 01O performance-noexcept-swap +2026-04-08T19:21:21.803941Z 01O performance-trivially-destructible +2026-04-08T19:21:21.803945Z 01O performance-type-promotion-in-math-fn +2026-04-08T19:21:21.803951Z 01O performance-unnecessary-copy-initialization +2026-04-08T19:21:21.803953Z 01O performance-unnecessary-value-param +2026-04-08T19:21:21.803957Z 01O portability-restrict-system-includes +2026-04-08T19:21:21.803962Z 01O portability-simd-intrinsics +2026-04-08T19:21:21.803964Z 01O portability-std-allocator-const +2026-04-08T19:21:21.803968Z 01O readability-avoid-const-params-in-decls +2026-04-08T19:21:21.803986Z 01O readability-avoid-nested-conditional-operator +2026-04-08T19:21:21.804008Z 01O readability-avoid-return-with-void-value +2026-04-08T19:21:21.804012Z 01O readability-avoid-unconditional-preprocessor-if +2026-04-08T19:21:21.804018Z 01O readability-braces-around-statements +2026-04-08T19:21:21.804020Z 01O readability-const-return-type +2026-04-08T19:21:21.804024Z 01O readability-container-contains +2026-04-08T19:21:21.804039Z 01O readability-container-data-pointer +2026-04-08T19:21:21.804042Z 01O readability-container-size-empty +2026-04-08T19:21:21.804047Z 01O readability-convert-member-functions-to-static +2026-04-08T19:21:21.804052Z 01O readability-delete-null-pointer +2026-04-08T19:21:21.804054Z 01O readability-duplicate-include +2026-04-08T19:21:21.804057Z 01O readability-else-after-return +2026-04-08T19:21:21.804062Z 01O readability-enum-initial-value +2026-04-08T19:21:21.804064Z 01O readability-function-size +2026-04-08T19:21:21.804068Z 01O readability-identifier-naming +2026-04-08T19:21:21.804075Z 01O readability-implicit-bool-conversion +2026-04-08T19:21:21.804083Z 01O readability-inconsistent-declaration-parameter-name +2026-04-08T19:21:21.804087Z 01O readability-isolate-declaration +2026-04-08T19:21:21.804098Z 01O readability-magic-numbers +2026-04-08T19:21:21.804106Z 01O readability-make-member-function-const +2026-04-08T19:21:21.804110Z 01O readability-math-missing-parentheses +2026-04-08T19:21:21.804122Z 01O readability-misleading-indentation +2026-04-08T19:21:21.804129Z 01O readability-misplaced-array-index +2026-04-08T19:21:21.804134Z 01O readability-named-parameter +2026-04-08T19:21:21.804150Z 01O readability-non-const-parameter +2026-04-08T19:21:21.804159Z 01O readability-operators-representation +2026-04-08T19:21:21.804164Z 01O readability-qualified-auto +2026-04-08T19:21:21.804171Z 01O readability-redundant-access-specifiers +2026-04-08T19:21:21.804175Z 01O readability-redundant-casting +2026-04-08T19:21:21.804179Z 01O readability-redundant-control-flow +2026-04-08T19:21:21.804184Z 01O readability-redundant-declaration +2026-04-08T19:21:21.804187Z 01O readability-redundant-function-ptr-dereference +2026-04-08T19:21:21.804190Z 01O readability-redundant-inline-specifier +2026-04-08T19:21:21.804195Z 01O readability-redundant-member-init +2026-04-08T19:21:21.804198Z 01O readability-redundant-preprocessor +2026-04-08T19:21:21.804202Z 01O readability-redundant-smartptr-get +2026-04-08T19:21:21.804208Z 01O readability-redundant-string-cstr +2026-04-08T19:21:21.804210Z 01O readability-redundant-string-init +2026-04-08T19:21:21.804214Z 01O readability-reference-to-constructed-temporary +2026-04-08T19:21:21.804218Z 01O readability-simplify-boolean-expr +2026-04-08T19:21:21.804221Z 01O readability-simplify-subscript-expr +2026-04-08T19:21:21.804224Z 01O readability-static-accessed-through-instance +2026-04-08T19:21:21.804229Z 01O readability-static-definition-in-anonymous-namespace +2026-04-08T19:21:21.804232Z 01O readability-string-compare +2026-04-08T19:21:21.804235Z 01O readability-suspicious-call-argument +2026-04-08T19:21:21.804246Z 01O readability-uniqueptr-delete-release +2026-04-08T19:21:21.804253Z 01O readability-uppercase-literal-suffix +2026-04-08T19:21:21.804257Z 01O readability-use-anyofallof +2026-04-08T19:21:21.804268Z 01O readability-use-std-min-max +2026-04-08T19:21:21.804276Z 01O zircon-temporary-objects +2026-04-08T19:21:21.804279Z 01O +2026-04-08T19:21:23.800936Z 01O Running clang-tidy for 56 files out of 220 in compilation database ... +2026-04-08T19:21:23.800949Z 01O [ 1/56][0.2s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/string_helpers.c +2026-04-08T19:21:23.800956Z 01O 104 warnings generated. +2026-04-08T19:21:23.800961Z 01O Suppressed 104 warnings (104 in non-user code). +2026-04-08T19:21:23.800964Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. +2026-04-08T19:21:23.801016Z 01O +2026-04-08T19:21:23.801025Z 01O [ 2/56][0.1s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/dddefs.c +2026-04-08T19:21:23.801057Z 01O [ 3/56][1.3s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/php_compat.c +2026-04-08T19:21:23.801066Z 01O 899 warnings generated. +2026-04-08T19:21:23.801070Z 01O Suppressed 899 warnings (899 in non-user code). +2026-04-08T19:21:23.801076Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. +2026-04-08T19:21:23.801078Z 01O +2026-04-08T19:21:23.801085Z 01O [ 4/56][1.4s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/rasp.c +2026-04-08T19:21:23.801091Z 01O 917 warnings generated. +2026-04-08T19:21:23.801094Z 01O Suppressed 917 warnings (917 in non-user code). +2026-04-08T19:21:23.801097Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. +2026-04-08T19:21:23.801103Z 01O +2026-04-08T19:21:23.801108Z 01O [ 5/56][1.5s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/ip_extraction.c +2026-04-08T19:21:23.801121Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/ip_extraction.c:40:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] +2026-04-08T19:21:23.801143Z 01O 40 | ZEND_RAW_FENTRY(DD_TESTING_NS "extract_ip_addr", PHP_FN(datadog_appsec_testing_extract_ip_addr), extract_ip_addr, 0, NULL, NULL) +2026-04-08T19:21:23.801153Z 01O |  ^ +2026-04-08T19:21:23.801160Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' +2026-04-08T19:21:23.801171Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, +2026-04-08T19:21:23.801180Z 01O |  ^ +2026-04-08T19:21:23.801186Z 01O 1012 warnings generated. +2026-04-08T19:21:23.801191Z 01O Suppressed 1008 warnings (1008 in non-user code). +2026-04-08T19:21:23.801194Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. +2026-04-08T19:21:23.801198Z 01O 1 warning treated as error +2026-04-08T19:21:23.801212Z 01O +2026-04-08T19:21:23.801227Z 01O [ 6/56][1.6s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/telemetry.c +2026-04-08T19:21:23.801234Z 01O 1534 warnings generated. +2026-04-08T19:21:23.801241Z 01O Suppressed 1534 warnings (1534 in non-user code). +2026-04-08T19:21:23.801244Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. +2026-04-08T19:21:23.801247Z 01O +2026-04-08T19:21:23.801257Z 01O [ 7/56][1.9s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/ddappsec.c +2026-04-08T19:21:23.801300Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/ddappsec.c:634:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] +2026-04-08T19:21:23.801308Z 01O 634 | ZEND_RAW_FENTRY(DD_APPSEC_NS "is_enabled", PHP_FN(datadog_appsec_is_enabled), void_ret_bool_arginfo, 0, NULL, NULL) +2026-04-08T19:21:23.801314Z 01O |  ^ +2026-04-08T19:21:23.801318Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' +2026-04-08T19:21:23.801325Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, +2026-04-08T19:21:23.801332Z 01O |  ^ +2026-04-08T19:21:23.801337Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/ddappsec.c:635:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] +2026-04-08T19:21:23.801343Z 01O 635 | ZEND_RAW_FENTRY(DD_APPSEC_NS "push_addresses", PHP_FN(datadog_appsec_push_addresses), push_addresses_arginfo, 0, NULL, NULL) +2026-04-08T19:21:23.801348Z 01O |  ^ +2026-04-08T19:21:23.801351Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' +2026-04-08T19:21:23.801358Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, +2026-04-08T19:21:23.801372Z 01O |  ^ +2026-04-08T19:21:23.801385Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/ddappsec.c:639:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] +2026-04-08T19:21:23.801392Z 01O 639 | ZEND_RAW_FENTRY(DD_TESTING_NS "rinit", PHP_FN(datadog_appsec_testing_rinit), void_ret_bool_arginfo, 0, NULL, NULL) +2026-04-08T19:21:23.801399Z 01O |  ^ +2026-04-08T19:21:23.801402Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' +2026-04-08T19:21:23.801409Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, +2026-04-08T19:21:23.801417Z 01O |  ^ +2026-04-08T19:21:23.801422Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/ddappsec.c:640:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] +2026-04-08T19:21:23.801428Z 01O 640 | ZEND_RAW_FENTRY(DD_TESTING_NS "rshutdown", PHP_FN(datadog_appsec_testing_rshutdown), void_ret_bool_arginfo, 0, NULL, NULL) +2026-04-08T19:21:23.801433Z 01O |  ^ +2026-04-08T19:21:23.801437Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' +2026-04-08T19:21:23.801454Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, +2026-04-08T19:21:23.801461Z 01O |  ^ +2026-04-08T19:21:23.801467Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/ddappsec.c:641:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] +2026-04-08T19:21:23.801474Z 01O 641 | ZEND_RAW_FENTRY(DD_TESTING_NS "helper_mgr_acquire_conn", PHP_FN(datadog_appsec_testing_helper_mgr_acquire_conn), void_ret_bool_arginfo, 0, NULL, NULL) +2026-04-08T19:21:23.801479Z 01O |  ^ +2026-04-08T19:21:23.801485Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' +2026-04-08T19:21:23.801491Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, +2026-04-08T19:21:23.801495Z 01O |  ^ +2026-04-08T19:21:23.801502Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/ddappsec.c:642:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] +2026-04-08T19:21:23.801508Z 01O 642 | ZEND_RAW_FENTRY(DD_TESTING_NS "stop_for_debugger", PHP_FN(datadog_appsec_testing_stop_for_debugger), void_ret_bool_arginfo, 0, NULL, NULL) +2026-04-08T19:21:23.801512Z 01O |  ^ +2026-04-08T19:21:23.801519Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' +2026-04-08T19:21:23.801524Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, +2026-04-08T19:21:23.801528Z 01O |  ^ +2026-04-08T19:21:23.801535Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/ddappsec.c:643:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] +2026-04-08T19:21:23.801545Z 01O 643 | ZEND_RAW_FENTRY(DD_TESTING_NS "request_exec", PHP_FN(datadog_appsec_testing_request_exec), request_exec_arginfo, 0, NULL, NULL) +2026-04-08T19:21:23.801552Z 01O |  ^ +2026-04-08T19:21:23.801565Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' +2026-04-08T19:21:23.801576Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, +2026-04-08T19:21:23.801582Z 01O |  ^ +2026-04-08T19:21:23.801590Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/ddappsec.c:647:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] +2026-04-08T19:21:23.801617Z 01O 647 | ZEND_RAW_FENTRY(DD_TESTING_NS "send_invalid_msg", PHP_FN(datadog_appsec_testing_send_invalid_command), void_ret_bool_arginfo, 0, NULL, NULL) +2026-04-08T19:21:23.801622Z 01O |  ^ +2026-04-08T19:21:23.801631Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' +2026-04-08T19:21:23.801637Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, +2026-04-08T19:21:23.801646Z 01O |  ^ +2026-04-08T19:21:23.801660Z 01O 1139 warnings generated. +2026-04-08T19:21:23.801667Z 01O Suppressed 1122 warnings (1107 in non-user code, 15 NOLINT). +2026-04-08T19:21:23.801671Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. +2026-04-08T19:21:23.801684Z 01O 8 warnings treated as errors +2026-04-08T19:21:23.801692Z 01O +2026-04-08T19:21:23.801700Z 01O [ 8/56][2.0s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/helper_process.c +2026-04-08T19:21:25.301905Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/helper_process.c:633:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] +2026-04-08T19:21:25.301918Z 01O 633 | ZEND_RAW_FENTRY(DD_TESTING_NS "set_helper_path", PHP_FN(datadog_appsec_testing_set_helper_path), set_string_arginfo, 0, NULL, NULL) +2026-04-08T19:21:25.301923Z 01O |  ^ +2026-04-08T19:21:25.301930Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' +2026-04-08T19:21:25.301936Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, +2026-04-08T19:21:25.301941Z 01O |  ^ +2026-04-08T19:21:25.301950Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/helper_process.c:634:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] +2026-04-08T19:21:25.301963Z 01O 634 | ZEND_RAW_FENTRY(DD_TESTING_NS "is_connected_to_helper", PHP_FN(datadog_appsec_testing_is_connected_to_helper), void_ret_bool_arginfo, 0, NULL, NULL) +2026-04-08T19:21:25.301968Z 01O |  ^ +2026-04-08T19:21:25.301976Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' +2026-04-08T19:21:25.301981Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, +2026-04-08T19:21:25.301986Z 01O |  ^ +2026-04-08T19:21:25.301993Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/helper_process.c:635:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] +2026-04-08T19:21:25.302061Z 01O 635 | ZEND_RAW_FENTRY(DD_TESTING_NS "backoff_status", PHP_FN(datadog_appsec_testing_backoff_status), void_ret_array_arginfo, 0, NULL, NULL) +2026-04-08T19:21:25.302067Z 01O |  ^ +2026-04-08T19:21:25.302073Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' +2026-04-08T19:21:25.302089Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, +2026-04-08T19:21:25.302094Z 01O |  ^ +2026-04-08T19:21:25.302120Z 01O 1118 warnings generated. +2026-04-08T19:21:25.302136Z 01O Suppressed 1111 warnings (1106 in non-user code, 5 NOLINT). +2026-04-08T19:21:25.302142Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. +2026-04-08T19:21:25.302164Z 01O 3 warnings treated as errors +2026-04-08T19:21:25.302167Z 01O +2026-04-08T19:21:25.302177Z 01O [ 9/56][2.0s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/entity_body.c +2026-04-08T19:21:25.302186Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/entity_body.c:217:1: error: replace macro with enum [cppcoreguidelines-macro-to-enum,-warnings-as-errors] +2026-04-08T19:21:25.302189Z 01O 217 | #define MAX_XML_DEPTH 30 +2026-04-08T19:21:25.302192Z 01O | ^~~~~~~ +2026-04-08T19:21:25.302198Z 01O  |  = +2026-04-08T19:21:25.302200Z 01O  218 | static zval _convert_xml(const char *nonnull entity, size_t entity_len, +2026-04-08T19:21:25.302206Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/entity_body.c:217:9: error: macro 'MAX_XML_DEPTH' defines an integral constant; prefer an enum instead [cppcoreguidelines-macro-to-enum,-warnings-as-errors] +2026-04-08T19:21:25.302211Z 01O 217 | #define MAX_XML_DEPTH 30 +2026-04-08T19:21:25.302214Z 01O |  ^ +2026-04-08T19:21:25.302219Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/entity_body.c:247:1: error: replace macro with enum [cppcoreguidelines-macro-to-enum,-warnings-as-errors] +2026-04-08T19:21:25.302225Z 01O 247 | #define MAX_DEPTH_DEFAULT 30 +2026-04-08T19:21:25.302227Z 01O | ^~~~~~~ +2026-04-08T19:21:25.302230Z 01O  |  = +2026-04-08T19:21:25.302244Z 01O  248 | zend_long max_depth = MAX_DEPTH_DEFAULT; +2026-04-08T19:21:25.302254Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/entity_body.c:247:9: error: macro 'MAX_DEPTH_DEFAULT' defines an integral constant; prefer an enum instead [cppcoreguidelines-macro-to-enum,-warnings-as-errors] +2026-04-08T19:21:25.302260Z 01O 247 | #define MAX_DEPTH_DEFAULT 30 +2026-04-08T19:21:25.302265Z 01O |  ^ +2026-04-08T19:21:25.302268Z 01O 1122 warnings generated. +2026-04-08T19:21:25.302272Z 01O Suppressed 1125 warnings (1118 in non-user code, 7 NOLINT). +2026-04-08T19:21:25.302278Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. +2026-04-08T19:21:25.302281Z 01O 4 warnings treated as errors +2026-04-08T19:21:25.302284Z 01O +2026-04-08T19:21:25.302292Z 01O [10/56][2.2s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/xml_truncated_parser.c +2026-04-08T19:21:25.302330Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/xml_truncated_parser.c:21:1: error: replace macro with enum [cppcoreguidelines-macro-to-enum,-warnings-as-errors] +2026-04-08T19:21:25.302336Z 01O 21 | #define STACK_INITIAL_CAPACITY 16 +2026-04-08T19:21:25.302342Z 01O | ^~~~~~~ +2026-04-08T19:21:25.302345Z 01O  |  = +2026-04-08T19:21:25.302348Z 01O  22 | typedef struct { +2026-04-08T19:21:25.302358Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/xml_truncated_parser.c:21:9: error: macro 'STACK_INITIAL_CAPACITY' defines an integral constant; prefer an enum instead [cppcoreguidelines-macro-to-enum,-warnings-as-errors] +2026-04-08T19:21:25.302362Z 01O 21 | #define STACK_INITIAL_CAPACITY 16 +2026-04-08T19:21:25.302366Z 01O |  ^ +2026-04-08T19:21:25.302375Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/xml_truncated_parser.c:456:27: error: multilevel pointer conversion from 'const xmlChar **' (aka 'const unsigned char **') to 'const void *', please use explicit cast [bugprone-multi-level-implicit-pointer-conversion,-warnings-as-errors] +2026-04-08T19:21:25.302381Z 01O 456 | memcpy(&attr, &attributes[(ptrdiff_t)i * 5], sizeof(attr)); +2026-04-08T19:21:25.302385Z 01O |  ^ +2026-04-08T19:21:25.302391Z 01O 966 warnings generated. +2026-04-08T19:21:25.302399Z 01O Suppressed 971 warnings (963 in non-user code, 8 NOLINT). +2026-04-08T19:21:25.302404Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. +2026-04-08T19:21:25.302419Z 01O 3 warnings treated as errors +2026-04-08T19:21:25.302430Z 01O +2026-04-08T19:21:25.302437Z 01O [11/56][1.7s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/configuration.c +2026-04-08T19:21:27.805464Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/configuration.c:248:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] +2026-04-08T19:21:27.805499Z 01O 248 | ZEND_RAW_FENTRY(DD_TESTING_NS "zai_config_get_value", PHP_FN(datadog_appsec_testing_zai_config_get_value), set_string_arginfo, 0, NULL, NULL) +2026-04-08T19:21:27.805504Z 01O |  ^ +2026-04-08T19:21:27.805525Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' +2026-04-08T19:21:27.805531Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, +2026-04-08T19:21:27.805535Z 01O |  ^ +2026-04-08T19:21:27.805543Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/configuration.c:249:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] +2026-04-08T19:21:27.805551Z 01O 249 | ZEND_RAW_FENTRY(DD_TESTING_NS "zai_config_get_global_value", PHP_FN(datadog_appsec_testing_zai_config_get_global_value), set_string_arginfo, 0, NULL, NULL) +2026-04-08T19:21:27.805555Z 01O |  ^ +2026-04-08T19:21:27.805600Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' +2026-04-08T19:21:27.805609Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, +2026-04-08T19:21:27.805623Z 01O |  ^ +2026-04-08T19:21:27.805629Z 01O 968 warnings generated. +2026-04-08T19:21:27.805633Z 01O Suppressed 961 warnings (960 in non-user code, 1 NOLINT). +2026-04-08T19:21:27.805639Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. +2026-04-08T19:21:27.805642Z 01O 2 warnings treated as errors +2026-04-08T19:21:27.805645Z 01O +2026-04-08T19:21:27.805656Z 01O [12/56][1.6s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/commands/request_exec.c +2026-04-08T19:21:27.805662Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/commands/request_exec.c:61:36: error: '*' has higher precedence than '+'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] +2026-04-08T19:21:27.805667Z 01O 61 | (ctx->rasp_rule != NULL) + (ctx->subctx_id != NULL) * 2; +2026-04-08T19:21:27.805674Z 01O |  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +2026-04-08T19:21:27.805684Z 01O  |  ( ) +2026-04-08T19:21:27.805688Z 01O 954 warnings generated. +2026-04-08T19:21:27.805694Z 01O Suppressed 953 warnings (953 in non-user code). +2026-04-08T19:21:27.805702Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. +2026-04-08T19:21:27.805707Z 01O 1 warning treated as error +2026-04-08T19:21:27.805725Z 01O +2026-04-08T19:21:27.805734Z 01O [13/56][4.8s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/commands/request_init.c +2026-04-08T19:21:27.805741Z 01O 959 warnings generated. +2026-04-08T19:21:27.805747Z 01O Suppressed 959 warnings (959 in non-user code). +2026-04-08T19:21:27.805750Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. +2026-04-08T19:21:27.805754Z 01O +2026-04-08T19:21:27.805762Z 01O [14/56][5.3s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/backtrace.c +2026-04-08T19:21:27.805769Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/backtrace.c:324:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] +2026-04-08T19:21:27.805777Z 01O 324 | ZEND_RAW_FENTRY(DD_TESTING_NS "generate_backtrace", PHP_FN(datadog_appsec_testing_generate_backtrace), void_ret_array_arginfo,0, NULL, NULL) +2026-04-08T19:21:27.805783Z 01O |  ^ +2026-04-08T19:21:27.805786Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' +2026-04-08T19:21:27.805795Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, +2026-04-08T19:21:27.805820Z 01O |  ^ +2026-04-08T19:21:27.805832Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/backtrace.c:325:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] +2026-04-08T19:21:27.805851Z 01O 325 | ZEND_RAW_FENTRY(DD_TESTING_NS "report_exploit_backtrace", PHP_FN(datadog_appsec_testing_report_exploit_backtrace), void_ret_bool_arginfo, 0, NULL, NULL) +2026-04-08T19:21:27.805855Z 01O |  ^ +2026-04-08T19:21:27.805863Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' +2026-04-08T19:21:27.805873Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, +2026-04-08T19:21:27.805877Z 01O |  ^ +2026-04-08T19:21:27.805881Z 01O 1058 warnings generated. +2026-04-08T19:21:27.805886Z 01O Suppressed 1052 warnings (1050 in non-user code, 2 NOLINT). +2026-04-08T19:21:27.805888Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. +2026-04-08T19:21:27.805892Z 01O 2 warnings treated as errors +2026-04-08T19:21:27.805898Z 01O +2026-04-08T19:21:27.805902Z 01O [15/56][5.6s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/commands_helpers.c +2026-04-08T19:21:29.308421Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/commands_helpers.c:296:24: error: redundant explicit casting to the same type 'dd_imsg * _Nullable * _Nonnull' (aka 'struct _dd_imsg **') as the sub-expression, remove this casting [readability-redundant-casting,-warnings-as-errors] +2026-04-08T19:21:29.308441Z 01O 296 | dd_imsg **imsg_c = (dd_imsg * nullable * nonnull) imsg; +2026-04-08T19:21:29.308446Z 01O |  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +2026-04-08T19:21:29.308454Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/commands_helpers.c:294:46: note: source type originates from referencing this parameter +2026-04-08T19:21:29.308459Z 01O 294 | static void _imsg_cleanup(dd_imsg *nullable *imsg) +2026-04-08T19:21:29.308463Z 01O |  ~~~~~~~~~~~~~~~~~~~^ +2026-04-08T19:21:29.308470Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/commands_helpers.c:507:1: error: replace macro with enum [cppcoreguidelines-macro-to-enum,-warnings-as-errors] +2026-04-08T19:21:29.308474Z 01O 507 | #define RESP_INDEX_ACTION_PARAMS 0 +2026-04-08T19:21:29.308477Z 01O | ^~~~~~~ +2026-04-08T19:21:29.308482Z 01O  |  =, +2026-04-08T19:21:29.308485Z 01O  508 | #define RESP_INDEX_APPSEC_SPAN_DATA 1 +2026-04-08T19:21:29.308489Z 01O | ~~~~~~~ +2026-04-08T19:21:29.308495Z 01O  |  =, +2026-04-08T19:21:29.308499Z 01O  509 | #define RESP_INDEX_FORCE_KEEP 2 +2026-04-08T19:21:29.308503Z 01O | ~~~~~~~ +2026-04-08T19:21:29.308525Z 01O  |  =, +2026-04-08T19:21:29.308536Z 01O  510 | #define RESP_INDEX_SETTINGS 3 +2026-04-08T19:21:29.308593Z 01O | ~~~~~~~ +2026-04-08T19:21:29.308600Z 01O  |  =, +2026-04-08T19:21:29.308605Z 01O  511 | #define RESP_INDEX_SPAN_META 4 +2026-04-08T19:21:29.308611Z 01O | ~~~~~~~ +2026-04-08T19:21:29.308614Z 01O  |  =, +2026-04-08T19:21:29.308617Z 01O  512 | #define RESP_INDEX_SPAN_METRICS 5 +2026-04-08T19:21:29.308623Z 01O | ~~~~~~~ +2026-04-08T19:21:29.308625Z 01O  |  = +2026-04-08T19:21:29.308629Z 01O  513 |  +2026-04-08T19:21:29.308639Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/commands_helpers.c:507:9: error: macro 'RESP_INDEX_ACTION_PARAMS' defines an integral constant; prefer an enum instead [cppcoreguidelines-macro-to-enum,-warnings-as-errors] +2026-04-08T19:21:29.308643Z 01O 507 | #define RESP_INDEX_ACTION_PARAMS 0 +2026-04-08T19:21:29.308647Z 01O |  ^ +2026-04-08T19:21:29.308655Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/commands_helpers.c:508:9: error: macro 'RESP_INDEX_APPSEC_SPAN_DATA' defines an integral constant; prefer an enum instead [cppcoreguidelines-macro-to-enum,-warnings-as-errors] +2026-04-08T19:21:29.308659Z 01O 508 | #define RESP_INDEX_APPSEC_SPAN_DATA 1 +2026-04-08T19:21:29.308664Z 01O |  ^ +2026-04-08T19:21:29.308671Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/commands_helpers.c:509:9: error: macro 'RESP_INDEX_FORCE_KEEP' defines an integral constant; prefer an enum instead [cppcoreguidelines-macro-to-enum,-warnings-as-errors] +2026-04-08T19:21:29.308681Z 01O 509 | #define RESP_INDEX_FORCE_KEEP 2 +2026-04-08T19:21:29.308685Z 01O |  ^ +2026-04-08T19:21:29.308706Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/commands_helpers.c:510:9: error: macro 'RESP_INDEX_SETTINGS' defines an integral constant; prefer an enum instead [cppcoreguidelines-macro-to-enum,-warnings-as-errors] +2026-04-08T19:21:29.308713Z 01O 510 | #define RESP_INDEX_SETTINGS 3 +2026-04-08T19:21:29.308718Z 01O |  ^ +2026-04-08T19:21:29.308725Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/commands_helpers.c:511:9: error: macro 'RESP_INDEX_SPAN_META' defines an integral constant; prefer an enum instead [cppcoreguidelines-macro-to-enum,-warnings-as-errors] +2026-04-08T19:21:29.308732Z 01O 511 | #define RESP_INDEX_SPAN_META 4 +2026-04-08T19:21:29.308736Z 01O |  ^ +2026-04-08T19:21:29.308743Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/commands_helpers.c:512:9: error: macro 'RESP_INDEX_SPAN_METRICS' defines an integral constant; prefer an enum instead [cppcoreguidelines-macro-to-enum,-warnings-as-errors] +2026-04-08T19:21:29.308747Z 01O 512 | #define RESP_INDEX_SPAN_METRICS 5 +2026-04-08T19:21:29.308750Z 01O |  ^ +2026-04-08T19:21:29.308763Z 01O 961 warnings generated. +2026-04-08T19:21:29.308767Z 01O Suppressed 961 warnings (953 in non-user code, 8 NOLINT). +2026-04-08T19:21:29.308772Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. +2026-04-08T19:21:29.308783Z 01O 8 warnings treated as errors +2026-04-08T19:21:29.308786Z 01O +2026-04-08T19:21:29.308793Z 01O [16/56][4.7s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/commands/request_shutdown.c +2026-04-08T19:21:29.308801Z 01O 955 warnings generated. +2026-04-08T19:21:29.308828Z 01O Suppressed 955 warnings (955 in non-user code). +2026-04-08T19:21:29.308833Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. +2026-04-08T19:21:29.308838Z 01O +2026-04-08T19:21:29.308843Z 01O [17/56][4.4s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/user_tracking.c +2026-04-08T19:21:29.308850Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/user_tracking.c:432:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] +2026-04-08T19:21:29.308859Z 01O 432 | ZEND_RAW_FENTRY(DD_TESTING_NS "dump_user_collection_mode", PHP_FN(datadog_appsec_testing_dump_user_collection_mode), dump_user_collection_mode_arginfo, 0, NULL, NULL) +2026-04-08T19:21:29.308862Z 01O |  ^ +2026-04-08T19:21:29.308869Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' +2026-04-08T19:21:29.308878Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, +2026-04-08T19:21:29.308881Z 01O |  ^ +2026-04-08T19:21:29.308886Z 01O 961 warnings generated. +2026-04-08T19:21:29.308891Z 01O Suppressed 957 warnings (957 in non-user code). +2026-04-08T19:21:29.308894Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. +2026-04-08T19:21:29.308898Z 01O 1 warning treated as error +2026-04-08T19:21:29.308902Z 01O +2026-04-08T19:21:29.308908Z 01O [18/56][5.0s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/network.c +2026-04-08T19:21:29.308914Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/network.c:459:1: error: replace macro with enum [cppcoreguidelines-macro-to-enum,-warnings-as-errors] +2026-04-08T19:21:29.308919Z 01O 459 | #define ONE_E3 1000 +2026-04-08T19:21:29.308922Z 01O | ^~~~~~~ +2026-04-08T19:21:29.308925Z 01O  |  = , +2026-04-08T19:21:29.308930Z 01O  460 | #define ONE_E6 1000000 +2026-04-08T19:21:29.308933Z 01O | ~~~~~~~ +2026-04-08T19:21:29.308936Z 01O  |  = , +2026-04-08T19:21:29.308941Z 01O  461 | #define ONE_E9 1000000000 +2026-04-08T19:21:29.308943Z 01O | ~~~~~~~ +2026-04-08T19:21:29.308946Z 01O  |  = +2026-04-08T19:21:29.308953Z 01O  462 | static void _timespec_add_ms(struct timespec *ts, long num_ms) +2026-04-08T19:21:29.308958Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/network.c:459:9: error: macro 'ONE_E3' defines an integral constant; prefer an enum instead [cppcoreguidelines-macro-to-enum,-warnings-as-errors] +2026-04-08T19:21:29.308962Z 01O 459 | #define ONE_E3 1000 +2026-04-08T19:21:29.308967Z 01O |  ^ +2026-04-08T19:21:29.308971Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/network.c:460:9: error: macro 'ONE_E6' defines an integral constant; prefer an enum instead [cppcoreguidelines-macro-to-enum,-warnings-as-errors] +2026-04-08T19:21:29.308975Z 01O 460 | #define ONE_E6 1000000 +2026-04-08T19:21:29.308994Z 01O |  ^ +2026-04-08T19:21:29.309006Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/network.c:461:9: error: macro 'ONE_E9' defines an integral constant; prefer an enum instead [cppcoreguidelines-macro-to-enum,-warnings-as-errors] +2026-04-08T19:21:29.309011Z 01O 461 | #define ONE_E9 1000000000 +2026-04-08T19:21:29.309020Z 01O |  ^ +2026-04-08T19:21:29.309023Z 01O 925 warnings generated. +2026-04-08T19:21:31.310088Z 01O Suppressed 936 warnings (921 in non-user code, 15 NOLINT). +2026-04-08T19:21:31.310093Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. +2026-04-08T19:21:31.310100Z 01O 4 warnings treated as errors +2026-04-08T19:21:31.310102Z 01O +2026-04-08T19:21:31.310108Z 01O [19/56][7.5s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/request_abort.c +2026-04-08T19:21:31.310144Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/request_abort.c:543:27: error: multilevel pointer conversion from 'void *' to 'php_output_handler **' (aka 'struct _php_output_handler **'), please use explicit cast [bugprone-multi-level-implicit-pointer-conversion,-warnings-as-errors] +2026-04-08T19:21:31.310161Z 01O 543 | while ((handler = zend_stack_top(&OG(handlers)))) { +2026-04-08T19:21:31.310171Z 01O |  ^ +2026-04-08T19:21:31.310188Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/request_abort.c:720:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] +2026-04-08T19:21:31.310198Z 01O 720 | ZEND_RAW_FENTRY(DD_TESTING_NS "abort_static_page", PHP_FN(datadog_appsec_testing_abort_static_page), no_params_void_ret, 0, NULL, NULL) +2026-04-08T19:21:31.310203Z 01O |  ^ +2026-04-08T19:21:31.310214Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' +2026-04-08T19:21:31.310220Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, +2026-04-08T19:21:31.310224Z 01O |  ^ +2026-04-08T19:21:31.310231Z 01O 957 warnings generated. +2026-04-08T19:21:31.310233Z 01O Suppressed 958 warnings (952 in non-user code, 6 NOLINT). +2026-04-08T19:21:31.310237Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. +2026-04-08T19:21:31.310243Z 01O 2 warnings treated as errors +2026-04-08T19:21:31.310253Z 01O +2026-04-08T19:21:31.310261Z 01O [20/56][1.7s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/commands/client_init.c +2026-04-08T19:21:31.310274Z 01O 960 warnings generated. +2026-04-08T19:21:31.310279Z 01O Suppressed 962 warnings (960 in non-user code, 2 NOLINT). +2026-04-08T19:21:31.310285Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. +2026-04-08T19:21:31.310291Z 01O +2026-04-08T19:21:31.310296Z 01O [21/56][1.4s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/php_helpers.c +2026-04-08T19:21:31.310349Z 01O 902 warnings generated. +2026-04-08T19:21:31.310365Z 01O Suppressed 902 warnings (902 in non-user code). +2026-04-08T19:21:31.310368Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. +2026-04-08T19:21:31.310372Z 01O +2026-04-08T19:21:31.310381Z 01O [22/56][4.4s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/ddtrace.c +2026-04-08T19:21:31.310387Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/ddtrace.c:592:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] +2026-04-08T19:21:31.310394Z 01O 592 | ZEND_RAW_FENTRY(DD_TESTING_NS "ddtrace_rshutdown", PHP_FN(datadog_appsec_testing_ddtrace_rshutdown), void_ret_bool_arginfo, 0, NULL, NULL) +2026-04-08T19:21:31.310399Z 01O |  ^ +2026-04-08T19:21:31.310403Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' +2026-04-08T19:21:31.310410Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, +2026-04-08T19:21:31.310420Z 01O |  ^ +2026-04-08T19:21:31.310426Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/ddtrace.c:593:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] +2026-04-08T19:21:31.310438Z 01O 593 | ZEND_RAW_FENTRY(DD_TESTING_NS "root_span_add_tag", PHP_FN(datadog_appsec_testing_root_span_add_tag), arginfo_root_span_add_tag, 0, NULL, NULL) +2026-04-08T19:21:31.310459Z 01O |  ^ +2026-04-08T19:21:31.310464Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' +2026-04-08T19:21:31.310472Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, +2026-04-08T19:21:31.310481Z 01O |  ^ +2026-04-08T19:21:31.310486Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/ddtrace.c:594:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] +2026-04-08T19:21:31.310493Z 01O 594 | ZEND_RAW_FENTRY(DD_TESTING_NS "root_span_get_meta", PHP_FN(datadog_appsec_testing_root_span_get_meta), void_ret_nullable_array, 0, NULL, NULL) +2026-04-08T19:21:31.310501Z 01O |  ^ +2026-04-08T19:21:31.310505Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' +2026-04-08T19:21:31.310511Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, +2026-04-08T19:21:31.310517Z 01O |  ^ +2026-04-08T19:21:31.310522Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/ddtrace.c:595:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] +2026-04-08T19:21:31.310543Z 01O 595 | ZEND_RAW_FENTRY(DD_TESTING_NS "root_span_get_meta_struct", PHP_FN(datadog_appsec_testing_root_span_get_meta_struct), void_ret_nullable_array, 0, NULL, NULL) +2026-04-08T19:21:31.310548Z 01O |  ^ +2026-04-08T19:21:31.310556Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' +2026-04-08T19:21:31.310561Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, +2026-04-08T19:21:31.310566Z 01O |  ^ +2026-04-08T19:21:31.310583Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/ddtrace.c:596:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] +2026-04-08T19:21:31.310597Z 01O 596 | ZEND_RAW_FENTRY(DD_TESTING_NS "root_span_get_metrics", PHP_FN(datadog_appsec_testing_root_span_get_metrics), void_ret_nullable_array, 0, NULL, NULL) +2026-04-08T19:21:31.310603Z 01O |  ^ +2026-04-08T19:21:31.310609Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' +2026-04-08T19:21:31.310615Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, +2026-04-08T19:21:31.310620Z 01O |  ^ +2026-04-08T19:21:31.310628Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/ddtrace.c:597:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] +2026-04-08T19:21:31.310636Z 01O 597 | ZEND_RAW_FENTRY(DD_TESTING_NS "get_formatted_runtime_id", PHP_FN(datadog_appsec_testing_get_formatted_runtime_id), void_ret_nullable_string, 0, NULL, NULL) +2026-04-08T19:21:31.310641Z 01O |  ^ +2026-04-08T19:21:31.310647Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' +2026-04-08T19:21:31.310654Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, +2026-04-08T19:21:31.310659Z 01O |  ^ +2026-04-08T19:21:31.310670Z 01O 1750 warnings generated. +2026-04-08T19:21:31.310672Z 01O Suppressed 1767 warnings (1726 in non-user code, 41 NOLINT). +2026-04-08T19:21:31.310676Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. +2026-04-08T19:21:31.310682Z 01O 6 warnings treated as errors +2026-04-08T19:21:31.310684Z 01O +2026-04-08T19:21:31.310692Z 01O [23/56][9.2s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/compression.cpp +2026-04-08T19:21:31.310702Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/compression.cpp:22:40: error: redundant explicit casting to the same type 'double' as the sub-expression, remove this casting [readability-redundant-casting,-warnings-as-errors] +2026-04-08T19:21:31.310736Z 01O 22 | return (((size_t)((double)in_len * (double)1.015)) + 10 + 8 + 4 + 1); +2026-04-08T19:21:31.310741Z 01O |  ^~~~~~~~ +2026-04-08T19:21:31.310757Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/compression.cpp:34:9: error: the 'empty' method should be used to check for emptiness instead of 'length' [readability-container-size-empty,-warnings-as-errors] +2026-04-08T19:21:31.310774Z 01O 34 | if (text.length() == 0) { +2026-04-08T19:21:31.310778Z 01O |  ^~~~~~~~~~~~~~~~~~ +2026-04-08T19:21:31.310793Z 01O  |  text.empty() +2026-04-08T19:21:31.310805Z 01O /usr/bin/../include/c++/v1/string:1323:78: note: method 'basic_string'::empty() defined here +2026-04-08T19:21:31.310811Z 01O 1323 | _LIBCPP_NODISCARD _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 bool empty() const _NOEXCEPT { +2026-04-08T19:21:31.310819Z 01O |  ^ +2026-04-08T19:21:31.310823Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/compression.cpp:72:9: error: the 'empty' method should be used to check for emptiness instead of 'length' [readability-container-size-empty,-warnings-as-errors] +2026-04-08T19:21:31.310830Z 01O 72 | if (compressed.length() < 1 || Z_OK != inflateInit2(&strm, encoding)) { +2026-04-08T19:21:31.310836Z 01O |  ^~~~~~~~~~~~~~~~~~~~~~~ +2026-04-08T19:21:31.310838Z 01O  |  compressed.empty() +2026-04-08T19:21:31.310842Z 01O /usr/bin/../include/c++/v1/string:1323:78: note: method 'basic_string'::empty() defined here +2026-04-08T19:21:31.310849Z 01O 1323 | _LIBCPP_NODISCARD _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 bool empty() const _NOEXCEPT { +2026-04-08T19:21:31.310852Z 01O |  ^ +2026-04-08T19:21:31.310856Z 01O 8418 warnings generated. +2026-04-08T19:21:36.316177Z 01O Suppressed 8427 warnings (8415 in non-user code, 12 NOLINT). +2026-04-08T19:21:36.316183Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. +2026-04-08T19:21:36.316200Z 01O 3 warnings treated as errors +2026-04-08T19:21:36.316210Z 01O +2026-04-08T19:21:36.316218Z 01O [24/56][3.8s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/logging.c +2026-04-08T19:21:36.316240Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/logging.c:209:25: error: redundant explicit casting to the same type 'const char *' as the sub-expression, remove this casting [readability-redundant-casting,-warnings-as-errors] +2026-04-08T19:21:36.316253Z 01O 209 | size_t len = strlen((const char *)log_level); +2026-04-08T19:21:36.316258Z 01O |  ^~~~~~~~~~~~~~ +2026-04-08T19:21:36.316272Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/logging.c:203:56: note: source type originates from referencing this parameter +2026-04-08T19:21:36.316282Z 01O 203 | static int _dd_log_level_from_str(const char *nullable log_level) +2026-04-08T19:21:36.316287Z 01O |  ~~~~~~~~~~~~~~ ^ +2026-04-08T19:21:36.316303Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/logging.c:407:5: error: the value returned by this function should not be disregarded; neglecting it may lead to errors [cert-err33-c,-warnings-as-errors] +2026-04-08T19:21:36.316362Z 01O 407 | gmtime_r(&time->tv_sec, &tm); +2026-04-08T19:21:36.316369Z 01O |  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ +2026-04-08T19:21:36.316379Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/logging.c:407:5: note: cast the expression to void to silence this warning +2026-04-08T19:21:36.316387Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/logging.c:572:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] +2026-04-08T19:21:36.316394Z 01O 572 | ZEND_RAW_FENTRY(DD_TESTING_NS "mlog", PHP_FN(datadog_appsec_testing_mlog), mlog, 0, NULL, NULL) +2026-04-08T19:21:36.316401Z 01O |  ^ +2026-04-08T19:21:36.316405Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' +2026-04-08T19:21:36.316412Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, +2026-04-08T19:21:36.316418Z 01O |  ^ +2026-04-08T19:21:36.316424Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/logging.c:573:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] +2026-04-08T19:21:36.316438Z 01O 573 | ZEND_RAW_FENTRY(DD_TESTING_NS "fdclose", PHP_FN(datadog_appsec_testing_fdclose), fdclose, 0, NULL, NULL) +2026-04-08T19:21:36.316448Z 01O |  ^ +2026-04-08T19:21:36.316453Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' +2026-04-08T19:21:36.316463Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, +2026-04-08T19:21:36.316470Z 01O |  ^ +2026-04-08T19:21:36.316473Z 01O 1085 warnings generated. +2026-04-08T19:21:36.316477Z 01O Suppressed 1082 warnings (1075 in non-user code, 7 NOLINT). +2026-04-08T19:21:36.316482Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. +2026-04-08T19:21:36.316485Z 01O 4 warnings treated as errors +2026-04-08T19:21:36.316488Z 01O +2026-04-08T19:21:36.316497Z 01O [25/56][1.3s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/php_objects.c +2026-04-08T19:21:36.316502Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/php_objects.c:33:53: error: multilevel pointer conversion from 'const zend_function_entry **' (aka 'const struct _zend_function_entry **') to 'const void *', please use explicit cast [bugprone-multi-level-implicit-pointer-conversion,-warnings-as-errors] +2026-04-08T19:21:36.316508Z 01O 33 | zend_llist_add_element(&_function_entry_arrays, &entries); +2026-04-08T19:21:36.316514Z 01O |  ^ +2026-04-08T19:21:36.316523Z 01O 903 warnings generated. +2026-04-08T19:21:36.316536Z 01O Suppressed 902 warnings (902 in non-user code). +2026-04-08T19:21:36.316540Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. +2026-04-08T19:21:36.316548Z 01O 1 warning treated as error +2026-04-08T19:21:36.316550Z 01O +2026-04-08T19:21:36.316557Z 01O [26/56][1.7s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/commands/config_sync.c +2026-04-08T19:21:36.316563Z 01O 951 warnings generated. +2026-04-08T19:21:36.316566Z 01O Suppressed 951 warnings (951 in non-user code). +2026-04-08T19:21:36.316570Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. +2026-04-08T19:21:36.316581Z 01O +2026-04-08T19:21:36.316592Z 01O [27/56][12.4s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/parameter_base.cpp +2026-04-08T19:21:36.316598Z 01O 8199 warnings generated. +2026-04-08T19:21:36.316605Z 01O Suppressed 8204 warnings (8199 in non-user code, 5 NOLINT). +2026-04-08T19:21:36.316608Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. +2026-04-08T19:21:36.316611Z 01O +2026-04-08T19:21:36.316619Z 01O [28/56][13.5s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/parameter.cpp +2026-04-08T19:21:36.316629Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/parameter.cpp:87:36: error: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage,-warnings-as-errors] +2026-04-08T19:21:36.316636Z 01O 87 | ddwaf_object_stringl(&obj, str.data(), length); +2026-04-08T19:21:36.316642Z 01O |  ~~~~^~~~ +2026-04-08T19:21:36.316647Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/parameter.cpp:127:43: error: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage,-warnings-as-errors] +2026-04-08T19:21:36.316653Z 01O 127 | if (!ddwaf_object_map_addl(this, name.data(), length, entry)) { +2026-04-08T19:21:36.316658Z 01O |  ~~~~~^~~~ +2026-04-08T19:21:36.316661Z 01O 8126 warnings generated. +2026-04-08T19:21:36.316665Z 01O Suppressed 8133 warnings (8124 in non-user code, 9 NOLINT). +2026-04-08T19:21:36.316671Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. +2026-04-08T19:21:36.316679Z 01O 2 warnings treated as errors +2026-04-08T19:21:36.316683Z 01O +2026-04-08T19:21:36.316704Z 01O [29/56][12.6s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/request_lifecycle.c +2026-04-08T19:21:36.316719Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/request_lifecycle.c:54:1: error: replace macro with enum [cppcoreguidelines-macro-to-enum,-warnings-as-errors] +2026-04-08T19:21:36.316727Z 01O 54 | #define MAX_LENGTH_OF_REM_CFG_PATH 31 +2026-04-08T19:21:36.316736Z 01O | ^~~~~~~ +2026-04-08T19:21:36.316739Z 01O  |  = +2026-04-08T19:21:36.316742Z 01O  55 | static THREAD_LOCAL_ON_ZTS char +2026-04-08T19:21:36.316775Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/request_lifecycle.c:54:9: error: macro 'MAX_LENGTH_OF_REM_CFG_PATH' defines an integral constant; prefer an enum instead [cppcoreguidelines-macro-to-enum,-warnings-as-errors] +2026-04-08T19:21:36.316779Z 01O 54 | #define MAX_LENGTH_OF_REM_CFG_PATH 31 +2026-04-08T19:21:36.316782Z 01O |  ^ +2026-04-08T19:21:36.316791Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/request_lifecycle.c:1090:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] +2026-04-08T19:21:36.316797Z 01O 1090 | ZEND_RAW_FENTRY(DD_TESTING_NS "dump_req_lifecycle_state", PHP_FN(datadog_appsec_testing_dump_req_lifecycle_state), dump_arginfo, 0, NULL, NULL) +2026-04-08T19:21:36.316801Z 01O |  ^ +2026-04-08T19:21:36.316819Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' +2026-04-08T19:21:36.316832Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, +2026-04-08T19:21:36.316838Z 01O |  ^ +2026-04-08T19:21:36.316844Z 01O 970 warnings generated. +2026-04-08T19:21:36.316847Z 01O Suppressed 969 warnings (964 in non-user code, 5 NOLINT). +2026-04-08T19:21:36.316850Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. +2026-04-08T19:21:36.316856Z 01O 3 warnings treated as errors +2026-04-08T19:21:36.316858Z 01O +2026-04-08T19:21:36.316864Z 01O [30/56][14.3s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/tags.c +2026-04-08T19:21:36.316872Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/tags.c:1697:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] +2026-04-08T19:21:36.316878Z 01O 1697 | ZEND_RAW_FENTRY(DD_APPSEC_NS "track_user_signup_event_automated", PHP_FN(datadog_appsec_track_user_signup_event_automated), track_user_signup_event_automated_arginfo, 0, NULL, NULL) +2026-04-08T19:21:36.316883Z 01O |  ^ +2026-04-08T19:21:36.316889Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' +2026-04-08T19:21:36.316894Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, +2026-04-08T19:21:36.316906Z 01O |  ^ +2026-04-08T19:21:36.316916Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/tags.c:1698:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] +2026-04-08T19:21:36.316922Z 01O 1698 | ZEND_RAW_FENTRY(DD_APPSEC_NS "track_user_signup_event", PHP_FN(datadog_appsec_track_user_signup_event), track_user_signup_event_arginfo, 0, NULL, NULL) +2026-04-08T19:21:36.316926Z 01O |  ^ +2026-04-08T19:21:36.316932Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' +2026-04-08T19:21:36.316947Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, +2026-04-08T19:21:36.316953Z 01O |  ^ +2026-04-08T19:21:36.316960Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/tags.c:1699:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] +2026-04-08T19:21:36.316967Z 01O 1699 | ZEND_RAW_FENTRY(DD_APPSEC_NS "track_user_login_success_event_automated", PHP_FN(datadog_appsec_track_user_login_success_event_automated), track_user_login_success_event_automated_arginfo, 0, NULL, NULL) +2026-04-08T19:21:36.316971Z 01O |  ^ +2026-04-08T19:21:36.316988Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' +2026-04-08T19:21:36.316999Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, +2026-04-08T19:21:36.317005Z 01O |  ^ +2026-04-08T19:21:36.317013Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/tags.c:1700:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] +2026-04-08T19:21:36.317019Z 01O 1700 | ZEND_RAW_FENTRY(DD_APPSEC_NS "track_user_login_success_event", PHP_FN(datadog_appsec_track_user_login_success_event), track_user_login_success_event_arginfo, 0, NULL, NULL) +2026-04-08T19:21:36.317023Z 01O |  ^ +2026-04-08T19:21:36.317037Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' +2026-04-08T19:21:36.317043Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, +2026-04-08T19:21:36.317047Z 01O |  ^ +2026-04-08T19:21:36.317056Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/tags.c:1701:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] +2026-04-08T19:21:36.317062Z 01O 1701 | ZEND_RAW_FENTRY(DD_APPSEC_NS "track_user_login_failure_event_automated", PHP_FN(datadog_appsec_track_user_login_failure_event_automated), track_user_login_failure_event_automated_arginfo, 0, NULL, NULL) +2026-04-08T19:21:36.317072Z 01O |  ^ +2026-04-08T19:21:36.317081Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' +2026-04-08T19:21:36.317086Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, +2026-04-08T19:21:36.317091Z 01O |  ^ +2026-04-08T19:21:36.317130Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/tags.c:1702:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] +2026-04-08T19:21:36.317136Z 01O 1702 | ZEND_RAW_FENTRY(DD_APPSEC_NS "track_user_login_failure_event", PHP_FN(datadog_appsec_track_user_login_failure_event), track_user_login_failure_event_arginfo, 0, NULL, NULL) +2026-04-08T19:21:36.317140Z 01O |  ^ +2026-04-08T19:21:36.317155Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' +2026-04-08T19:21:36.317167Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, +2026-04-08T19:21:36.317174Z 01O |  ^ +2026-04-08T19:21:36.317182Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/tags.c:1703:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] +2026-04-08T19:21:36.317187Z 01O 1703 | ZEND_RAW_FENTRY(DD_APPSEC_NS "track_authenticated_user_event_automated", PHP_FN(datadog_appsec_track_authenticated_user_event_automated), track_authenticated_user_event_automated_arginfo, 0, NULL, NULL) +2026-04-08T19:21:36.317192Z 01O |  ^ +2026-04-08T19:21:36.317198Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' +2026-04-08T19:21:36.317203Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, +2026-04-08T19:21:36.317207Z 01O |  ^ +2026-04-08T19:21:36.317214Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/tags.c:1704:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] +2026-04-08T19:21:36.317219Z 01O 1704 | ZEND_RAW_FENTRY(DD_APPSEC_NS "track_authenticated_user_event", PHP_FN(datadog_appsec_track_authenticated_user_event), track_authenticated_user_event_arginfo, 0, NULL, NULL) +2026-04-08T19:21:36.317224Z 01O |  ^ +2026-04-08T19:21:36.317232Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' +2026-04-08T19:21:36.317260Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, +2026-04-08T19:21:36.317266Z 01O |  ^ +2026-04-08T19:21:36.317274Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/tags.c:1705:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] +2026-04-08T19:21:36.317279Z 01O 1705 | ZEND_RAW_FENTRY(DD_APPSEC_NS "track_custom_event", PHP_FN(datadog_appsec_track_custom_event), track_custom_event_arginfo, 0, NULL, NULL) +2026-04-08T19:21:36.317294Z 01O |  ^ +2026-04-08T19:21:36.317300Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' +2026-04-08T19:21:36.317306Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, +2026-04-08T19:21:36.317313Z 01O |  ^ +2026-04-08T19:21:36.317323Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/tags.c:1710:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] +2026-04-08T19:21:36.317332Z 01O 1710 | ZEND_RAW_FENTRY(DD_TESTING_NS "add_all_ancillary_tags", PHP_FN(datadog_appsec_testing_add_all_ancillary_tags), add_ancillary_tags, 0, NULL, NULL) +2026-04-08T19:21:36.317338Z 01O |  ^ +2026-04-08T19:21:36.317342Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' +2026-04-08T19:21:36.317348Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, +2026-04-08T19:21:36.317354Z 01O |  ^ +2026-04-08T19:21:36.317359Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/tags.c:1711:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] +2026-04-08T19:21:36.317366Z 01O 1711 | ZEND_RAW_FENTRY(DD_TESTING_NS "add_basic_ancillary_tags", PHP_FN(datadog_appsec_testing_add_basic_ancillary_tags), add_ancillary_tags, 0, NULL, NULL) +2026-04-08T19:21:36.317372Z 01O |  ^ +2026-04-08T19:21:36.317375Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' +2026-04-08T19:21:36.317381Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, +2026-04-08T19:21:36.317394Z 01O |  ^ +2026-04-08T19:21:36.317398Z 01O 1365 warnings generated. +2026-04-08T19:21:52.854682Z 01O Suppressed 1331 warnings (1321 in non-user code, 10 NOLINT). +2026-04-08T19:21:52.854688Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. +2026-04-08T19:21:52.854695Z 01O 11 warnings treated as errors +2026-04-08T19:21:52.854705Z 01O +2026-04-08T19:21:52.854724Z 01O [31/56][12.1s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/msgpack_helpers.c +2026-04-08T19:21:52.854743Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/msgpack_helpers.c:22:1: error: replace macro with enum [cppcoreguidelines-macro-to-enum,-warnings-as-errors] +2026-04-08T19:21:52.854752Z 01O 22 | #define MAX_RECURSION_DEPTH 50 // arbitrary limit to prevent stack overflow +2026-04-08T19:21:52.854756Z 01O | ^~~~~~~ +2026-04-08T19:21:52.854763Z 01O  |  = +2026-04-08T19:21:52.854765Z 01O  23 |  +2026-04-08T19:21:52.854772Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/msgpack_helpers.c:22:9: error: macro 'MAX_RECURSION_DEPTH' defines an integral constant; prefer an enum instead [cppcoreguidelines-macro-to-enum,-warnings-as-errors] +2026-04-08T19:21:52.854779Z 01O 22 | #define MAX_RECURSION_DEPTH 50 // arbitrary limit to prevent stack overflow +2026-04-08T19:21:52.854782Z 01O |  ^ +2026-04-08T19:21:52.854788Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/msgpack_helpers.c:637:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] +2026-04-08T19:21:52.854800Z 01O 637 | ZEND_RAW_FENTRY(DD_TESTING_NS "decode_msgpack", PHP_FN(datadog_appsec_testing_decode_msgpack), void_ret_array_arginfo, 0, NULL, NULL) +2026-04-08T19:21:52.854805Z 01O |  ^ +2026-04-08T19:21:52.854810Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' +2026-04-08T19:21:52.854819Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, +2026-04-08T19:21:52.854823Z 01O |  ^ +2026-04-08T19:21:52.854827Z 01O 1016 warnings generated. +2026-04-08T19:21:52.854833Z 01O Suppressed 1017 warnings (1010 in non-user code, 7 NOLINT). +2026-04-08T19:21:52.854836Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. +2026-04-08T19:21:52.854840Z 01O 3 warnings treated as errors +2026-04-08T19:21:52.854845Z 01O +2026-04-08T19:21:52.854850Z 01O [32/56][19.4s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/json_truncated_parser.cpp +2026-04-08T19:21:52.854856Z 01O 19090 warnings generated. +2026-04-08T19:21:52.854869Z 01O Suppressed 19101 warnings (19090 in non-user code, 11 NOLINT). +2026-04-08T19:21:52.854879Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. +2026-04-08T19:21:52.854883Z 01O +2026-04-08T19:21:52.854894Z 01O [33/56][20.6s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/config.cpp +2026-04-08T19:21:52.854953Z 01O 19332 warnings generated. +2026-04-08T19:21:52.854959Z 01O Suppressed 19337 warnings (19332 in non-user code, 5 NOLINT). +2026-04-08T19:21:52.854965Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. +2026-04-08T19:21:52.854967Z 01O +2026-04-08T19:21:52.854974Z 01O [34/56][21.8s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/network/socket.cpp +2026-04-08T19:21:52.854985Z 01O 20161 warnings generated. +2026-04-08T19:21:52.854988Z 01O Suppressed 20165 warnings (20161 in non-user code, 4 NOLINT). +2026-04-08T19:21:52.854991Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. +2026-04-08T19:21:52.854997Z 01O +2026-04-08T19:21:52.855001Z 01O [35/56][23.2s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/utils.cpp +2026-04-08T19:21:52.855008Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/utils.cpp:18:33: error: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage,-warnings-as-errors] +2026-04-08T19:21:52.855015Z 01O 18 | std::ifstream file(filename.data(), std::ios::in); +2026-04-08T19:21:52.855023Z 01O |  ~~~~~~~~~^~~~ +2026-04-08T19:21:52.855036Z 01O 21135 warnings generated. +2026-04-08T19:21:52.855068Z 01O Suppressed 21139 warnings (21134 in non-user code, 5 NOLINT). +2026-04-08T19:21:52.855080Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. +2026-04-08T19:21:52.855086Z 01O 1 warning treated as error +2026-04-08T19:21:52.855104Z 01O +2026-04-08T19:21:52.855112Z 01O [36/56][26.0s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/worker_pool.cpp +2026-04-08T19:21:52.855118Z 01O 16273 warnings generated. +2026-04-08T19:21:52.855123Z 01O Suppressed 16278 warnings (16273 in non-user code, 5 NOLINT). +2026-04-08T19:21:52.855126Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. +2026-04-08T19:21:52.855130Z 01O +2026-04-08T19:21:52.855137Z 01O [37/56][30.2s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/network/acceptor.cpp +2026-04-08T19:21:52.855143Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/network/acceptor.cpp:104:25: error: use designated initializer list to initialize 'timeval' [modernize-use-designated-initializers,-warnings-as-errors] +2026-04-08T19:21:52.855147Z 01O 104 | struct timeval tv = {timeout.count(), 0}; +2026-04-08T19:21:52.855153Z 01O |  ^~~~~~~~~~~~~~~~~~~~ +2026-04-08T19:21:52.855156Z 01O  |  .tv_sec= .tv_usec= +2026-04-08T19:21:52.855160Z 01O /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h:8:1: note: aggregate type is defined here +2026-04-08T19:21:52.855166Z 01O 8 | struct timeval +2026-04-08T19:21:52.855168Z 01O | ^ +2026-04-08T19:21:52.855182Z 01O 24051 warnings generated. +2026-04-08T19:21:52.855196Z 01O Suppressed 24063 warnings (24050 in non-user code, 13 NOLINT). +2026-04-08T19:21:52.855204Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. +2026-04-08T19:21:52.855221Z 01O 1 warning treated as error +2026-04-08T19:21:52.855225Z 01O +2026-04-08T19:21:52.855234Z 01O [38/56][27.2s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/network/msgpack_helpers.cpp +2026-04-08T19:21:52.855242Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/network/msgpack_helpers.cpp:73:12: error: returning a constant reference parameter may cause use-after-free when the parameter is constructed from a temporary [bugprone-return-const-ref-from-parameter,-warnings-as-errors] +2026-04-08T19:21:52.855247Z 01O 73 | return o; +2026-04-08T19:21:52.855252Z 01O |  ^ +2026-04-08T19:21:52.855254Z 01O 31893 warnings generated. +2026-04-08T19:21:52.855258Z 01O Suppressed 31899 warnings (31892 in non-user code, 7 NOLINT). +2026-04-08T19:21:52.855263Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. +2026-04-08T19:21:52.855267Z 01O 1 warning treated as error +2026-04-08T19:21:52.855269Z 01O +2026-04-08T19:21:52.855277Z 01O [39/56][31.1s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/remote_config/config.cpp +2026-04-08T19:21:52.855283Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/remote_config/config.cpp:45:12: error: use designated initializer list to initialize 'config' [modernize-use-designated-initializers,-warnings-as-errors] +2026-04-08T19:21:52.855289Z 01O 45 | return {std::string{shm_path}, std::move(rc_path)}; +2026-04-08T19:21:52.855294Z 01O |  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +2026-04-08T19:21:52.855297Z 01O  |  .shm_path= .rc_path= +2026-04-08T19:21:52.855304Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/remote_config/config.hpp:143:1: note: aggregate type is defined here +2026-04-08T19:21:52.855310Z 01O 143 | struct config { +2026-04-08T19:21:52.855312Z 01O | ^ +2026-04-08T19:21:52.855315Z 01O 26596 warnings generated. +2026-04-08T19:22:13.877716Z 01O Suppressed 26603 warnings (26595 in non-user code, 8 NOLINT). +2026-04-08T19:22:13.877722Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. +2026-04-08T19:22:13.877730Z 01O 1 warning treated as error +2026-04-08T19:22:13.877732Z 01O +2026-04-08T19:22:13.877739Z 01O [40/56][30.3s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/remote_config/listeners/asm_features_listener.cpp +2026-04-08T19:22:13.877746Z 01O 26894 warnings generated. +2026-04-08T19:22:13.877749Z 01O Suppressed 26905 warnings (26894 in non-user code, 11 NOLINT). +2026-04-08T19:22:13.877752Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. +2026-04-08T19:22:13.877758Z 01O +2026-04-08T19:22:13.877765Z 01O [41/56][23.9s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/remote_config/listeners/config_aggregators/asm_features_aggregator.cpp +2026-04-08T19:22:13.877771Z 01O 26742 warnings generated. +2026-04-08T19:22:13.877776Z 01O Suppressed 26753 warnings (26742 in non-user code, 11 NOLINT). +2026-04-08T19:22:13.877779Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. +2026-04-08T19:22:13.877827Z 01O +2026-04-08T19:22:13.877836Z 01O [42/56][31.7s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/remote_config/listeners/config_aggregators/asm_aggregator.cpp +2026-04-08T19:22:13.877840Z 01O 26662 warnings generated. +2026-04-08T19:22:13.877861Z 01O Suppressed 26677 warnings (26662 in non-user code, 15 NOLINT). +2026-04-08T19:22:13.877882Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. +2026-04-08T19:22:13.877893Z 01O +2026-04-08T19:22:13.877901Z 01O [43/56][40.2s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/remote_config/listeners/engine_listener.cpp +2026-04-08T19:22:13.877913Z 01O 45857 warnings generated. +2026-04-08T19:22:13.877922Z 01O Suppressed 45871 warnings (45857 in non-user code, 14 NOLINT). +2026-04-08T19:22:13.877926Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. +2026-04-08T19:22:13.877939Z 01O +2026-04-08T19:22:13.877951Z 01O [44/56][41.2s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/network/proto.cpp +2026-04-08T19:22:13.877958Z 01O 40403 warnings generated. +2026-04-08T19:22:13.877964Z 01O Suppressed 40416 warnings (40403 in non-user code, 13 NOLINT). +2026-04-08T19:22:13.877967Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. +2026-04-08T19:22:13.877970Z 01O +2026-04-08T19:22:13.877978Z 01O [45/56][41.8s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/json_helper.cpp +2026-04-08T19:22:13.877983Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/json_helper.cpp:94:23: error: use C++20 requires constraints instead of enable_if [modernize-use-constraints,-warnings-as-errors] +2026-04-08T19:22:13.877988Z 01O 94 | template >, +2026-04-08T19:22:13.878001Z 01O |  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +2026-04-08T19:22:13.878009Z 01O  96 | std::is_same>>>> +2026-04-08T19:22:13.878014Z 01O |  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +2026-04-08T19:22:13.878025Z 01O  97 | // NOLINTNEXTLINE(misc-no-recursion) +2026-04-08T19:22:13.878052Z 01O 98 | void json_to_object(ddwaf_object *object, T &doc) +2026-04-08T19:22:13.878061Z 01O 99 | { +2026-04-08T19:22:13.878068Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/json_helper.cpp:98:6: error: function 'json_to_object' can be made static or moved into an anonymous namespace to enforce internal linkage [misc-use-internal-linkage,-warnings-as-errors] +2026-04-08T19:22:13.878079Z 01O 98 | void json_to_object(ddwaf_object *object, T &doc) +2026-04-08T19:22:13.878084Z 01O |  ^ +2026-04-08T19:22:13.878088Z 01O  | static +2026-04-08T19:22:13.878100Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/json_helper.cpp:160:58: error: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage,-warnings-as-errors] +2026-04-08T19:22:13.878143Z 01O 160 | rapidjson::ParseResult const result = doc.Parse(json.data()); +2026-04-08T19:22:13.878148Z 01O |  ~~~~~^~~~ +2026-04-08T19:22:13.878156Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/json_helper.cpp:173:37: error: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage,-warnings-as-errors] +2026-04-08T19:22:13.878160Z 01O 173 | parent_field.FindMember(key.data()); +2026-04-08T19:22:13.878164Z 01O |  ~~~~^~~~ +2026-04-08T19:22:13.878179Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/json_helper.cpp:209:40: error: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage,-warnings-as-errors] +2026-04-08T19:22:13.878187Z 01O 209 | return parent_field.FindMember(key.data()) != parent_field.MemberEnd(); +2026-04-08T19:22:13.878191Z 01O |  ~~~~^~~~ +2026-04-08T19:22:13.878203Z 01O 23792 warnings generated. +2026-04-08T19:22:13.878206Z 01O Suppressed 23798 warnings (23787 in non-user code, 11 NOLINT). +2026-04-08T19:22:13.878212Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. +2026-04-08T19:22:13.878218Z 01O 5 warnings treated as errors +2026-04-08T19:22:13.878220Z 01O +2026-04-08T19:22:13.878226Z 01O [46/56][35.4s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/engine_settings.cpp +2026-04-08T19:22:13.878235Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/engine_settings.cpp:56:43: error: initializer for member 'stored_file' is redundant [readability-redundant-member-init,-warnings-as-errors] +2026-04-08T19:22:13.878244Z 01O 56 | std::atomic stored_file{}; +2026-04-08T19:22:13.878249Z 01O |  ^~ +2026-04-08T19:22:13.878255Z 01O 40138 warnings generated. +2026-04-08T19:22:13.878257Z 01O Suppressed 40146 warnings (40137 in non-user code, 9 NOLINT). +2026-04-08T19:22:13.878261Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. +2026-04-08T19:22:13.878267Z 01O 1 warning treated as error +2026-04-08T19:22:13.878269Z 01O +2026-04-08T19:22:13.878274Z 01O [47/56][43.0s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/remote_config/client.cpp +2026-04-08T19:22:13.878281Z 01O 40855 warnings generated. +2026-04-08T19:22:13.878283Z 01O Suppressed 40890 warnings (40855 in non-user code, 35 NOLINT). +2026-04-08T19:22:13.878287Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. +2026-04-08T19:22:13.878292Z 01O +2026-04-08T19:22:13.878298Z 01O [48/56][42.6s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/network/broker.cpp +2026-04-08T19:22:13.878303Z 01O 40571 warnings generated. +2026-04-08T19:22:13.878308Z 01O Suppressed 40586 warnings (40571 in non-user code, 15 NOLINT). +2026-04-08T19:22:13.878314Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. +2026-04-08T19:22:13.878335Z 01O +2026-04-08T19:22:13.878343Z 01O [49/56][40.9s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/remote_config/client_handler.cpp +2026-04-08T19:22:13.878348Z 01O 46520 warnings generated. +2026-04-08T19:22:13.878352Z 01O Suppressed 46534 warnings (46520 in non-user code, 14 NOLINT). +2026-04-08T19:22:13.878358Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. +2026-04-08T19:22:13.878361Z 01O +2026-04-08T19:22:13.878367Z 01O [50/56][51.8s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/engine.cpp +2026-04-08T19:22:41.912097Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/engine.cpp:134:25: error: use designated initializer list to initialize 'action' [modernize-use-designated-initializers,-warnings-as-errors] +2026-04-08T19:22:41.912130Z 01O 134 | action record = {dds::action_type::record, {}}; +2026-04-08T19:22:41.912134Z 01O |  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +2026-04-08T19:22:41.912142Z 01O  |  .type= .parameters= +2026-04-08T19:22:41.912147Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/action.hpp:24:1: note: aggregate type is defined here +2026-04-08T19:22:41.912151Z 01O 24 | struct action { +2026-04-08T19:22:41.912156Z 01O | ^ +2026-04-08T19:22:41.912161Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/engine.cpp:138:28: error: use designated initializer list to initialize 'result' [modernize-use-designated-initializers,-warnings-as-errors] +2026-04-08T19:22:41.912169Z 01O 138 | dds::engine::result res{{}, std::move(event.triggers), force_keep}; +2026-04-08T19:22:41.912175Z 01O |  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +2026-04-08T19:22:41.912178Z 01O  |  .actions= .triggers= .force_keep= +2026-04-08T19:22:41.912184Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/engine.hpp:40:5: note: aggregate type is defined here +2026-04-08T19:22:41.912191Z 01O 40 | struct result { +2026-04-08T19:22:41.912193Z 01O |  ^ +2026-04-08T19:22:41.912197Z 01O 46986 warnings generated. +2026-04-08T19:22:41.912202Z 01O Suppressed 47004 warnings (46984 in non-user code, 20 NOLINT). +2026-04-08T19:22:41.912213Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. +2026-04-08T19:22:41.912224Z 01O 2 warnings treated as errors +2026-04-08T19:22:41.912231Z 01O +2026-04-08T19:22:41.912237Z 01O [51/56][52.1s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/runner.cpp +2026-04-08T19:22:41.912242Z 01O 47862 warnings generated. +2026-04-08T19:22:41.912248Z 01O Suppressed 47906 warnings (47862 in non-user code, 44 NOLINT). +2026-04-08T19:22:41.912250Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. +2026-04-08T19:22:41.912254Z 01O +2026-04-08T19:22:41.912261Z 01O [52/56][52.4s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/service_manager.cpp +2026-04-08T19:22:41.912267Z 01O 47297 warnings generated. +2026-04-08T19:22:41.912270Z 01O Suppressed 47316 warnings (47297 in non-user code, 19 NOLINT). +2026-04-08T19:22:41.912276Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. +2026-04-08T19:22:41.912278Z 01O +2026-04-08T19:22:41.912283Z 01O [53/56][48.0s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/main.cpp +2026-04-08T19:22:41.912302Z 01O 48256 warnings generated. +2026-04-08T19:22:41.912313Z 01O Suppressed 48288 warnings (48256 in non-user code, 32 NOLINT). +2026-04-08T19:22:41.912320Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. +2026-04-08T19:22:41.912343Z 01O +2026-04-08T19:22:41.912350Z 01O [54/56][56.2s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/service.cpp +2026-04-08T19:22:41.912398Z 01O 47290 warnings generated. +2026-04-08T19:22:41.912405Z 01O Suppressed 47362 warnings (47290 in non-user code, 72 NOLINT). +2026-04-08T19:22:41.912408Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. +2026-04-08T19:22:41.912422Z 01O +2026-04-08T19:22:41.912435Z 01O [55/56][56.5s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/subscriber/waf.cpp +2026-04-08T19:22:41.912443Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/subscriber/waf.cpp:218:30: error: use designated initializer list to initialize 'action' [modernize-use-designated-initializers,-warnings-as-errors] +2026-04-08T19:22:41.912448Z 01O 218 | dds::action a{ +2026-04-08T19:22:41.912453Z 01O |  ^ +2026-04-08T19:22:41.912457Z 01O  219 | parse_action_type_string(std::string(action.key())), {}}; +2026-04-08T19:22:41.912461Z 01O |  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +2026-04-08T19:22:41.912467Z 01O  |  .type= .parameters= +2026-04-08T19:22:41.912472Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/subscriber/../action.hpp:24:1: note: aggregate type is defined here +2026-04-08T19:22:41.912477Z 01O 24 | struct action { +2026-04-08T19:22:41.912482Z 01O | ^ +2026-04-08T19:22:41.912486Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/subscriber/waf.cpp:692:9: error: return statement within a void function should not have a specified return value [readability-avoid-return-with-void-value,-warnings-as-errors] +2026-04-08T19:22:41.912491Z 01O 692 | return format_waf_result(actions, events, event); +2026-04-08T19:22:41.912496Z 01O |  ^~~~~~ +2026-04-08T19:22:41.912499Z 01O  |  return; +2026-04-08T19:22:41.912503Z 01O 45681 warnings generated. +2026-04-08T19:22:41.912510Z 01O Suppressed 45708 warnings (45679 in non-user code, 29 NOLINT). +2026-04-08T19:22:41.912513Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. +2026-04-08T19:22:41.912517Z 01O 2 warnings treated as errors +2026-04-08T19:22:41.912521Z 01O +2026-04-08T19:22:41.912526Z 01O [56/56][76.8s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/client.cpp +2026-04-08T19:22:41.912531Z 01O 48189 warnings generated. +2026-04-08T19:22:41.912536Z 01O Suppressed 48214 warnings (48189 in non-user code, 25 NOLINT). +2026-04-08T19:22:41.912539Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. +2026-04-08T19:22:41.912543Z 01O +2026-04-08T19:22:41.912551Z 01O make[3]: *** [CMakeFiles/tidy.dir/build.make:70: CMakeFiles/tidy] Error 1 +2026-04-08T19:22:41.912556Z 01O make[2]: *** [CMakeFiles/Makefile2:488: CMakeFiles/tidy.dir/all] Error 2 +2026-04-08T19:22:41.912559Z 01O make[1]: *** [CMakeFiles/Makefile2:495: CMakeFiles/tidy.dir/rule] Error 2 +2026-04-08T19:22:41.912575Z 01O make: *** [Makefile:294: tidy] Error 2 +2026-04-08T19:22:41.912578Z 01O +2026-04-08T19:22:41.912626Z 00O section_end:1775676161:step_script +2026-04-08T19:22:41.912628Z 00O+section_start:1775676161:cleanup_file_variables[collapsed=true] +2026-04-08T19:22:41.914280Z 00O+Cleaning up project directory and file based variables +2026-04-08T19:22:42.412873Z 01O +2026-04-08T19:22:42.412910Z 00O section_end:1775676162:cleanup_file_variables +2026-04-08T19:22:42.412911Z 00O+ +2026-04-08T19:22:42.632160Z 00O ERROR: Job failed: command terminated with exit code 1 +2026-04-08T19:22:42.632165Z 00O  diff --git a/patch.diff b/patch.diff new file mode 100644 index 00000000000..3980840976d --- /dev/null +++ b/patch.diff @@ -0,0 +1,14 @@ +diff --git a/zend_abstract_interface/config/config_ini.c b/zend_abstract_interface/config/config_ini.c +index 888271399..5bb68f1f9 100644 +--- a/zend_abstract_interface/config/config_ini.c ++++ b/zend_abstract_interface/config/config_ini.c +@@ -401,7 +401,8 @@ void zai_config_ini_rinit(void) { + *ini = zend_hash_find_ptr(EG(ini_directives), source->name); + if (ini->modified) { + if (ini->orig_value == ini->value) { +- ini->value = source->value; ++ // Keep owned refs for both fields; failure cleanup releases ini->value. ++ ini->value = zend_string_copy(source->value); + } + zend_string_release(ini->orig_value); + ini->orig_value = zend_string_copy(source->value); diff --git a/plans/opcache.md b/plans/opcache.md new file mode 100644 index 00000000000..f60d0b6e4d6 --- /dev/null +++ b/plans/opcache.md @@ -0,0 +1,252 @@ +# OPcache: Research Notes for Profiling Extension + +Source code for PHP versions can be found at, you are free to read things there: + +/usr/local/src/php/7.1 +/usr/local/src/php/7.2 +/usr/local/src/php/7.3 +/usr/local/src/php/7.4 +/usr/local/src/php/8.0 +/usr/local/src/php/8.1 +/usr/local/src/php/8.2 +/usr/local/src/php/8.3 +/usr/local/src/php/8.4 +/usr/local/src/php/8.5 + +## INI Defaults + +`opcache.file_cache` defaults to `NULL` (disabled) across all PHP versions 7.1–8.5. +File cache is an opt-in feature; the vast majority of deployments use SHM only. + +| INI | Default | Notes | +|--------------------------------------|---------|-----------------------------------------| +| `opcache.file_cache` | NULL | Path string; NULL = disabled | +| `opcache.file_cache_only` | 0 | 1 = no SHM at all | +| `opcache.file_cache_fallback` | 1 | Fall back to file cache on SHM failure | +| `opcache.file_cache_consistency_checks` | 1 | Checksum validation on load | +| `opcache.file_cache_read_only` | 0 | 8.5+ only; skip write-permission check | + +## Operating Modes + +**SHM only (default):** `opcache.file_cache = NULL`. Scripts compiled on first use, +persisted to SHM. `op_array_persist` hooks called. No file cache involvement. + +**SHM + file cache (hybrid):** `opcache.file_cache = `, `opcache.file_cache_only = 0`. +SHM is primary. On SHM miss, OPcache checks file cache before compiling. If the script +is found in file cache it's loaded into SHM (`memcpy`). Persist hooks are NOT called for +the file-cache-to-SHM path. + +**file_cache_only:** `opcache.file_cache = `, `opcache.file_cache_only = 1`. +No SHM. Scripts loaded from file cache into per-process memory. Persist hooks are +never called (they are only called from `cache_script_in_shared_memory`, which is +never reached in this mode). + +## When `op_array_persist` Is and Isn't Called + +`op_array_persist` (and `op_array_persist_calc`) on `zend_extension` are invoked via +`zend_extensions_op_array_persist*()` during OPcache's persistence pass +(`zend_accel_script_persist*()` / `zend_persist_op_array()`). That pass is used when +OPcache persists a newly compiled script into SHM, when it serializes a newly compiled +script into the file cache, and during preload. It is not used when OPcache later loads +an already-cached script back from the file cache. + +| Path | Persist hooks called? | +|-----------------------------------------|-----------------------| +| Fresh compilation → SHM | Yes | +| Fresh compilation → file cache | Yes | +| File cache → SHM (`zend_file_cache_script_load`) | No | +| File cache → process memory (`file_cache_only`, SHM full fallback, etc.) | No | +| Internal functions (never compiled) | Never | + +## File Cache Serialization / Unserialization + +`zend_file_cache_script_store()` writes a serialized `zend_persistent_script` to disk +using the current persisted op_array state. For this profiler's current design, the +`reserved[]` slot contains a raw `FunctionIndex` written by `op_array_persist`. + +`zend_file_cache_script_load()` reads the file and either: +- Copies the serialized blob into OPcache SHM via `zend_shared_alloc_aligned` + `memcpy`, + then unserializes it there (`cache_it = true`), or +- Uses the CG(arena) process-memory buffer directly, then unserializes it there + (`use_process_mem`, `cache_it = false`). + +During that unserialization path, no persist hooks fire. In the refreshed local PHP +7.1–8.5 trees, I did not find any special `reserved[]` handling in +`ext/opcache/zend_file_cache.c`, so for this profiler's current raw-`FunctionIndex` +slot the working assumption is that the cached value is carried forward into the live +op_array on file-cache load. + +## The Stale `reserved[]` Bug + +Our profiling extension writes a `FunctionIndex` (index into profiling SHM) into +`op_array->reserved[slot]` from the `op_array_persist` hook. After a PHP restart: + +1. Profiling SHM is recreated fresh (MAP_ANONYMOUS, not persistent). +2. OPcache SHM is also fresh. +3. A request loads `foo.php` from file cache → serialized blob is copied into new + OPcache SHM and then unserialized there. +4. `reserved[slot]` contains `FunctionIndex(42)` from the old profiling SHM. +5. New profiling SHM: index 42 may be a completely different function (e.g., a built-in + that `intern_all_functions` assigned index 42 to). +6. Stack walk reads `FunctionIndex(42)` → wrong function name in profiles. + +This is a correctness bug (wrong names), not just a missing-names issue. + +**When OPcache SHM restarts but PHP process does not** (OOM/hash overflow/`opcache_reset`): +the profiling SHM (MAP_ANONYMOUS inherited via fork) is NOT recreated. The stale +`reserved[]` values from the file cache still reference the same profiling SHM, so +they remain valid. The bug only manifests on PHP process restart with warm file cache. + +## `ZEND_ACC_IMMUTABLE` Flag + +Present in **PHP 7.3+**. Absent in 7.1–7.2. Its exact bit layout and surrounding +semantics changed significantly at 7.4; see per-version notes below. + +Set on functions and classes during `zend_persist_op_array()` (SHM persistence path). +The flag is baked into the file cache when the op_array is serialized to disk. + +### PHP 7.3 semantics (different from 7.4+) + +In PHP 7.3 the flag lives at bit 25 (`1 << 25` in `Zend/zend_compile.h`), versus bit 7 +in 7.4+. More importantly, the *runtime* behavior is different: `init_func_run_time_cache_i` +in `Zend/zend_execute.c` detects the flag, **copies the op_array into the per-process arena**, +and then **clears** the flag on the copy. By the time any user-mode code runs, the op_array +is already in per-process memory with the flag cleared. The flag therefore cannot be used as +a "this is in SHM" test in PHP 7.3. + +In PHP 7.4 this copy was eliminated via `ZEND_MAP_PTR` indirection, which is why immutable +op_arrays can stay in SHM from 7.4 onward. + +### Behavior when loading from file cache: + +**PHP 7.4 / 8.0:** `zend_file_cache_unserialize_op_array` mostly follows the serialized +`fn_flags` value rather than explicitly re-deriving `ZEND_ACC_IMMUTABLE` from +SHM-vs-process-memory placement. In `file_cache_only` mode the flag can therefore be +set even though the op_array is in process memory, so it is not a reliable +"this is in SHM" test in those versions. + +**PHP 8.1–8.5:** `zend_file_cache_unserialize_op_array` explicitly manages the flag for +non-main op_arrays based on whether the script was restored into SHM or process memory: +```c +if (!script->corrupted) { // in SHM + op_array->fn_flags |= ZEND_ACC_IMMUTABLE; +} else { // in process memory + op_array->fn_flags &= ~ZEND_ACC_IMMUTABLE; +} +``` +Important exception: `main_op_array` is special-cased and is **not** simply forced to +immutable on the SHM path, so this is only a reliable test for non-main op_arrays. + +### Implications for writing to `reserved[]` + +For a non-main op_array without `ZEND_ACC_IMMUTABLE` (on 8.1+), the op_array is in +per-process, per-request memory. Writing to its `reserved[]` is race-free (no other +workers see it). However: +- There is no `zend_extension` hook that fires when an op_array is loaded from file cache. + `op_array_handler` is compilation-only. +- Any write to a process-memory op_array evaporates at request end; the next request + gets a fresh copy from the file cache with the original stale value. +- Writing in the stack-walk signal handler requires acquiring the profiling SHM spinlock, + which is undesirable. + +The per-request limitation is a known tradeoff. Prior to the `reserved[]` + SHM approach +the profiler used the run-time cache (also per-request) and this was still considered +valuable — so a per-request fallback path for file-cache mode is viable in principle. + +## `opcache.file_cache` INI Validation History + +PHP 7.1–8.4: `OnUpdateFileCache` validates the path at INI registration time: +- Must be absolute (`IS_ABSOLUTE_PATH`) +- Must exist and be a directory (`zend_stat` + `S_ISDIR`) +- Must be accessible: `access(path, R_OK|W_OK|X_OK)` +- **Failure is silent**: value is set to NULL (file cache effectively disabled). + +PHP 8.5: validation removed from `OnUpdateFileCache`. Validation moved to +`accel_post_startup` instead: +- Same `IS_ABSOLUTE_PATH` + `zend_stat` + `S_ISDIR` checks, with the `access` mode + depending on `opcache.file_cache_read_only`. +- **Failure is fatal**: `ACCEL_LOG_FATAL` + `accel_startup_ok = false`. + +Because 8.5 failures are fatal, if PHP is running and we reach our startup hook, +any non-empty `opcache.file_cache` value has already passed validation (or PHP died). + +## Detecting File Cache at Startup (`cfg_get_string`) + +`cfg_get_string` reads from `configuration_hash`, populated when php.ini is parsed, +before normal module startup/MINIT runs. It returns the configured string regardless +of OPcache's load order. The signature changes from `int` (7.1–8.4) to `zend_result` +(8.5), but both use the same `SUCCESS` / `FAILURE` convention. + +To replicate OPcache's 7.1–8.4 validation and avoid false positives: + +```c +bool ddog_php_prof_opcache_file_cache_enabled(void) { + char *file_cache = NULL; + if (cfg_get_string("opcache.file_cache", &file_cache) != SUCCESS + || file_cache == NULL || *file_cache == '\0') { + return false; + } + if (!IS_ABSOLUTE_PATH(file_cache, strlen(file_cache))) { + return false; + } + zend_stat_t buf = {0}; + if (zend_stat(file_cache, &buf) != 0 || !S_ISDIR(buf.st_mode)) { + return false; + } +#ifndef ZEND_WIN32 + if (access(file_cache, R_OK | X_OK) != 0) { + return false; + } +#else + if (_access(file_cache, 05) != 0) { + return false; + } +#endif + return true; +} +``` + +Using `R_OK|X_OK` (not `R_OK|W_OK|X_OK`) intentionally matches the PHP 8.5 +`opcache.file_cache_read_only=1` behavior and correctly includes read-only cache +directories on that version. On 7.1–8.4, and on 8.5 when +`opcache.file_cache_read_only=0`, this may yield a minor false positive for +read-only cache dirs that OPcache would reject, but those are uncommon and the +consequence is only an unnecessary warning. + +## Runtime Write Policy for `reserved[]` + +Assumptions for the table below: + +- Only user `zend_op_array`s are in scope. +- Trampolines / synthetic reused engine frames are excluded. +- If file cache is enabled in any form, we never write `zend_op_array.reserved`. +- Our persist hook writes a non-zero `FunctionIndex` into the reserved slot for + SHM-persisted op_arrays. + +Under those assumptions, the practical policy is: + +| PHP versions | OPcache state | Safe to write when `reserved[slot] == 0 && !(fn_flags & ZEND_ACC_IMMUTABLE)`? | Why | +|--------------|---------------|---------------------------------------------------------------------------------|-----| +| 7.1–7.4, 8.0 | OPcache disabled | Yes | No OPcache SHM-backed op_arrays to worry about. The write is local. | +| 7.1–7.4, 8.0 | OPcache enabled, file cache disabled | No | `!ZEND_ACC_IMMUTABLE` is not a reliable "not in SHM" test in this band, and in 7.1/7.2 the flag is not even available. | +| 7.1–7.4, 8.0 | File cache enabled in any form | No | By policy, skip writes entirely and avoid stale file-cache replay issues. | +| 8.1–8.5 | OPcache disabled | Yes | No OPcache SHM-backed op_arrays to worry about. The write is local. | +| 8.1–8.5 | OPcache enabled, file cache disabled | Yes, under the assumptions above | SHM-persisted op_arrays should already have a non-zero slot from the persist hook, so `reserved == 0 && !IMMUTABLE` is a workable signal for a local/non-SHM case. | +| 8.1–8.5 | File cache enabled in any form | No | By policy, skip writes entirely and avoid stale file-cache replay issues. | + +Brief context behind the split: + +- `ext/opcache/zend_persist.c::zend_persist_op_array_ex()` is where OPcache calls + `zend_extensions_op_array_persist()`, so freshly SHM-persisted op_arrays do go + through the zend-extension persist hook. +- `ext/opcache/zend_file_cache.c::zend_file_cache_script_load()` restores cached + scripts from file cache without rerunning the persist hook, which is why file cache + must be treated as a separate unsafe case. +- `ext/opcache/zend_accelerator_util_funcs.c::zend_accel_load_script()` allocates a + fresh `main_op_array` copy for execution, so the executing main op_array is local. +- `ext/opcache/zend_persist.c::zend_persist_class_method()` can place class-method + op_arrays into OPcache SHM even when `ZEND_ACC_IMMUTABLE` is not set, which is why + `!ZEND_ACC_IMMUTABLE` by itself is not a safe test in 7.4/8.0 and earlier versions. +- In PHP 8.1+, `ext/opcache/zend_file_cache.c::zend_file_cache_unserialize_op_array()` + explicitly manages `ZEND_ACC_IMMUTABLE` based on SHM-vs-process-memory restore, but + the table above still assumes file cache is entirely opted out. diff --git a/raw.txt b/raw.txt new file mode 100644 index 00000000000..6cd1cc17242 --- /dev/null +++ b/raw.txt @@ -0,0 +1,1898 @@ +2026-04-08T22:02:40.176970Z 00O Running with gitlab-runner 17.9.3-544784f7 (544784f7) +2026-04-08T22:02:40.177040Z 00O  on gitlab-runner-amd64-shared-7b49977ffd-2wljp _xbvGsbV_, system ID: r_2L6KuvnuwoWh +2026-04-08T22:02:40.177110Z 00O  feature flags: FF_RETRIEVE_POD_WARNING_EVENTS:false +2026-04-08T22:02:40.177350Z 00O section_start:1775685760:prepare_executor[collapsed=true] +2026-04-08T22:02:40.177360Z 00O+Preparing the "kubernetes" executor +2026-04-08T22:02:40.177810Z 00O "CPURequest" overwritten with "12" +2026-04-08T22:02:40.178120Z 00O "ServiceMemoryLimit" overwritten with "512Mi" +2026-04-08T22:02:40.178160Z 00O "ServiceCPURequest" overwritten with "1" +2026-04-08T22:02:40.178190Z 00O "ServiceMemoryRequest" overwritten with "512Mi" +2026-04-08T22:02:40.178460Z 00O Using Kubernetes namespace: gitlab-runner +2026-04-08T22:02:40.182470Z 00O Using Kubernetes cluster domain: mudkip-f.us1.ddbuild.io +2026-04-08T22:02:40.182540Z 00O Using Kubernetes executor with image registry.ddbuild.io/images/mirror/datadog/dd-trace-ci:php-8.0_bookworm-7 ... +2026-04-08T22:02:40.182570Z 00O Using attach strategy to execute scripts... +2026-04-08T22:02:40.124234Z 00O section_end:1775685760:prepare_executor +2026-04-08T22:02:40.124241Z 00O+section_start:1775685760:prepare_script[collapsed=true] +2026-04-08T22:02:40.131807Z 00O+Preparing environment +2026-04-08T22:02:40.134306Z 00O Using FF_USE_POD_ACTIVE_DEADLINE_SECONDS, the Pod activeDeadlineSeconds will be set to the job timeout: 1h0m0s... +2026-04-08T22:02:40.141856Z 00O Using service account: dd-trace-php +2026-04-08T22:02:40.970221Z 00E Waiting for pod gitlab-runner/runner-xbvgsbv-project-355-concurrent-3-uvsaicnm to be running, status is Pending +2026-04-08T22:02:43.985194Z 00E Waiting for pod gitlab-runner/runner-xbvgsbv-project-355-concurrent-3-uvsaicnm to be running, status is Pending +2026-04-08T22:02:43.985203Z 00E ContainersNotInitialized: "containers with incomplete status: [emissary init-permissions]" +2026-04-08T22:02:43.985207Z 00E ContainersNotReady: "containers with unready status: [emissary build helper httpbin-integration request-replayer test-agent]" +2026-04-08T22:02:43.985211Z 00E ContainersNotReady: "containers with unready status: [emissary build helper httpbin-integration request-replayer test-agent]" +2026-04-08T22:02:48.263758Z 01O Running on runner-xbvgsbv-project-355-concurrent-3-uvsaicnm via gitlab-runner-amd64-shared-7b49977ffd-2wljp... +2026-04-08T22:02:48.263767Z 01O +2026-04-08T22:02:48.263797Z 00O section_end:1775685768:prepare_script +2026-04-08T22:02:48.263799Z 00O+section_start:1775685768:get_sources[collapsed=true] +2026-04-08T22:02:48.264650Z 00O+Getting source from Git repository +2026-04-08T22:02:48.764435Z 01O $ if [ -n "${VAULT_ADDR:-}" ]; then # collapsed multi-line command +2026-04-08T22:02:48.764446Z 01O section_start:1775685768:git_cache[collapsed=true] Git cache script +2026-04-08T22:02:48.764457Z 01O {"level":"INFO","ts":"2026-04-08T22:02:48.555579+00:00","caller":"git-cache-s3/main.go:23","msg":"Running git-cache-s3 go application"} +2026-04-08T22:02:48.764463Z 01O {"level":"INFO","ts":"2026-04-08T22:02:48.555762+00:00","caller":"git-cache-s3/main.go:24","msg":"Project name dd-trace-php"} +2026-04-08T22:02:48.764472Z 01O {"level":"INFO","ts":"2026-04-08T22:02:48.571107+00:00","caller":"metric/statsd.go:33","msg":"Creating the statsd instance."} +2026-04-08T22:02:48.764483Z 01O {"level":"INFO","ts":"2026-04-08T22:02:48.572833+00:00","caller":"git-cache-s3/main.go:82","msg":"Experiment is disabled for refreshing the repository cache, skipping refresh"} +2026-04-08T22:02:48.764489Z 01O {"level":"INFO","ts":"2026-04-08T22:02:48.574320+00:00","caller":"git/git.go:44","msg":"Retrieving repository from cache"} +2026-04-08T22:02:55.773746Z 01O {"level":"INFO","ts":"2026-04-08T22:02:55.662472+00:00","caller":"metric/statsd.go:39","msg":"Statsd Client already exists."} +2026-04-08T22:02:55.773767Z 01O {"level":"INFO","ts":"2026-04-08T22:02:55.662708+00:00","caller":"git-cache-s3/main.go:40","msg":"Arrive to the end of the script"} +2026-04-08T22:02:55.773778Z 01O section_end:1775685775:git_cache  +2026-04-08T22:02:55.773787Z 01O Fetching changes... +2026-04-08T22:02:55.773791Z 01O Reinitialized existing Git repository in /go/src/github.com/DataDog/apm-reliability/dd-trace-php/.git/ +2026-04-08T22:02:55.773796Z 01O Created fresh repository. +2026-04-08T22:02:55.773802Z 01O gitretriever: create-ref FAILED (pipeline=106784035 repo=DataDog/apm-reliability/dd-trace-php), falling back to GitLab +2026-04-08T22:02:56.273871Z 01O Checking out e340959b as detached HEAD (ref is levi/clang-17-to-19)... +2026-04-08T22:03:01.279548Z 01O +2026-04-08T22:03:01.279583Z 01O Updating/initializing submodules recursively... +2026-04-08T22:03:01.279590Z 01O Submodule 'appsec/third_party/cpp-base64' (https://github.com/ReneNyffenegger/cpp-base64) registered for path 'appsec/third_party/cpp-base64' +2026-04-08T22:03:01.279617Z 01O Submodule 'appsec/third_party/libddwaf' (https://github.com/DataDog/libddwaf.git) registered for path 'appsec/third_party/libddwaf' +2026-04-08T22:03:01.279632Z 01O Submodule 'appsec/third_party/libddwaf-rust' (https://github.com/DataDog/libddwaf-rust.git) registered for path 'appsec/third_party/libddwaf-rust' +2026-04-08T22:03:01.279640Z 01O Submodule 'appsec/third_party/msgpack-c' (https://github.com/msgpack/msgpack-c.git) registered for path 'appsec/third_party/msgpack-c' +2026-04-08T22:03:01.279663Z 01O Submodule 'libdatadog' (https://github.com/DataDog/libdatadog) registered for path 'libdatadog' +2026-04-08T22:03:01.279679Z 01O Submodule 'tea/benchmarks/google-benchmark' (https://github.com/google/benchmark.git) registered for path 'tea/benchmarks/google-benchmark' +2026-04-08T22:03:01.279747Z 01O Synchronizing submodule url for 'libdatadog' +2026-04-08T22:03:01.279755Z 01O Cloning into '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog'... +2026-04-08T22:03:06.786185Z 01O Submodule path 'libdatadog': checked out '11d4111c934d9af49d8124b8266dbbdda5857cb4' +2026-04-08T22:03:06.786198Z 01O Submodule 'libdd-libunwind-sys/libunwind' (https://github.com/DataDog/libunwind.git) registered for path 'libdatadog/libdd-libunwind-sys/libunwind' +2026-04-08T22:03:06.786207Z 01O Cloning into '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-libunwind-sys/libunwind'... +2026-04-08T22:03:07.286751Z 01O Submodule path 'libdatadog/libdd-libunwind-sys/libunwind': checked out 'cc1d07281b9e034c9e088733aeb4b94ffd91db9e' +2026-04-08T22:03:07.286760Z 01O Updated submodules +2026-04-08T22:03:07.286767Z 01O Synchronizing submodule url for 'libdatadog' +2026-04-08T22:03:07.286774Z 01O Synchronizing submodule url for 'libdatadog/libdd-libunwind-sys/libunwind' +2026-04-08T22:03:07.286777Z 01O Entering 'libdatadog' +2026-04-08T22:03:07.286782Z 01O Entering 'libdatadog/libdd-libunwind-sys/libunwind' +2026-04-08T22:03:07.286787Z 01O Entering 'libdatadog' +2026-04-08T22:03:07.787426Z 01O Entering 'libdatadog/libdd-libunwind-sys/libunwind' +2026-04-08T22:03:07.787441Z 01O $ export clone_after=$(date +%s) # collapsed multi-line command +2026-04-08T22:03:07.787446Z 01O Clone elapsed 19 +2026-04-08T22:03:07.787469Z 01O +2026-04-08T22:03:07.787526Z 00O section_end:1775685787:get_sources +2026-04-08T22:03:07.787528Z 00O+section_start:1775685787:download_artifacts[collapsed=true] +2026-04-08T22:03:07.788881Z 00O+Downloading artifacts +2026-04-08T22:03:08.288251Z 01O Downloading artifacts for compile extension: debug-zts-asan: [8.0, amd64] (1579621389)... +2026-04-08T22:03:09.289068Z 01O Downloading artifacts from coordinator... ok  host=gitlab.ddbuild.io id=1579621389 responseStatus=200 OK token=64_mjUGF_ +2026-04-08T22:03:10.790424Z 01O +2026-04-08T22:03:10.790483Z 00O section_end:1775685790:download_artifacts +2026-04-08T22:03:10.790485Z 00O+section_start:1775685790:step_script[collapsed=false] +2026-04-08T22:03:10.791498Z 00O+Executing "step_script" stage of the job script +2026-04-08T22:03:11.291236Z 01O $ export build_before=$(date +%s) # collapsed multi-line command +2026-04-08T22:03:11.291248Z 01O Starting pre-build script +2026-04-08T22:03:11.291257Z 01O Keeping environment unchanged +2026-04-08T22:03:11.291268Z 01O Terminating pre-build script +2026-04-08T22:03:11.291275Z 01O $ if command -v docker > /dev/null 2>&1; then .gitlab/dockerhub-login.sh; fi +2026-04-08T22:03:11.291294Z 01O $ unset DD_SERVICE +2026-04-08T22:03:11.291306Z 01O $ unset DD_ENV +2026-04-08T22:03:11.291311Z 01O $ unset DD_TAGS +2026-04-08T22:03:11.291335Z 01O $ unset DD_TRACE_REMOVE_INTEGRATION_SERVICE_NAMES_ENABLED +2026-04-08T22:03:11.291347Z 01O $ switch-php "${SWITCH_PHP_VERSION}" +2026-04-08T22:03:11.291352Z 01O $ git config --global --add safe.directory "${CI_PROJECT_DIR}" +2026-04-08T22:03:11.291365Z 01O $ git config --global --add safe.directory "${CI_PROJECT_DIR}/*" +2026-04-08T22:03:11.291374Z 01O $ mkdir -p tmp/build_extension/modules artifacts +2026-04-08T22:03:11.291380Z 01O $ mv "modules/${PHP_MAJOR_MINOR}-${SWITCH_PHP_VERSION}-${host_os}-${ARCH}/ddtrace.so" "tmp/build_extension/modules/" +2026-04-08T22:03:11.291392Z 01O $ .gitlab/wait-for-service-ready.sh +2026-04-08T22:03:11.291405Z 01O Waiting for test-agent:9126 to be reachable... +2026-04-08T22:03:11.291410Z 01O Test agent is ready +2026-04-08T22:03:11.291417Z 01O $ mkdir -p "${CI_PROJECT_DIR}/tmp/build_extension/artifacts/tests" +2026-04-08T22:03:11.291420Z 01O $ make test_c_observer +2026-04-08T22:03:16.797050Z 01O Copying tests/ext/DDTrace/ContainsBinaryCharacter.php to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/DDTrace/ContainsBinaryCharacter.php +2026-04-08T22:03:16.797154Z 01O Copying tests/ext/DDTrace/OpenBaseDir.php to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/DDTrace/OpenBaseDir.php +2026-04-08T22:03:16.797163Z 01O Copying tests/ext/DDTrace/RaisesException.php to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/DDTrace/RaisesException.php +2026-04-08T22:03:16.797171Z 01O Copying tests/ext/DDTrace/RaisesFatalError.php to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/DDTrace/RaisesFatalError.php +2026-04-08T22:03:16.797175Z 01O Copying tests/ext/DDTrace/RaisesNotice.php to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/DDTrace/RaisesNotice.php +2026-04-08T22:03:16.797180Z 01O Copying tests/ext/DDTrace/SanityCheck.php to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/DDTrace/SanityCheck.php +2026-04-08T22:03:16.797190Z 01O Copying tests/ext/active_span.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/active_span.phpt +2026-04-08T22:03:16.797196Z 01O Copying tests/ext/add_global_tag_on_userland_and_internal_spans.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/add_global_tag_on_userland_and_internal_spans.phpt +2026-04-08T22:03:17.297649Z 01O Copying tests/ext/alias_logs.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/alias_logs.phpt +2026-04-08T22:03:17.297661Z 01O Copying tests/ext/appsec/sca_flag_is_sent_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/appsec/sca_flag_is_sent_01.phpt +2026-04-08T22:03:17.297670Z 01O Copying tests/ext/appsec/sca_flag_is_sent_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/appsec/sca_flag_is_sent_02.phpt +2026-04-08T22:03:17.297679Z 01O Copying tests/ext/appsec/sca_flag_is_sent_03.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/appsec/sca_flag_is_sent_03.phpt +2026-04-08T22:03:17.297684Z 01O Copying tests/ext/appsec/sca_flag_is_sent_04.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/appsec/sca_flag_is_sent_04.phpt +2026-04-08T22:03:17.297690Z 01O Copying tests/ext/appsec/sca_flag_is_sent_05.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/appsec/sca_flag_is_sent_05.phpt +2026-04-08T22:03:17.297707Z 01O Copying tests/ext/appsec/sca_test.inc to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/appsec/sca_test.inc +2026-04-08T22:03:17.798290Z 01O Copying tests/ext/autoload-php-files/dd_init_open_basedir.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/autoload-php-files/dd_init_open_basedir.phpt +2026-04-08T22:03:17.798301Z 01O Copying tests/ext/autoload-php-files/default_spl_autoloader.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/autoload-php-files/default_spl_autoloader.phpt +2026-04-08T22:03:17.798308Z 01O Copying tests/ext/autoload-php-files/error_get_last_is_unaffected.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/autoload-php-files/error_get_last_is_unaffected.phpt +2026-04-08T22:03:17.798329Z 01O Copying tests/ext/autoload-php-files/file_contains_non_printable_character.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/autoload-php-files/file_contains_non_printable_character.phpt +2026-04-08T22:03:17.798338Z 01O Copying tests/ext/autoload-php-files/file_not_found.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/autoload-php-files/file_not_found.phpt +2026-04-08T22:03:17.798345Z 01O Copying tests/ext/autoload-php-files/ignores_exceptions.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/autoload-php-files/ignores_exceptions.phpt +2026-04-08T22:03:17.798412Z 01O Copying tests/ext/autoload-php-files/ignores_fatal_errors.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/autoload-php-files/ignores_fatal_errors.phpt +2026-04-08T22:03:17.798421Z 01O Copying tests/ext/autoload-php-files/legacy_autoloader.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/autoload-php-files/legacy_autoloader.phpt +2026-04-08T22:03:18.298975Z 01O Copying tests/ext/autoload-php-files/skip_default_autoloader.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/autoload-php-files/skip_default_autoloader.phpt +2026-04-08T22:03:18.298988Z 01O Copying tests/ext/autoload-php-files/skip_registered_autoloader_match.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/autoload-php-files/skip_registered_autoloader_match.phpt +2026-04-08T22:03:18.298995Z 01O Copying tests/ext/autoload-php-files/splautoload.inc to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/autoload-php-files/splautoload.inc +2026-04-08T22:03:18.299004Z 01O Copying tests/ext/background-sender/agent_headers.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/background-sender/agent_headers.phpt +2026-04-08T22:03:18.299009Z 01O Copying tests/ext/background-sender/agent_headers_container_id.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/background-sender/agent_headers_container_id.phpt +2026-04-08T22:03:18.299019Z 01O Copying tests/ext/background-sender/agent_headers_container_id_empty.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/background-sender/agent_headers_container_id_empty.phpt +2026-04-08T22:03:18.299045Z 01O Copying tests/ext/background-sender/agent_headers_container_id_fargate.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/background-sender/agent_headers_container_id_fargate.phpt +2026-04-08T22:03:18.299057Z 01O Copying tests/ext/background-sender/agent_headers_ignore_userland.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/background-sender/agent_headers_ignore_userland.phpt +2026-04-08T22:03:18.799476Z 01O Copying tests/ext/background-sender/agent_headers_unix_domain_socket.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/background-sender/agent_headers_unix_domain_socket.phpt +2026-04-08T22:03:18.799498Z 01O Copying tests/ext/background-sender/agent_sampling-standalone-asm_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/background-sender/agent_sampling-standalone-asm_01.phpt +2026-04-08T22:03:18.799507Z 01O Copying tests/ext/background-sender/agent_sampling-standalone-asm_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/background-sender/agent_sampling-standalone-asm_02.phpt +2026-04-08T22:03:18.799519Z 01O Copying tests/ext/background-sender/agent_sampling-standalone-asm_03.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/background-sender/agent_sampling-standalone-asm_03.phpt +2026-04-08T22:03:18.799526Z 01O Copying tests/ext/background-sender/agent_sampling.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/background-sender/agent_sampling.phpt +2026-04-08T22:03:18.799533Z 01O Copying tests/ext/background-sender/agent_sampling_sidecar.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/background-sender/agent_sampling_sidecar.phpt +2026-04-08T22:03:18.799541Z 01O Copying tests/ext/background-sender/background_sender_ipv6_support.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/background-sender/background_sender_ipv6_support.phpt +2026-04-08T22:03:19.300220Z 01O Copying tests/ext/background-sender/background_sender_restores_capabilities.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/background-sender/background_sender_restores_capabilities.phpt +2026-04-08T22:03:19.300234Z 01O Copying tests/ext/background-sender/background_sender_survives_setuid.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/background-sender/background_sender_survives_setuid.phpt +2026-04-08T22:03:19.300245Z 01O Copying tests/ext/background-sender/default_unix_domain_socket_agent.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/background-sender/default_unix_domain_socket_agent.phpt +2026-04-08T22:03:19.300257Z 01O Copying tests/ext/background-sender/sidecar_fallback.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/background-sender/sidecar_fallback.phpt +2026-04-08T22:03:19.300273Z 01O Copying tests/ext/background-sender/sidecar_handles_invalid_agent_url.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/background-sender/sidecar_handles_invalid_agent_url.phpt +2026-04-08T22:03:19.300281Z 01O Copying tests/ext/background-sender/sidecar_thread_mode_permissions.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/background-sender/sidecar_thread_mode_permissions.phpt +2026-04-08T22:03:19.300292Z 01O Copying tests/ext/bailout_double_hook_clear.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/bailout_double_hook_clear.phpt +2026-04-08T22:03:19.300297Z 01O Copying tests/ext/base_service.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/base_service.phpt +2026-04-08T22:03:19.800452Z 01O Copying tests/ext/bridge/_files_tracer.php to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/bridge/_files_tracer.php +2026-04-08T22:03:19.800462Z 01O Copying tests/ext/call_user_func/namespaced-array.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/call_user_func/namespaced-array.phpt +2026-04-08T22:03:19.800469Z 01O Copying tests/ext/call_user_func/namespaced.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/call_user_func/namespaced.phpt +2026-04-08T22:03:19.800476Z 01O Copying tests/ext/call_user_func/not-namespaced-array.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/call_user_func/not-namespaced-array.phpt +2026-04-08T22:03:19.800481Z 01O Copying tests/ext/call_user_func/not-namespaced.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/call_user_func/not-namespaced.phpt +2026-04-08T22:03:19.800487Z 01O Copying tests/ext/check_memory_under_limit_default.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/check_memory_under_limit_default.phpt +2026-04-08T22:03:19.800495Z 01O Copying tests/ext/check_memory_under_limit_high_limit.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/check_memory_under_limit_high_limit.phpt +2026-04-08T22:03:19.800507Z 01O Copying tests/ext/check_memory_under_limit_high_user_limit.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/check_memory_under_limit_high_user_limit.phpt +2026-04-08T22:03:20.301191Z 01O Copying tests/ext/check_memory_under_limit_low_user_limit.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/check_memory_under_limit_low_user_limit.phpt +2026-04-08T22:03:20.301202Z 01O Copying tests/ext/close_spans_until.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/close_spans_until.phpt +2026-04-08T22:03:20.301248Z 01O Copying tests/ext/crashtracker_and_backtrace_are_mutually_exclusive.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/crashtracker_and_backtrace_are_mutually_exclusive.phpt +2026-04-08T22:03:20.301257Z 01O Copying tests/ext/crashtracker_jit_tags.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/crashtracker_jit_tags.phpt +2026-04-08T22:03:20.301275Z 01O Copying tests/ext/crashtracker_segfault.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/crashtracker_segfault.phpt +2026-04-08T22:03:20.301281Z 01O Copying tests/ext/crashtracker_segfault_disabled.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/crashtracker_segfault_disabled.phpt +2026-04-08T22:03:20.301289Z 01O Copying tests/ext/crashtracker_segfault_windows.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/crashtracker_segfault_windows.phpt +2026-04-08T22:03:20.801897Z 01O Copying tests/ext/dd_trace_coms_empty_stacks_correctly_recycled.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/dd_trace_coms_empty_stacks_correctly_recycled.phpt +2026-04-08T22:03:20.801918Z 01O Copying tests/ext/dd_trace_current_context.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/dd_trace_current_context.phpt +2026-04-08T22:03:20.801925Z 01O Copying tests/ext/dd_trace_current_context_noenv.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/dd_trace_current_context_noenv.phpt +2026-04-08T22:03:20.801954Z 01O Copying tests/ext/dd_trace_log_file.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/dd_trace_log_file.phpt +2026-04-08T22:03:20.801968Z 01O Copying tests/ext/dd_trace_multiple_write.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/dd_trace_multiple_write.phpt +2026-04-08T22:03:20.801977Z 01O Copying tests/ext/dd_trace_send_traces_via_thread_001.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/dd_trace_send_traces_via_thread_001.phpt +2026-04-08T22:03:20.801986Z 01O Copying tests/ext/dd_trace_send_traces_via_thread_002.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/dd_trace_send_traces_via_thread_002.phpt +2026-04-08T22:03:20.801991Z 01O Copying tests/ext/dd_trace_serialize_header_to_meta.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/dd_trace_serialize_header_to_meta.phpt +2026-04-08T22:03:21.302484Z 01O Copying tests/ext/dd_trace_serialize_msgpack.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/dd_trace_serialize_msgpack.phpt +2026-04-08T22:03:21.302496Z 01O Copying tests/ext/dd_trace_serialize_msgpack_error.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/dd_trace_serialize_msgpack_error.phpt +2026-04-08T22:03:21.302506Z 01O Copying tests/ext/dd_trace_serialize_msgpack_id_in_meta.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/dd_trace_serialize_msgpack_id_in_meta.phpt +2026-04-08T22:03:21.302517Z 01O Copying tests/ext/dd_trace_serialize_msgpack_reference.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/dd_trace_serialize_msgpack_reference.phpt +2026-04-08T22:03:21.302531Z 01O Copying tests/ext/dd_trace_span_data_get_link.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/dd_trace_span_data_get_link.phpt +2026-04-08T22:03:21.302543Z 01O Copying tests/ext/dd_trace_span_data_serialization_with_links.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/dd_trace_span_data_serialization_with_links.phpt +2026-04-08T22:03:21.302552Z 01O Copying tests/ext/dd_trace_tracer_is_limited_memory.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/dd_trace_tracer_is_limited_memory.phpt +2026-04-08T22:03:21.302619Z 01O Copying tests/ext/disabling_root_span_generation_at_runtime.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/disabling_root_span_generation_at_runtime.phpt +2026-04-08T22:03:21.803249Z 01O Copying tests/ext/distributed_tracestate_consumption.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracestate_consumption.phpt +2026-04-08T22:03:21.803272Z 01O Copying tests/ext/distributed_tracing/baggage/baggage_span_tags.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/baggage/baggage_span_tags.phpt +2026-04-08T22:03:21.803284Z 01O Copying tests/ext/distributed_tracing/baggage/baggage_span_tags_empty.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/baggage/baggage_span_tags_empty.phpt +2026-04-08T22:03:21.803297Z 01O Copying tests/ext/distributed_tracing/baggage/baggage_span_tags_keys.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/baggage/baggage_span_tags_keys.phpt +2026-04-08T22:03:21.803307Z 01O Copying tests/ext/distributed_tracing/baggage/baggage_span_tags_wildcard.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/baggage/baggage_span_tags_wildcard.phpt +2026-04-08T22:03:21.803318Z 01O Copying tests/ext/distributed_tracing/baggage/distributed_trace_baggage_alone.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/baggage/distributed_trace_baggage_alone.phpt +2026-04-08T22:03:21.803331Z 01O Copying tests/ext/distributed_tracing/baggage/distributed_trace_baggage_configured_bytes.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/baggage/distributed_trace_baggage_configured_bytes.phpt +2026-04-08T22:03:21.803347Z 01O Copying tests/ext/distributed_tracing/baggage/distributed_trace_baggage_configured_items.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/baggage/distributed_trace_baggage_configured_items.phpt +2026-04-08T22:03:22.303976Z 01O Copying tests/ext/distributed_tracing/baggage/distributed_trace_baggage_context_propagated.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/baggage/distributed_trace_baggage_context_propagated.phpt +2026-04-08T22:03:22.303995Z 01O Copying tests/ext/distributed_tracing/baggage/distributed_trace_baggage_decoding_encoding.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/baggage/distributed_trace_baggage_decoding_encoding.phpt +2026-04-08T22:03:22.304008Z 01O Copying tests/ext/distributed_tracing/baggage/distributed_trace_baggage_default.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/baggage/distributed_trace_baggage_default.phpt +2026-04-08T22:03:22.304030Z 01O Copying tests/ext/distributed_tracing/baggage/distributed_trace_baggage_first.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/baggage/distributed_trace_baggage_first.phpt +2026-04-08T22:03:22.304042Z 01O Copying tests/ext/distributed_tracing/distributed_trace_asm_standalone_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_asm_standalone_01.phpt +2026-04-08T22:03:22.304049Z 01O Copying tests/ext/distributed_tracing/distributed_trace_asm_standalone_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_asm_standalone_02.phpt +2026-04-08T22:03:22.304106Z 01O Copying tests/ext/distributed_tracing/distributed_trace_asm_standalone_03.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_asm_standalone_03.phpt +2026-04-08T22:03:22.804661Z 01O Copying tests/ext/distributed_tracing/distributed_trace_asm_standalone_04.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_asm_standalone_04.phpt +2026-04-08T22:03:22.804674Z 01O Copying tests/ext/distributed_tracing/distributed_trace_asm_standalone_05.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_asm_standalone_05.phpt +2026-04-08T22:03:22.804681Z 01O Copying tests/ext/distributed_tracing/distributed_trace_asm_standalone_06.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_asm_standalone_06.phpt +2026-04-08T22:03:22.804691Z 01O Copying tests/ext/distributed_tracing/distributed_trace_asm_standalone_07.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_asm_standalone_07.phpt +2026-04-08T22:03:22.804704Z 01O Copying tests/ext/distributed_tracing/distributed_trace_asm_standalone_08.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_asm_standalone_08.phpt +2026-04-08T22:03:22.804711Z 01O Copying tests/ext/distributed_tracing/distributed_trace_asm_standalone_09.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_asm_standalone_09.phpt +2026-04-08T22:03:22.804722Z 01O Copying tests/ext/distributed_tracing/distributed_trace_bogus_ids.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_bogus_ids.phpt +2026-04-08T22:03:22.804729Z 01O Copying tests/ext/distributed_tracing/distributed_trace_conflicting_span_ids_dd_tracecontext.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_conflicting_span_ids_dd_tracecontext.phpt +2026-04-08T22:03:23.305255Z 01O Copying tests/ext/distributed_tracing/distributed_trace_conflicting_span_ids_tracecontext.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_conflicting_span_ids_tracecontext.phpt +2026-04-08T22:03:23.305277Z 01O Copying tests/ext/distributed_tracing/distributed_trace_consume_array.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_consume_array.phpt +2026-04-08T22:03:23.305285Z 01O Copying tests/ext/distributed_tracing/distributed_trace_consume_func.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_consume_func.phpt +2026-04-08T22:03:23.305295Z 01O Copying tests/ext/distributed_tracing/distributed_trace_generate.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_generate.phpt +2026-04-08T22:03:23.305310Z 01O Copying tests/ext/distributed_tracing/distributed_trace_inherit.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_inherit.phpt +2026-04-08T22:03:23.305318Z 01O Copying tests/ext/distributed_tracing/distributed_trace_inherit_b3-single-span.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_inherit_b3-single-span.phpt +2026-04-08T22:03:23.305328Z 01O Copying tests/ext/distributed_tracing/distributed_trace_inherit_b3-single-span_no_sampling.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_inherit_b3-single-span_no_sampling.phpt +2026-04-08T22:03:23.305382Z 01O Copying tests/ext/distributed_tracing/distributed_trace_inherit_b3.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_inherit_b3.phpt +2026-04-08T22:03:23.305389Z 01O Copying tests/ext/distributed_tracing/distributed_trace_overwrite.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_overwrite.phpt +2026-04-08T22:03:23.805936Z 01O Copying tests/ext/distributed_tracing/distributed_trace_overwrite_active_span.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_overwrite_active_span.phpt +2026-04-08T22:03:23.805949Z 01O Copying tests/ext/distributed_tracing/distributed_trace_reset_context_on_init.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_reset_context_on_init.phpt +2026-04-08T22:03:23.805960Z 01O Copying tests/ext/distributed_tracing/distributed_trace_span_link_from_headers.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_span_link_from_headers.phpt +2026-04-08T22:03:23.805970Z 01O Copying tests/ext/distributed_tracing/distributed_trace_span_link_from_headers_invalid_tags.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_span_link_from_headers_invalid_tags.phpt +2026-04-08T22:03:23.805980Z 01O Copying tests/ext/do_not_check_if_class_or_function_exists_by_default.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/do_not_check_if_class_or_function_exists_by_default.phpt +2026-04-08T22:03:23.805988Z 01O Copying tests/ext/dogstatsd/disabled_if_agentless.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/dogstatsd/disabled_if_agentless.phpt +2026-04-08T22:03:23.805998Z 01O Copying tests/ext/dogstatsd/metrics_over_udp.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/dogstatsd/metrics_over_udp.phpt +2026-04-08T22:03:23.806003Z 01O Copying tests/ext/dogstatsd/metrics_over_udp_unreachable.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/dogstatsd/metrics_over_udp_unreachable.phpt +2026-04-08T22:03:24.306620Z 01O Copying tests/ext/dogstatsd/metrics_over_uds.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/dogstatsd/metrics_over_uds.phpt +2026-04-08T22:03:24.306655Z 01O Copying tests/ext/dogstatsd/metrics_over_uds_unreachable.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/dogstatsd/metrics_over_uds_unreachable.phpt +2026-04-08T22:03:24.306662Z 01O Copying tests/ext/dogstatsd/metrics_uds.inc to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/dogstatsd/metrics_uds.inc +2026-04-08T22:03:24.306673Z 01O Copying tests/ext/dropped_spans_have_negative_duration.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/dropped_spans_have_negative_duration.phpt +2026-04-08T22:03:24.306679Z 01O Copying tests/ext/error_status_configuration/http_error_status_client_configuration.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/error_status_configuration/http_error_status_client_configuration.phpt +2026-04-08T22:03:24.306687Z 01O Copying tests/ext/error_status_configuration/http_error_status_parsing.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/error_status_configuration/http_error_status_parsing.phpt +2026-04-08T22:03:24.306695Z 01O Copying tests/ext/extension_disabled.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/extension_disabled.phpt +2026-04-08T22:03:24.306754Z 01O Copying tests/ext/extension_no_static_tls.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/extension_no_static_tls.phpt +2026-04-08T22:03:24.807418Z 01O Copying tests/ext/extract_ip_addr.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/extract_ip_addr.phpt +2026-04-08T22:03:24.807430Z 01O Copying tests/ext/extract_ip_addr_header_env.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/extract_ip_addr_header_env.phpt +2026-04-08T22:03:24.807437Z 01O Copying tests/ext/extract_ip_addr_header_ini.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/extract_ip_addr_header_ini.phpt +2026-04-08T22:03:24.807445Z 01O Copying tests/ext/extract_ip_addr_precedence.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/extract_ip_addr_precedence.phpt +2026-04-08T22:03:24.807450Z 01O Copying tests/ext/extract_ip_private_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/extract_ip_private_01.phpt +2026-04-08T22:03:24.807455Z 01O Copying tests/ext/extract_server_values.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/extract_server_values.phpt +2026-04-08T22:03:24.807462Z 01O Copying tests/ext/fibers/enable_tracer_in_fiber.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/fibers/enable_tracer_in_fiber.phpt +2026-04-08T22:03:25.308096Z 01O Copying tests/ext/fibers/fiber_observer_bailout.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/fibers/fiber_observer_bailout.phpt +2026-04-08T22:03:25.308114Z 01O Copying tests/ext/fibers/fiber_stack_switch.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/fibers/fiber_stack_switch.phpt +2026-04-08T22:03:25.308121Z 01O Copying tests/ext/fibers/fiber_switch_tracer_disabled.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/fibers/fiber_switch_tracer_disabled.phpt +2026-04-08T22:03:25.308145Z 01O Copying tests/ext/flush-autofinish.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/flush-autofinish.phpt +2026-04-08T22:03:25.308160Z 01O Copying tests/ext/force_flush_traces.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/force_flush_traces.phpt +2026-04-08T22:03:25.308169Z 01O Copying tests/ext/from_php_7_3_bug61728.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/from_php_7_3_bug61728.phpt +2026-04-08T22:03:25.308193Z 01O Copying tests/ext/from_php_7_3_test_user_streams_consumed_bug.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/from_php_7_3_test_user_streams_consumed_bug.phpt +2026-04-08T22:03:25.308206Z 01O Copying tests/ext/generate_128_bit_trace_id.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/generate_128_bit_trace_id.phpt +2026-04-08T22:03:25.808676Z 01O Copying tests/ext/get_memory_limit_0_percent.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/get_memory_limit_0_percent.phpt +2026-04-08T22:03:25.808696Z 01O Copying tests/ext/get_memory_limit_default.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/get_memory_limit_default.phpt +2026-04-08T22:03:25.808717Z 01O Copying tests/ext/get_memory_limit_set_by_absolute.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/get_memory_limit_set_by_absolute.phpt +2026-04-08T22:03:25.808746Z 01O Copying tests/ext/get_memory_limit_set_by_percentage.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/get_memory_limit_set_by_percentage.phpt +2026-04-08T22:03:25.808811Z 01O Copying tests/ext/get_memory_limit_unlimited_default.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/get_memory_limit_unlimited_default.phpt +2026-04-08T22:03:25.808822Z 01O Copying tests/ext/get_memory_limit_unlimited_set_by_absolute.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/get_memory_limit_unlimited_set_by_absolute.phpt +2026-04-08T22:03:25.808848Z 01O Copying tests/ext/get_memory_limit_unlimited_set_by_percentage.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/get_memory_limit_unlimited_set_by_percentage.phpt +2026-04-08T22:03:25.808854Z 01O Copying tests/ext/http_endpoint_resource_renaming_always_simplified.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/http_endpoint_resource_renaming_always_simplified.phpt +2026-04-08T22:03:26.309386Z 01O Copying tests/ext/http_endpoint_resource_renaming_basic.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/http_endpoint_resource_renaming_basic.phpt +2026-04-08T22:03:26.309402Z 01O Copying tests/ext/includes/clear_skipif_telemetry.inc to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/includes/clear_skipif_telemetry.inc +2026-04-08T22:03:26.309412Z 01O Copying tests/ext/includes/dummy_filesystem_integration.inc to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/includes/dummy_filesystem_integration.inc +2026-04-08T22:03:26.309438Z 01O Copying tests/ext/includes/fake_global_tracer.inc to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/includes/fake_global_tracer.inc +2026-04-08T22:03:26.309453Z 01O Copying tests/ext/includes/fake_scope.inc to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/includes/fake_scope.inc +2026-04-08T22:03:26.309462Z 01O Copying tests/ext/includes/fake_span.inc to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/includes/fake_span.inc +2026-04-08T22:03:26.309483Z 01O Copying tests/ext/includes/fake_tracer.inc to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/includes/fake_tracer.inc +2026-04-08T22:03:26.309491Z 01O Copying tests/ext/includes/fake_tracer_exception.inc to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/includes/fake_tracer_exception.inc +2026-04-08T22:03:26.810117Z 01O Copying tests/ext/includes/git_functions.inc to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/includes/git_functions.inc +2026-04-08T22:03:26.810129Z 01O Copying tests/ext/includes/intermediary_call.inc to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/includes/intermediary_call.inc +2026-04-08T22:03:26.810136Z 01O Copying tests/ext/includes/request_init_hook.inc to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/includes/request_init_hook.inc +2026-04-08T22:03:26.810145Z 01O Copying tests/ext/includes/request_replayer.inc to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/includes/request_replayer.inc +2026-04-08T22:03:26.810150Z 01O Copying tests/ext/includes/sanity_check.php to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/includes/sanity_check.php +2026-04-08T22:03:26.810156Z 01O Copying tests/ext/includes/skipif_no_dev_env.inc to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/includes/skipif_no_dev_env.inc +2026-04-08T22:03:26.810174Z 01O Copying tests/ext/inferred_proxy/alter_service.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/inferred_proxy/alter_service.phpt +2026-04-08T22:03:26.810185Z 01O Copying tests/ext/inferred_proxy/basic_test.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/inferred_proxy/basic_test.phpt +2026-04-08T22:03:27.310616Z 01O Copying tests/ext/inferred_proxy/consume_distributed_tracing_headers.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/inferred_proxy/consume_distributed_tracing_headers.phpt +2026-04-08T22:03:27.310636Z 01O Copying tests/ext/inferred_proxy/distributed_tracing.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/inferred_proxy/distributed_tracing.phpt +2026-04-08T22:03:27.310643Z 01O Copying tests/ext/inferred_proxy/error_propagated.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/inferred_proxy/error_propagated.phpt +2026-04-08T22:03:27.310653Z 01O Copying tests/ext/inferred_proxy/fallback_service_name.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/inferred_proxy/fallback_service_name.phpt +2026-04-08T22:03:27.310658Z 01O Copying tests/ext/inferred_proxy/incomplete_headers.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/inferred_proxy/incomplete_headers.phpt +2026-04-08T22:03:27.310664Z 01O Copying tests/ext/inferred_proxy/multiple_traces.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/inferred_proxy/multiple_traces.phpt +2026-04-08T22:03:27.310673Z 01O Copying tests/ext/inferred_proxy/propagated_tags_after_span_start.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/inferred_proxy/propagated_tags_after_span_start.phpt +2026-04-08T22:03:27.310680Z 01O Copying tests/ext/inferred_proxy/propagated_tags_before_span_start.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/inferred_proxy/propagated_tags_before_span_start.phpt +2026-04-08T22:03:27.811281Z 01O Copying tests/ext/inferred_proxy/sampling_rules.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/inferred_proxy/sampling_rules.phpt +2026-04-08T22:03:27.811294Z 01O Copying tests/ext/inherit_meta_from_parent.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/inherit_meta_from_parent.phpt +2026-04-08T22:03:27.811300Z 01O Copying tests/ext/integrations/curl/curl_helper.inc to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/curl/curl_helper.inc +2026-04-08T22:03:27.811310Z 01O Copying tests/ext/integrations/curl/curl_release_on_shutdown.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/curl/curl_release_on_shutdown.phpt +2026-04-08T22:03:27.811319Z 01O Copying tests/ext/integrations/curl/distributed_tracing.inc to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/curl/distributed_tracing.inc +2026-04-08T22:03:27.811328Z 01O Copying tests/ext/integrations/curl/distributed_tracing_curl.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl.phpt +2026-04-08T22:03:27.811338Z 01O Copying tests/ext/integrations/curl/distributed_tracing_curl_copy_handle.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_copy_handle.phpt +2026-04-08T22:03:27.811347Z 01O Copying tests/ext/integrations/curl/distributed_tracing_curl_disabled_baggage.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_disabled_baggage.phpt +2026-04-08T22:03:28.312046Z 01O Copying tests/ext/integrations/curl/distributed_tracing_curl_drop_dm.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_drop_dm.phpt +2026-04-08T22:03:28.312059Z 01O Copying tests/ext/integrations/curl/distributed_tracing_curl_existing_headers_001.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_existing_headers_001.phpt +2026-04-08T22:03:28.312109Z 01O Copying tests/ext/integrations/curl/distributed_tracing_curl_existing_headers_002.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_existing_headers_002.phpt +2026-04-08T22:03:28.312119Z 01O Copying tests/ext/integrations/curl/distributed_tracing_curl_existing_headers_003.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_existing_headers_003.phpt +2026-04-08T22:03:28.312129Z 01O Copying tests/ext/integrations/curl/distributed_tracing_curl_existing_headers_004.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_existing_headers_004.phpt +2026-04-08T22:03:28.312135Z 01O Copying tests/ext/integrations/curl/distributed_tracing_curl_existing_headers_005.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_existing_headers_005.phpt +2026-04-08T22:03:28.312142Z 01O Copying tests/ext/integrations/curl/distributed_tracing_curl_existing_headers_006.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_existing_headers_006.phpt +2026-04-08T22:03:28.312151Z 01O Copying tests/ext/integrations/curl/distributed_tracing_curl_existing_headers_007.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_existing_headers_007.phpt +2026-04-08T22:03:28.812608Z 01O Copying tests/ext/integrations/curl/distributed_tracing_curl_invalid_tags.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_invalid_tags.phpt +2026-04-08T22:03:28.812620Z 01O Copying tests/ext/integrations/curl/distributed_tracing_curl_multi_exec_001.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_multi_exec_001.phpt +2026-04-08T22:03:28.812630Z 01O Copying tests/ext/integrations/curl/distributed_tracing_curl_multi_exec_002.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_multi_exec_002.phpt +2026-04-08T22:03:28.812640Z 01O Copying tests/ext/integrations/curl/distributed_tracing_curl_multi_exec_003.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_multi_exec_003.phpt +2026-04-08T22:03:28.812648Z 01O Copying tests/ext/integrations/curl/distributed_tracing_curl_multi_exec_copy_handle.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_multi_exec_copy_handle.phpt +2026-04-08T22:03:28.812655Z 01O Copying tests/ext/integrations/curl/distributed_tracing_curl_multi_exec_disable.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_multi_exec_disable.phpt +2026-04-08T22:03:28.812665Z 01O Copying tests/ext/integrations/curl/distributed_tracing_curl_multi_exec_existing_headers_001.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_multi_exec_existing_headers_001.phpt +2026-04-08T22:03:28.812672Z 01O Copying tests/ext/integrations/curl/distributed_tracing_curl_multi_exec_existing_headers_002.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_multi_exec_existing_headers_002.phpt +2026-04-08T22:03:29.313458Z 01O Copying tests/ext/integrations/curl/distributed_tracing_curl_propagate_asm_event.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_propagate_asm_event.phpt +2026-04-08T22:03:29.313473Z 01O Copying tests/ext/integrations/curl/distributed_tracing_curl_propagate_custom_tags.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_propagate_custom_tags.phpt +2026-04-08T22:03:29.313482Z 01O Copying tests/ext/integrations/curl/distributed_tracing_curl_propagate_tags.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_propagate_tags.phpt +2026-04-08T22:03:29.313493Z 01O Copying tests/ext/integrations/curl/distributed_tracing_curl_sampling_priority.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_sampling_priority.phpt +2026-04-08T22:03:29.313499Z 01O Copying tests/ext/integrations/curl/distributed_tracing_curl_tracestate.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_tracestate.phpt +2026-04-08T22:03:29.313507Z 01O Copying tests/ext/integrations/http_streams/distributed_tracing.inc to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/http_streams/distributed_tracing.inc +2026-04-08T22:03:29.313516Z 01O Copying tests/ext/integrations/http_streams/distributed_tracing_http_streams.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/http_streams/distributed_tracing_http_streams.phpt +2026-04-08T22:03:29.313523Z 01O Copying tests/ext/integrations/http_streams/distributed_tracing_http_streams_disabled.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/http_streams/distributed_tracing_http_streams_disabled.phpt +2026-04-08T22:03:29.814028Z 01O Copying tests/ext/integrations/http_streams/distributed_tracing_http_streams_with_headers_array.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/http_streams/distributed_tracing_http_streams_with_headers_array.phpt +2026-04-08T22:03:29.814043Z 01O Copying tests/ext/integrations/http_streams/distributed_tracing_http_streams_with_headers_string.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/http_streams/distributed_tracing_http_streams_with_headers_string.phpt +2026-04-08T22:03:29.814051Z 01O Copying tests/ext/integrations/source_code/001/git_metadata_injection_from_valid_files.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/source_code/001/git_metadata_injection_from_valid_files.phpt +2026-04-08T22:03:29.814072Z 01O Copying tests/ext/integrations/source_code/002/git_metadata_injection_from_invalid_files.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/source_code/002/git_metadata_injection_from_invalid_files.phpt +2026-04-08T22:03:29.814086Z 01O Copying tests/ext/integrations/source_code/commit_sha_env_var.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/source_code/commit_sha_env_var.phpt +2026-04-08T22:03:29.814094Z 01O Copying tests/ext/integrations/source_code/git_metadata_injection_from_env.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/source_code/git_metadata_injection_from_env.phpt +2026-04-08T22:03:29.814104Z 01O Copying tests/ext/integrations/source_code/git_metadata_injection_from_global_tags.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/source_code/git_metadata_injection_from_global_tags.phpt +2026-04-08T22:03:30.314623Z 01O Copying tests/ext/integrations/source_code/git_metadata_injection_remove_credentials_from_env.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/source_code/git_metadata_injection_remove_credentials_from_env.phpt +2026-04-08T22:03:30.314635Z 01O Copying tests/ext/integrations/source_code/repository_url_env_var.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/source_code/repository_url_env_var.phpt +2026-04-08T22:03:30.314642Z 01O Copying tests/ext/ip_collection_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/ip_collection_01.phpt +2026-04-08T22:03:30.314649Z 01O Copying tests/ext/ip_collection_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/ip_collection_02.phpt +2026-04-08T22:03:30.314654Z 01O Copying tests/ext/ip_collection_03.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/ip_collection_03.phpt +2026-04-08T22:03:30.314659Z 01O Copying tests/ext/ip_collection_04.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/ip_collection_04.phpt +2026-04-08T22:03:30.314667Z 01O Copying tests/ext/ip_collection_05.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/ip_collection_05.phpt +2026-04-08T22:03:30.314674Z 01O Copying tests/ext/library_config/CONFLICTS to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/library_config/CONFLICTS +2026-04-08T22:03:30.815400Z 01O Copying tests/ext/library_config/fleet_config.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/library_config/fleet_config.phpt +2026-04-08T22:03:30.815417Z 01O Copying tests/ext/library_config/fleet_config.yaml to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/library_config/fleet_config.yaml +2026-04-08T22:03:30.815427Z 01O Copying tests/ext/library_config/fleet_config_overloads_env.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/library_config/fleet_config_overloads_env.phpt +2026-04-08T22:03:30.815437Z 01O Copying tests/ext/library_config/fleet_config_overloads_ini.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/library_config/fleet_config_overloads_ini.phpt +2026-04-08T22:03:30.815450Z 01O Copying tests/ext/library_config/local_config.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/library_config/local_config.phpt +2026-04-08T22:03:30.815459Z 01O Copying tests/ext/library_config/local_config.yaml to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/library_config/local_config.yaml +2026-04-08T22:03:30.815468Z 01O Copying tests/ext/library_config/local_config_does_not_overload_env.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/library_config/local_config_does_not_overload_env.phpt +2026-04-08T22:03:31.316091Z 01O Copying tests/ext/library_config/local_config_overloads_ini.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/library_config/local_config_overloads_ini.phpt +2026-04-08T22:03:31.316104Z 01O Copying tests/ext/limiter/001-limiter-disabled.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/limiter/001-limiter-disabled.phpt +2026-04-08T22:03:31.316111Z 01O Copying tests/ext/limiter/002-limiter-reached.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/limiter/002-limiter-reached.phpt +2026-04-08T22:03:31.316119Z 01O Copying tests/ext/limiter/003-limiter-with-asm-standalone.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/limiter/003-limiter-with-asm-standalone.phpt +2026-04-08T22:03:31.316178Z 01O Copying tests/ext/live-debugger/debugger_enable_dynamic_config.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/live-debugger/debugger_enable_dynamic_config.phpt +2026-04-08T22:03:31.316190Z 01O Copying tests/ext/live-debugger/debugger_log_probe.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/live-debugger/debugger_log_probe.phpt +2026-04-08T22:03:31.316204Z 01O Copying tests/ext/live-debugger/debugger_log_probe_process_tags.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/live-debugger/debugger_log_probe_process_tags.phpt +2026-04-08T22:03:31.316211Z 01O Copying tests/ext/live-debugger/debugger_metric_probe.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/live-debugger/debugger_metric_probe.phpt +2026-04-08T22:03:31.816696Z 01O Copying tests/ext/live-debugger/debugger_span_decoration_probe.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/live-debugger/debugger_span_decoration_probe.phpt +2026-04-08T22:03:31.816710Z 01O Copying tests/ext/live-debugger/debugger_span_probe.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/live-debugger/debugger_span_probe.phpt +2026-04-08T22:03:31.816719Z 01O Copying tests/ext/live-debugger/debugger_span_probe_class.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/live-debugger/debugger_span_probe_class.phpt +2026-04-08T22:03:31.816729Z 01O Copying tests/ext/live-debugger/exception-replay_001.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/live-debugger/exception-replay_001.phpt +2026-04-08T22:03:31.816739Z 01O Copying tests/ext/live-debugger/exception-replay_002.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/live-debugger/exception-replay_002.phpt +2026-04-08T22:03:31.816747Z 01O Copying tests/ext/live-debugger/exception-replay_non_regression_2989_mysqli.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/live-debugger/exception-replay_non_regression_2989_mysqli.phpt +2026-04-08T22:03:31.816758Z 01O Copying tests/ext/live-debugger/live_debugger.inc to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/live-debugger/live_debugger.inc +2026-04-08T22:03:31.816767Z 01O Copying tests/ext/logging_default_value.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/logging_default_value.phpt +2026-04-08T22:03:32.317562Z 01O Copying tests/ext/meta_struct.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/meta_struct.phpt +2026-04-08T22:03:32.317573Z 01O Copying tests/ext/nested_exceptions.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/nested_exceptions.phpt +2026-04-08T22:03:32.317581Z 01O Copying tests/ext/otel_config_remapping.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/otel_config_remapping.phpt +2026-04-08T22:03:32.317590Z 01O Copying tests/ext/otel_http_response_status_code_remapping.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/otel_http_response_status_code_remapping.phpt +2026-04-08T22:03:32.317597Z 01O Copying tests/ext/otel_http_response_status_code_remapping_precedence.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/otel_http_response_status_code_remapping_precedence.phpt +2026-04-08T22:03:32.317604Z 01O Copying tests/ext/otel_http_status_code_remapping.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/otel_http_status_code_remapping.phpt +2026-04-08T22:03:32.317640Z 01O Copying tests/ext/otel_propagators_empty_dd_propagation_style.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/otel_propagators_empty_dd_propagation_style.phpt +2026-04-08T22:03:32.317698Z 01O Copying tests/ext/pcntl/functions.inc to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/pcntl/functions.inc +2026-04-08T22:03:32.818257Z 01O Copying tests/ext/pcntl/pcntl_fork_long_running_autoflush.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/pcntl/pcntl_fork_long_running_autoflush.phpt +2026-04-08T22:03:32.818271Z 01O Copying tests/ext/pcntl/pcntl_fork_long_running_manual.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/pcntl/pcntl_fork_long_running_manual.phpt +2026-04-08T22:03:32.818278Z 01O Copying tests/ext/pcntl/pcntl_fork_reseed_span_id.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/pcntl/pcntl_fork_reseed_span_id.phpt +2026-04-08T22:03:32.818287Z 01O Copying tests/ext/pcntl/pcntl_fork_short_running_multiple.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/pcntl/pcntl_fork_short_running_multiple.phpt +2026-04-08T22:03:32.818292Z 01O Copying tests/ext/pcntl/pcntl_fork_short_running_nested.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/pcntl/pcntl_fork_short_running_nested.phpt +2026-04-08T22:03:32.818299Z 01O Copying tests/ext/pcntl/pcntl_fork_short_running_single.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/pcntl/pcntl_fork_short_running_single.phpt +2026-04-08T22:03:32.818307Z 01O Copying tests/ext/pcntl/pcntl_fork_thread_mode_orphan.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/pcntl/pcntl_fork_thread_mode_orphan.phpt +2026-04-08T22:03:32.818313Z 01O Copying tests/ext/peer_service_disabled_default.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/peer_service_disabled_default.phpt +2026-04-08T22:03:33.318941Z 01O Copying tests/ext/peer_service_honor_user_value.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/peer_service_honor_user_value.phpt +2026-04-08T22:03:33.318968Z 01O Copying tests/ext/peer_service_remapping.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/peer_service_remapping.phpt +2026-04-08T22:03:33.318988Z 01O Copying tests/ext/peer_service_sources_not_serialized_when_set.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/peer_service_sources_not_serialized_when_set.phpt +2026-04-08T22:03:33.319000Z 01O Copying tests/ext/peer_service_sources_not_serialized_when_unset.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/peer_service_sources_not_serialized_when_unset.phpt +2026-04-08T22:03:33.319006Z 01O Copying tests/ext/peer_service_use_first_available_tag.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/peer_service_use_first_available_tag.phpt +2026-04-08T22:03:33.319012Z 01O Copying tests/ext/peer_service_wrong_values.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/peer_service_wrong_values.phpt +2026-04-08T22:03:33.319021Z 01O Copying tests/ext/priority_sampling/001-default-sampling.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/001-default-sampling.phpt +2026-04-08T22:03:33.819453Z 01O Copying tests/ext/priority_sampling/002-user-reject.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/002-user-reject.phpt +2026-04-08T22:03:33.819465Z 01O Copying tests/ext/priority_sampling/003-user-keep.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/003-user-keep.phpt +2026-04-08T22:03:33.819471Z 01O Copying tests/ext/priority_sampling/004-rule-basic.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/004-rule-basic.phpt +2026-04-08T22:03:33.819524Z 01O Copying tests/ext/priority_sampling/005-rule-name.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/005-rule-name.phpt +2026-04-08T22:03:33.819532Z 01O Copying tests/ext/priority_sampling/006-rule-name-reject.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/006-rule-name-reject.phpt +2026-04-08T22:03:33.819541Z 01O Copying tests/ext/priority_sampling/007-rule-service.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/007-rule-service.phpt +2026-04-08T22:03:33.819546Z 01O Copying tests/ext/priority_sampling/008-rule-service-reject.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/008-rule-service-reject.phpt +2026-04-08T22:03:33.819552Z 01O Copying tests/ext/priority_sampling/009-rule-name-service.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/009-rule-name-service.phpt +2026-04-08T22:03:34.320106Z 01O Copying tests/ext/priority_sampling/010-rule-name-service-reject.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/010-rule-name-service-reject.phpt +2026-04-08T22:03:34.320127Z 01O Copying tests/ext/priority_sampling/011-preset.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/011-preset.phpt +2026-04-08T22:03:34.320134Z 01O Copying tests/ext/priority_sampling/012-default.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/012-default.phpt +2026-04-08T22:03:34.320143Z 01O Copying tests/ext/priority_sampling/013-rule-service-mapped.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/013-rule-service-mapped.phpt +2026-04-08T22:03:34.320148Z 01O Copying tests/ext/priority_sampling/014-rule-resource.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/014-rule-resource.phpt +2026-04-08T22:03:34.320154Z 01O Copying tests/ext/priority_sampling/015-rule-resource-reject.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/015-rule-resource-reject.phpt +2026-04-08T22:03:34.320163Z 01O Copying tests/ext/priority_sampling/016-rule-tag.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/016-rule-tag.phpt +2026-04-08T22:03:34.320169Z 01O Copying tests/ext/priority_sampling/017-rule-tag-reject.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/017-rule-tag-reject.phpt +2026-04-08T22:03:34.820544Z 01O Copying tests/ext/priority_sampling/018-manual.drop.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/018-manual.drop.phpt +2026-04-08T22:03:34.820565Z 01O Copying tests/ext/priority_sampling/019-manual.keep.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/019-manual.keep.phpt +2026-04-08T22:03:34.820572Z 01O Copying tests/ext/priority_sampling/020-rule-nonroot.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/020-rule-nonroot.phpt +2026-04-08T22:03:34.820602Z 01O Copying tests/ext/priority_sampling/021-rule-name-as-glob-with-question-mark.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/021-rule-name-as-glob-with-question-mark.phpt +2026-04-08T22:03:34.820622Z 01O Copying tests/ext/priority_sampling/022-rule-name-as-glob-with-multiple-criterias.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/022-rule-name-as-glob-with-multiple-criterias.phpt +2026-04-08T22:03:34.820678Z 01O Copying tests/ext/priority_sampling/023-manual.keep-distributed_overwrite.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/023-manual.keep-distributed_overwrite.phpt +2026-04-08T22:03:34.820688Z 01O Copying tests/ext/priority_sampling/024-deterministic-sampling.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/024-deterministic-sampling.phpt +2026-04-08T22:03:34.820699Z 01O Copying tests/ext/priority_sampling/025-ksr-tag-rule-sampling.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/025-ksr-tag-rule-sampling.phpt +2026-04-08T22:03:35.321096Z 01O Copying tests/ext/priority_sampling/026-ksr-tag-default-sampling.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/026-ksr-tag-default-sampling.phpt +2026-04-08T22:03:35.321118Z 01O Copying tests/ext/priority_sampling/027-ksr-tag-not-set-manual.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/027-ksr-tag-not-set-manual.phpt +2026-04-08T22:03:35.321127Z 01O Copying tests/ext/priority_sampling/028-ksr-tag-formatting.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/028-ksr-tag-formatting.phpt +2026-04-08T22:03:35.321137Z 01O Copying tests/ext/priority_sampling/029-ksr-tag-small-rate-formatting.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/029-ksr-tag-small-rate-formatting.phpt +2026-04-08T22:03:35.321144Z 01O Copying tests/ext/priority_sampling/030-ksr-tag-rounding-boundary.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/030-ksr-tag-rounding-boundary.phpt +2026-04-08T22:03:35.321150Z 01O Copying tests/ext/priority_sampling/031-ksr-tag-exact-sixth-decimal.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/031-ksr-tag-exact-sixth-decimal.phpt +2026-04-08T22:03:35.321160Z 01O Copying tests/ext/priority_sampling/032-ksr-tag-below-precision-rounds-to-zero.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/032-ksr-tag-below-precision-rounds-to-zero.phpt +2026-04-08T22:03:35.321165Z 01O Copying tests/ext/priority_sampling/asm-standalone.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/asm-standalone.phpt +2026-04-08T22:03:35.821582Z 01O Copying tests/ext/priority_sampling/gh-1828.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/gh-1828.phpt +2026-04-08T22:03:35.821605Z 01O Copying tests/ext/priority_sampling/invalid-json-rule.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/invalid-json-rule.phpt +2026-04-08T22:03:35.821616Z 01O Copying tests/ext/priority_sampling/invalid-regex-rule.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/invalid-regex-rule.phpt +2026-04-08T22:03:35.821630Z 01O Copying tests/ext/priority_sampling/manual_global_override.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/manual_global_override.phpt +2026-04-08T22:03:35.821636Z 01O Copying tests/ext/process_tag_value_normalization.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/process_tag_value_normalization.phpt +2026-04-08T22:03:35.821657Z 01O Copying tests/ext/process_tags.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/process_tags.phpt +2026-04-08T22:03:35.821705Z 01O Copying tests/ext/profiling/runtime_id_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/profiling/runtime_id_01.phpt +2026-04-08T22:03:35.821714Z 01O Copying tests/ext/profiling/runtime_id_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/profiling/runtime_id_02.phpt +2026-04-08T22:03:36.322114Z 01O Copying tests/ext/read_c_configuration.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/read_c_configuration.phpt +2026-04-08T22:03:36.322132Z 01O Copying tests/ext/referrer_extraction_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/referrer_extraction_01.phpt +2026-04-08T22:03:36.322139Z 01O Copying tests/ext/referrer_extraction_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/referrer_extraction_02.phpt +2026-04-08T22:03:36.322172Z 01O Copying tests/ext/referrer_extraction_03.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/referrer_extraction_03.phpt +2026-04-08T22:03:36.322188Z 01O Copying tests/ext/referrer_extraction_04.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/referrer_extraction_04.phpt +2026-04-08T22:03:36.322197Z 01O Copying tests/ext/referrer_extraction_05.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/referrer_extraction_05.phpt +2026-04-08T22:03:36.322207Z 01O Copying tests/ext/remote_config/dynamic_config_auto_update.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/remote_config/dynamic_config_auto_update.phpt +2026-04-08T22:03:36.322218Z 01O Copying tests/ext/remote_config/dynamic_config_update.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/remote_config/dynamic_config_update.phpt +2026-04-08T22:03:36.822567Z 01O Copying tests/ext/remote_config/rc_process_tags.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/remote_config/rc_process_tags.phpt +2026-04-08T22:03:36.822604Z 01O Copying tests/ext/remote_config/remote_config.inc to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/remote_config/remote_config.inc +2026-04-08T22:03:36.822615Z 01O Copying tests/ext/request-replayer/dd_trace_agent_env.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/request-replayer/dd_trace_agent_env.phpt +2026-04-08T22:03:36.822628Z 01O Copying tests/ext/request-replayer/dd_trace_exception_span_event.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/request-replayer/dd_trace_exception_span_event.phpt +2026-04-08T22:03:36.822633Z 01O Copying tests/ext/request-replayer/dd_trace_span_event.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/request-replayer/dd_trace_span_event.phpt +2026-04-08T22:03:36.822639Z 01O Copying tests/ext/request-replayer/dd_trace_span_link_with_exception.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/request-replayer/dd_trace_span_link_with_exception.phpt +2026-04-08T22:03:36.822647Z 01O Copying tests/ext/request_timeout_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/request_timeout_01.phpt +2026-04-08T22:03:37.323316Z 01O Copying tests/ext/retrieve_128_bit_trace_id.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/retrieve_128_bit_trace_id.phpt +2026-04-08T22:03:37.323328Z 01O Copying tests/ext/root_span_http_client_ip.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/root_span_http_client_ip.phpt +2026-04-08T22:03:37.323334Z 01O Copying tests/ext/root_span_http_client_ip_custom_header.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/root_span_http_client_ip_custom_header.phpt +2026-04-08T22:03:37.323390Z 01O Copying tests/ext/root_span_http_client_ip_duplicate_ip_headers.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/root_span_http_client_ip_duplicate_ip_headers.phpt +2026-04-08T22:03:37.323399Z 01O Copying tests/ext/root_span_http_client_ip_x_forwarded_for.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/root_span_http_client_ip_x_forwarded_for.phpt +2026-04-08T22:03:37.323409Z 01O Copying tests/ext/root_span_http_useragent.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/root_span_http_useragent.phpt +2026-04-08T22:03:37.323413Z 01O Copying tests/ext/root_span_url_as_resource_names.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/root_span_url_as_resource_names.phpt +2026-04-08T22:03:37.323419Z 01O Copying tests/ext/root_span_url_as_resource_names_no_host.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/root_span_url_as_resource_names_no_host.phpt +2026-04-08T22:03:37.823985Z 01O Copying tests/ext/root_span_url_with_post_array.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/root_span_url_with_post_array.phpt +2026-04-08T22:03:37.824006Z 01O Copying tests/ext/root_span_url_with_post_array_allowed.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/root_span_url_with_post_array_allowed.phpt +2026-04-08T22:03:37.824013Z 01O Copying tests/ext/root_span_url_with_post_fields.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/root_span_url_with_post_fields.phpt +2026-04-08T22:03:37.824037Z 01O Copying tests/ext/root_span_url_with_post_implicit_array_key.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/root_span_url_with_post_implicit_array_key.phpt +2026-04-08T22:03:37.824048Z 01O Copying tests/ext/root_span_url_with_post_no_param.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/root_span_url_with_post_no_param.phpt +2026-04-08T22:03:37.824055Z 01O Copying tests/ext/root_span_url_with_post_no_param_set.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/root_span_url_with_post_no_param_set.phpt +2026-04-08T22:03:37.824063Z 01O Copying tests/ext/root_span_url_with_post_only_allowed_params.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/root_span_url_with_post_only_allowed_params.phpt +2026-04-08T22:03:37.824068Z 01O Copying tests/ext/root_span_url_with_post_simple_whitelist.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/root_span_url_with_post_simple_whitelist.phpt +2026-04-08T22:03:38.324429Z 01O Copying tests/ext/root_span_url_with_query_params.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/root_span_url_with_query_params.phpt +2026-04-08T22:03:38.324440Z 01O Copying tests/ext/root_span_url_with_query_params_obfuscation.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/root_span_url_with_query_params_obfuscation.phpt +2026-04-08T22:03:38.324447Z 01O Copying tests/ext/root_span_url_with_query_params_obfuscation_empty.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/root_span_url_with_query_params_obfuscation_empty.phpt +2026-04-08T22:03:38.324455Z 01O Copying tests/ext/root_span_url_with_query_params_whitelist.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/root_span_url_with_query_params_whitelist.phpt +2026-04-08T22:03:38.324460Z 01O Copying tests/ext/root_span_url_without_query_params.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/root_span_url_without_query_params.phpt +2026-04-08T22:03:38.324521Z 01O Copying tests/ext/runtime_ini_env_version_change.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/runtime_ini_env_version_change.phpt +2026-04-08T22:03:38.324530Z 01O Copying tests/ext/sandbox-prehook/access_modifier_method_access_hook.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-prehook/access_modifier_method_access_hook.phpt +2026-04-08T22:03:38.324538Z 01O Copying tests/ext/sandbox-prehook/access_modifier_property_access_hook.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-prehook/access_modifier_property_access_hook.phpt +2026-04-08T22:03:38.825150Z 01O Copying tests/ext/sandbox-prehook/args_copy_before_mutation.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-prehook/args_copy_before_mutation.phpt +2026-04-08T22:03:38.825164Z 01O Copying tests/ext/sandbox-prehook/close_on_exit.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-prehook/close_on_exit.phpt +2026-04-08T22:03:38.825173Z 01O Copying tests/ext/sandbox-prehook/closure_arg_exception.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-prehook/closure_arg_exception.phpt +2026-04-08T22:03:38.825184Z 01O Copying tests/ext/sandbox-prehook/closure_arg_retval.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-prehook/closure_arg_retval.phpt +2026-04-08T22:03:38.825189Z 01O Copying tests/ext/sandbox-prehook/dd_trace_function_internal.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-prehook/dd_trace_function_internal.phpt +2026-04-08T22:03:38.825195Z 01O Copying tests/ext/sandbox-prehook/dd_trace_function_userland.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-prehook/dd_trace_function_userland.phpt +2026-04-08T22:03:38.825203Z 01O Copying tests/ext/sandbox-prehook/dd_trace_method.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-prehook/dd_trace_method.phpt +2026-04-08T22:03:38.825208Z 01O Copying tests/ext/sandbox-prehook/dd_trace_method_binds_called_object.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-prehook/dd_trace_method_binds_called_object.phpt +2026-04-08T22:03:39.325793Z 01O Copying tests/ext/sandbox-prehook/drop_spans.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-prehook/drop_spans.phpt +2026-04-08T22:03:39.325812Z 01O Copying tests/ext/sandbox-prehook/exception_error_log.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-prehook/exception_error_log.phpt +2026-04-08T22:03:39.325820Z 01O Copying tests/ext/sandbox-prehook/exception_handling.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-prehook/exception_handling.phpt +2026-04-08T22:03:39.325851Z 01O Copying tests/ext/sandbox-prehook/exceptions_and_errors_are_ignored_in_tracing_closure.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-prehook/exceptions_and_errors_are_ignored_in_tracing_closure.phpt +2026-04-08T22:03:39.325876Z 01O Copying tests/ext/sandbox-prehook/exit_and_drop_span.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-prehook/exit_and_drop_span.phpt +2026-04-08T22:03:39.325884Z 01O Copying tests/ext/sandbox-prehook/keep_spans_in_limited_tracing_userland_functions.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-prehook/keep_spans_in_limited_tracing_userland_functions.phpt +2026-04-08T22:03:39.325893Z 01O Copying tests/ext/sandbox-prehook/new_static.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-prehook/new_static.phpt +2026-04-08T22:03:39.325944Z 01O Copying tests/ext/sandbox-prehook/trace_static_method.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-prehook/trace_static_method.phpt +2026-04-08T22:03:39.826664Z 01O Copying tests/ext/sandbox-prehook/variable_length_parameter_list.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-prehook/variable_length_parameter_list.phpt +2026-04-08T22:03:39.826679Z 01O Copying tests/ext/sandbox-prehook/variadic_args_internal.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-prehook/variadic_args_internal.phpt +2026-04-08T22:03:39.826689Z 01O Copying tests/ext/sandbox-regression/abstract_method_hook.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/abstract_method_hook.phpt +2026-04-08T22:03:39.826700Z 01O Copying tests/ext/sandbox-regression/access_modifier_method_access_hook.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/access_modifier_method_access_hook.phpt +2026-04-08T22:03:39.826705Z 01O Copying tests/ext/sandbox-regression/access_modifier_property_access_hook.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/access_modifier_property_access_hook.phpt +2026-04-08T22:03:39.826714Z 01O Copying tests/ext/sandbox-regression/allow_overriding_before_overrided_methods_functions_are_defined.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/allow_overriding_before_overrided_methods_functions_are_defined.phpt +2026-04-08T22:03:39.826732Z 01O Copying tests/ext/sandbox-regression/case_insensitive_method_hook.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/case_insensitive_method_hook.phpt +2026-04-08T22:03:39.826742Z 01O Copying tests/ext/sandbox-regression/class_resolver_bailout_hook.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/class_resolver_bailout_hook.phpt +2026-04-08T22:03:40.327232Z 01O Copying tests/ext/sandbox-regression/closure_accessing_outside_variables.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/closure_accessing_outside_variables.phpt +2026-04-08T22:03:40.327244Z 01O Copying tests/ext/sandbox-regression/closure_set_inside_object_methods.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/closure_set_inside_object_methods.phpt +2026-04-08T22:03:40.327255Z 01O Copying tests/ext/sandbox-regression/dd_trace_tracer_is_limited_hard.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/dd_trace_tracer_is_limited_hard.phpt +2026-04-08T22:03:40.327264Z 01O Copying tests/ext/sandbox-regression/dd_trace_tracer_limiter_reset_flush.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/dd_trace_tracer_limiter_reset_flush.phpt +2026-04-08T22:03:40.327270Z 01O Copying tests/ext/sandbox-regression/destructor_called_when_this_gets_out_of_scope.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/destructor_called_when_this_gets_out_of_scope.phpt +2026-04-08T22:03:40.327278Z 01O Copying tests/ext/sandbox-regression/disable_tracing_disables_tracing.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/disable_tracing_disables_tracing.phpt +2026-04-08T22:03:40.327302Z 01O Copying tests/ext/sandbox-regression/do_not_check_if_class_or_function_exists_by_default.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/do_not_check_if_class_or_function_exists_by_default.phpt +2026-04-08T22:03:40.327367Z 01O Copying tests/ext/sandbox-regression/extension_disabled.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/extension_disabled.phpt +2026-04-08T22:03:40.327375Z 01O Copying tests/ext/sandbox-regression/handle_many_hooks.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/handle_many_hooks.phpt +2026-04-08T22:03:40.827427Z 01O Copying tests/ext/sandbox-regression/limiter_reset_flush_with_open_spans.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/limiter_reset_flush_with_open_spans.phpt +2026-04-08T22:03:40.827446Z 01O Copying tests/ext/sandbox-regression/method_invoked_via_reflection.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/method_invoked_via_reflection.phpt +2026-04-08T22:03:40.827454Z 01O Copying tests/ext/sandbox-regression/method_returning_array.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/method_returning_array.phpt +2026-04-08T22:03:40.827463Z 01O Copying tests/ext/sandbox-regression/multiple_instrumentations.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/multiple_instrumentations.phpt +2026-04-08T22:03:40.827468Z 01O Copying tests/ext/sandbox-regression/namespaces.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/namespaces.phpt +2026-04-08T22:03:40.827475Z 01O Copying tests/ext/sandbox-regression/nested_dropped_spans.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/nested_dropped_spans.phpt +2026-04-08T22:03:40.827484Z 01O Copying tests/ext/sandbox-regression/overriding_construct.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/overriding_construct.phpt +2026-04-08T22:03:40.827491Z 01O Copying tests/ext/sandbox-regression/overriding_method_defined_in_parent.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/overriding_method_defined_in_parent.phpt +2026-04-08T22:03:41.328139Z 01O Copying tests/ext/sandbox-regression/private_method_hook.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/private_method_hook.phpt +2026-04-08T22:03:41.328154Z 01O Copying tests/ext/sandbox-regression/private_self_access.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/private_self_access.phpt +2026-04-08T22:03:41.328162Z 01O Copying tests/ext/sandbox-regression/protected_method_hook.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/protected_method_hook.phpt +2026-04-08T22:03:41.328171Z 01O Copying tests/ext/sandbox-regression/recursion.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/recursion.phpt +2026-04-08T22:03:41.328177Z 01O Copying tests/ext/sandbox-regression/reset_configured_overrides.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/reset_configured_overrides.phpt +2026-04-08T22:03:41.328184Z 01O Copying tests/ext/sandbox-regression/reset_function_tracing.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/reset_function_tracing.phpt +2026-04-08T22:03:41.328193Z 01O Copying tests/ext/sandbox-regression/return_value_passed.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/return_value_passed.phpt +2026-04-08T22:03:41.328198Z 01O Copying tests/ext/sandbox-regression/simple_function_hook.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/simple_function_hook.phpt +2026-04-08T22:03:41.828569Z 01O Copying tests/ext/sandbox-regression/simple_method_hook.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/simple_method_hook.phpt +2026-04-08T22:03:41.828583Z 01O Copying tests/ext/sandbox-regression/throw_exception.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/throw_exception.phpt +2026-04-08T22:03:41.828590Z 01O Copying tests/ext/sandbox-regression/trace_method_or_function_that_will_exist_later.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/trace_method_or_function_that_will_exist_later.phpt +2026-04-08T22:03:41.828599Z 01O Copying tests/ext/sandbox-regression/trace_static_method.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/trace_static_method.phpt +2026-04-08T22:03:41.828605Z 01O Copying tests/ext/sandbox-regression/trampoline_install_fake_closure_hook.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/trampoline_install_fake_closure_hook.phpt +2026-04-08T22:03:41.828612Z 01O Copying tests/ext/sandbox-regression/uncaught_exception_with_finally.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/uncaught_exception_with_finally.phpt +2026-04-08T22:03:41.828622Z 01O Copying tests/ext/sandbox-regression/used_dispatch_should_not_free.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/used_dispatch_should_not_free.phpt +2026-04-08T22:03:41.828628Z 01O Copying tests/ext/sandbox-regression/variable_length_parameter_list.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/variable_length_parameter_list.phpt +2026-04-08T22:03:42.331158Z 01O Copying tests/ext/sandbox-regression/very_nested_functions.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/very_nested_functions.phpt +2026-04-08T22:03:42.331170Z 01O Copying tests/ext/sandbox-regression/with_params_function_hook.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/with_params_function_hook.phpt +2026-04-08T22:03:42.331180Z 01O Copying tests/ext/sandbox-regression/with_params_method_hook.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/with_params_method_hook.phpt +2026-04-08T22:03:42.331191Z 01O Copying tests/ext/sandbox/abstract_trait_hook.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/abstract_trait_hook.phpt +2026-04-08T22:03:42.331195Z 01O Copying tests/ext/sandbox/abstract_trait_hook_inherit.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/abstract_trait_hook_inherit.phpt +2026-04-08T22:03:42.331202Z 01O Copying tests/ext/sandbox/auto_flush.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/auto_flush.phpt +2026-04-08T22:03:42.331239Z 01O Copying tests/ext/sandbox/auto_flush_attach_exception.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/auto_flush_attach_exception.phpt +2026-04-08T22:03:42.331258Z 01O Copying tests/ext/sandbox/auto_flush_disables_tracing.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/auto_flush_disables_tracing.phpt +2026-04-08T22:03:42.829423Z 01O Copying tests/ext/sandbox/auto_flush_sandbox_exception.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/auto_flush_sandbox_exception.phpt +2026-04-08T22:03:42.829489Z 01O Copying tests/ext/sandbox/auto_flush_userland_root_span.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/auto_flush_userland_root_span.phpt +2026-04-08T22:03:42.829499Z 01O Copying tests/ext/sandbox/cake_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/cake_01.phpt +2026-04-08T22:03:42.829509Z 01O Copying tests/ext/sandbox/cake_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/cake_02.phpt +2026-04-08T22:03:42.829513Z 01O Copying tests/ext/sandbox/close-on-exit-retval.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/close-on-exit-retval.phpt +2026-04-08T22:03:42.829521Z 01O Copying tests/ext/sandbox/close-on-exit.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/close-on-exit.phpt +2026-04-08T22:03:42.829530Z 01O Copying tests/ext/sandbox/dd_dumper.inc to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/dd_dumper.inc +2026-04-08T22:03:42.829535Z 01O Copying tests/ext/sandbox/dd_trace_closed_spans_count.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/dd_trace_closed_spans_count.phpt +2026-04-08T22:03:43.330149Z 01O Copying tests/ext/sandbox/dd_trace_function_alias.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/dd_trace_function_alias.phpt +2026-04-08T22:03:43.330162Z 01O Copying tests/ext/sandbox/dd_trace_function_alias_overwrite.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/dd_trace_function_alias_overwrite.phpt +2026-04-08T22:03:43.330168Z 01O Copying tests/ext/sandbox/dd_trace_function_complex.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/dd_trace_function_complex.phpt +2026-04-08T22:03:43.330176Z 01O Copying tests/ext/sandbox/dd_trace_function_internal.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/dd_trace_function_internal.phpt +2026-04-08T22:03:43.330180Z 01O Copying tests/ext/sandbox/dd_trace_function_userland.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/dd_trace_function_userland.phpt +2026-04-08T22:03:43.330186Z 01O Copying tests/ext/sandbox/dd_trace_method.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/dd_trace_method.phpt +2026-04-08T22:03:43.330194Z 01O Copying tests/ext/sandbox/dd_trace_method_alias.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/dd_trace_method_alias.phpt +2026-04-08T22:03:43.330202Z 01O Copying tests/ext/sandbox/dd_trace_method_binds_called_object.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/dd_trace_method_binds_called_object.phpt +2026-04-08T22:03:43.830471Z 01O Copying tests/ext/sandbox/default_span_properties.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/default_span_properties.phpt +2026-04-08T22:03:43.830484Z 01O Copying tests/ext/sandbox/default_span_properties_method.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/default_span_properties_method.phpt +2026-04-08T22:03:43.830494Z 01O Copying tests/ext/sandbox/deferred_load_attempt_loading_once.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/deferred_load_attempt_loading_once.phpt +2026-04-08T22:03:43.830504Z 01O Copying tests/ext/sandbox/deferred_load_fatal.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/deferred_load_fatal.phpt +2026-04-08T22:03:43.830509Z 01O Copying tests/ext/sandbox/deferred_load_missing_interface.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/deferred_load_missing_interface.phpt +2026-04-08T22:03:43.830516Z 01O Copying tests/ext/sandbox/deferred_load_using_function.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/deferred_load_using_function.phpt +2026-04-08T22:03:43.830524Z 01O Copying tests/ext/sandbox/die_in_sandbox.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/die_in_sandbox.phpt +2026-04-08T22:03:43.830529Z 01O Copying tests/ext/sandbox/drop_spans.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/drop_spans.phpt +2026-04-08T22:03:44.331115Z 01O Copying tests/ext/sandbox/errors_are_flagged_from_userland.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/errors_are_flagged_from_userland.phpt +2026-04-08T22:03:44.331128Z 01O Copying tests/ext/sandbox/exception_does_not_close_span_that_catches.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/exception_does_not_close_span_that_catches.phpt +2026-04-08T22:03:44.331135Z 01O Copying tests/ext/sandbox/exception_error_log.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/exception_error_log.phpt +2026-04-08T22:03:44.331197Z 01O Copying tests/ext/sandbox/exception_from_user_error_handler_internal.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/exception_from_user_error_handler_internal.phpt +2026-04-08T22:03:44.331212Z 01O Copying tests/ext/sandbox/exception_handled_for_correct_catch_block.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/exception_handled_for_correct_catch_block.phpt +2026-04-08T22:03:44.331242Z 01O Copying tests/ext/sandbox/exception_handled_in_correct_catch_frame.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/exception_handled_in_correct_catch_frame.phpt +2026-04-08T22:03:44.331258Z 01O Copying tests/ext/sandbox/exception_handled_in_multicatch.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/exception_handled_in_multicatch.phpt +2026-04-08T22:03:44.331268Z 01O Copying tests/ext/sandbox/exception_handled_with_finally.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/exception_handled_with_finally.phpt +2026-04-08T22:03:44.832097Z 01O Copying tests/ext/sandbox/exception_handling.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/exception_handling.phpt +2026-04-08T22:03:44.832109Z 01O Copying tests/ext/sandbox/exception_is_defined.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/exception_is_defined.phpt +2026-04-08T22:03:44.832117Z 01O Copying tests/ext/sandbox/exceptions_and_errors_are_ignored_in_tracing_closure.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/exceptions_and_errors_are_ignored_in_tracing_closure.phpt +2026-04-08T22:03:44.832126Z 01O Copying tests/ext/sandbox/exceptions_are_passed_to_the_tracing_closure.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/exceptions_are_passed_to_the_tracing_closure.phpt +2026-04-08T22:03:44.832132Z 01O Copying tests/ext/sandbox/exceptions_in_original_call_rethrown_in_tracing_closure.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/exceptions_in_original_call_rethrown_in_tracing_closure.phpt +2026-04-08T22:03:44.832140Z 01O Copying tests/ext/sandbox/exceptions_in_tracing_closure_and_original_call.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/exceptions_in_tracing_closure_and_original_call.phpt +2026-04-08T22:03:44.832153Z 01O Copying tests/ext/sandbox/exit_and_drop_span.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/exit_and_drop_span.phpt +2026-04-08T22:03:44.832158Z 01O Copying tests/ext/sandbox/fatal_errors_are_tracked_001.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/fatal_errors_are_tracked_001.phpt +2026-04-08T22:03:45.335171Z 01O Copying tests/ext/sandbox/fatal_errors_are_tracked_002.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/fatal_errors_are_tracked_002.phpt +2026-04-08T22:03:45.335188Z 01O Copying tests/ext/sandbox/fatal_errors_are_tracked_003.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/fatal_errors_are_tracked_003.phpt +2026-04-08T22:03:45.335198Z 01O Copying tests/ext/sandbox/fatal_errors_are_tracked_004.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/fatal_errors_are_tracked_004.phpt +2026-04-08T22:03:45.335215Z 01O Copying tests/ext/sandbox/fatal_errors_are_tracked_005.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/fatal_errors_are_tracked_005.phpt +2026-04-08T22:03:45.335230Z 01O Copying tests/ext/sandbox/fatal_errors_ignored_in_shutdown.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/fatal_errors_ignored_in_shutdown.phpt +2026-04-08T22:03:45.335287Z 01O Copying tests/ext/sandbox/fatal_errors_ignored_in_tracing_closure.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/fatal_errors_ignored_in_tracing_closure.phpt +2026-04-08T22:03:45.335296Z 01O Copying tests/ext/sandbox/generator.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/generator.phpt +2026-04-08T22:03:45.335305Z 01O Copying tests/ext/sandbox/generator_in_object.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/generator_in_object.phpt +2026-04-08T22:03:45.833097Z 01O Copying tests/ext/sandbox/generator_with_exception.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/generator_with_exception.phpt +2026-04-08T22:03:45.833110Z 01O Copying tests/ext/sandbox/generator_with_return.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/generator_with_return.phpt +2026-04-08T22:03:45.833118Z 01O Copying tests/ext/sandbox/generator_yield_from.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/generator_yield_from.phpt +2026-04-08T22:03:45.833126Z 01O Copying tests/ext/sandbox/get_last_error.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/get_last_error.phpt +2026-04-08T22:03:45.833130Z 01O Copying tests/ext/sandbox/hook_function/01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/01.phpt +2026-04-08T22:03:45.833136Z 01O Copying tests/ext/sandbox/hook_function/02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/02.phpt +2026-04-08T22:03:45.833146Z 01O Copying tests/ext/sandbox/hook_function/03.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/03.phpt +2026-04-08T22:03:45.833152Z 01O Copying tests/ext/sandbox/hook_function/dropping_trace_hook.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/dropping_trace_hook.phpt +2026-04-08T22:03:46.333887Z 01O Copying tests/ext/sandbox/hook_function/hook_does_not_leak_error.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/hook_does_not_leak_error.phpt +2026-04-08T22:03:46.333922Z 01O Copying tests/ext/sandbox/hook_function/hook_internal_fake_closure.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/hook_internal_fake_closure.phpt +2026-04-08T22:03:46.333930Z 01O Copying tests/ext/sandbox/hook_function/posthook_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/posthook_01.phpt +2026-04-08T22:03:46.333968Z 01O Copying tests/ext/sandbox/hook_function/posthook_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/posthook_02.phpt +2026-04-08T22:03:46.333984Z 01O Copying tests/ext/sandbox/hook_function/posthook_03.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/posthook_03.phpt +2026-04-08T22:03:46.333995Z 01O Copying tests/ext/sandbox/hook_function/posthook_access_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/posthook_access_01.phpt +2026-04-08T22:03:46.334021Z 01O Copying tests/ext/sandbox/hook_function/posthook_error_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/posthook_error_01.phpt +2026-04-08T22:03:46.334036Z 01O Copying tests/ext/sandbox/hook_function/posthook_error_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/posthook_error_02.phpt +2026-04-08T22:03:46.834499Z 01O Copying tests/ext/sandbox/hook_function/posthook_exceptions_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/posthook_exceptions_01.phpt +2026-04-08T22:03:46.834512Z 01O Copying tests/ext/sandbox/hook_function/posthook_exceptions_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/posthook_exceptions_02.phpt +2026-04-08T22:03:46.834520Z 01O Copying tests/ext/sandbox/hook_function/posthook_exceptions_03.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/posthook_exceptions_03.phpt +2026-04-08T22:03:46.834528Z 01O Copying tests/ext/sandbox/hook_function/posthook_exceptions_04.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/posthook_exceptions_04.phpt +2026-04-08T22:03:46.834533Z 01O Copying tests/ext/sandbox/hook_function/posthook_exit_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/posthook_exit_01.phpt +2026-04-08T22:03:46.834539Z 01O Copying tests/ext/sandbox/hook_function/posthook_exit_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/posthook_exit_02.phpt +2026-04-08T22:03:46.834565Z 01O Copying tests/ext/sandbox/hook_function/posthook_limited_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/posthook_limited_01.phpt +2026-04-08T22:03:46.834580Z 01O Copying tests/ext/sandbox/hook_function/posthook_variadic.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/posthook_variadic.phpt +2026-04-08T22:03:47.335180Z 01O Copying tests/ext/sandbox/hook_function/prehook_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/prehook_01.phpt +2026-04-08T22:03:47.335192Z 01O Copying tests/ext/sandbox/hook_function/prehook_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/prehook_02.phpt +2026-04-08T22:03:47.335198Z 01O Copying tests/ext/sandbox/hook_function/prehook_03.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/prehook_03.phpt +2026-04-08T22:03:47.335206Z 01O Copying tests/ext/sandbox/hook_function/prehook_access_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/prehook_access_01.phpt +2026-04-08T22:03:47.335211Z 01O Copying tests/ext/sandbox/hook_function/prehook_error_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/prehook_error_01.phpt +2026-04-08T22:03:47.335222Z 01O Copying tests/ext/sandbox/hook_function/prehook_error_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/prehook_error_02.phpt +2026-04-08T22:03:47.335258Z 01O Copying tests/ext/sandbox/hook_function/prehook_exceptions_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/prehook_exceptions_01.phpt +2026-04-08T22:03:47.335282Z 01O Copying tests/ext/sandbox/hook_function/prehook_exceptions_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/prehook_exceptions_02.phpt +2026-04-08T22:03:47.335292Z 01O Copying tests/ext/sandbox/hook_function/prehook_exceptions_03.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/prehook_exceptions_03.phpt +2026-04-08T22:03:47.836003Z 01O Copying tests/ext/sandbox/hook_function/prehook_exceptions_04.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/prehook_exceptions_04.phpt +2026-04-08T22:03:47.836015Z 01O Copying tests/ext/sandbox/hook_function/prehook_variadic.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/prehook_variadic.phpt +2026-04-08T22:03:47.836022Z 01O Copying tests/ext/sandbox/hook_function/recursion.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/recursion.phpt +2026-04-08T22:03:47.836030Z 01O Copying tests/ext/sandbox/hook_limit.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_limit.phpt +2026-04-08T22:03:47.836034Z 01O Copying tests/ext/sandbox/hook_method/01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/01.phpt +2026-04-08T22:03:47.836039Z 01O Copying tests/ext/sandbox/hook_method/02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/02.phpt +2026-04-08T22:03:47.836047Z 01O Copying tests/ext/sandbox/hook_method/03.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/03.phpt +2026-04-08T22:03:47.836052Z 01O Copying tests/ext/sandbox/hook_method/hook_extended_internal_class.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/hook_extended_internal_class.phpt +2026-04-08T22:03:48.336422Z 01O Copying tests/ext/sandbox/hook_method/posthook_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/posthook_01.phpt +2026-04-08T22:03:48.336434Z 01O Copying tests/ext/sandbox/hook_method/posthook_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/posthook_02.phpt +2026-04-08T22:03:48.336444Z 01O Copying tests/ext/sandbox/hook_method/posthook_03.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/posthook_03.phpt +2026-04-08T22:03:48.336452Z 01O Copying tests/ext/sandbox/hook_method/posthook_04.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/posthook_04.phpt +2026-04-08T22:03:48.336456Z 01O Copying tests/ext/sandbox/hook_method/posthook_05.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/posthook_05.phpt +2026-04-08T22:03:48.336462Z 01O Copying tests/ext/sandbox/hook_method/posthook_06.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/posthook_06.phpt +2026-04-08T22:03:48.336497Z 01O Copying tests/ext/sandbox/hook_method/posthook_07.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/posthook_07.phpt +2026-04-08T22:03:48.336514Z 01O Copying tests/ext/sandbox/hook_method/posthook_access_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/posthook_access_01.phpt +2026-04-08T22:03:48.837061Z 01O Copying tests/ext/sandbox/hook_method/posthook_error_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/posthook_error_01.phpt +2026-04-08T22:03:48.837073Z 01O Copying tests/ext/sandbox/hook_method/posthook_error_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/posthook_error_02.phpt +2026-04-08T22:03:48.837080Z 01O Copying tests/ext/sandbox/hook_method/posthook_exceptions_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/posthook_exceptions_01.phpt +2026-04-08T22:03:48.837138Z 01O Copying tests/ext/sandbox/hook_method/posthook_exceptions_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/posthook_exceptions_02.phpt +2026-04-08T22:03:48.837148Z 01O Copying tests/ext/sandbox/hook_method/posthook_exit_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/posthook_exit_01.phpt +2026-04-08T22:03:48.837170Z 01O Copying tests/ext/sandbox/hook_method/posthook_exit_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/posthook_exit_02.phpt +2026-04-08T22:03:48.837179Z 01O Copying tests/ext/sandbox/hook_method/posthook_scope_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/posthook_scope_01.phpt +2026-04-08T22:03:48.837185Z 01O Copying tests/ext/sandbox/hook_method/posthook_scope_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/posthook_scope_02.phpt +2026-04-08T22:03:49.337819Z 01O Copying tests/ext/sandbox/hook_method/posthook_scope_03.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/posthook_scope_03.phpt +2026-04-08T22:03:49.337859Z 01O Copying tests/ext/sandbox/hook_method/posthook_span_ids_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/posthook_span_ids_01.phpt +2026-04-08T22:03:49.337866Z 01O Copying tests/ext/sandbox/hook_method/posthook_span_ids_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/posthook_span_ids_02.phpt +2026-04-08T22:03:49.337874Z 01O Copying tests/ext/sandbox/hook_method/prehook_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/prehook_01.phpt +2026-04-08T22:03:49.337879Z 01O Copying tests/ext/sandbox/hook_method/prehook_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/prehook_02.phpt +2026-04-08T22:03:49.337884Z 01O Copying tests/ext/sandbox/hook_method/prehook_03.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/prehook_03.phpt +2026-04-08T22:03:49.337891Z 01O Copying tests/ext/sandbox/hook_method/prehook_04.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/prehook_04.phpt +2026-04-08T22:03:49.337895Z 01O Copying tests/ext/sandbox/hook_method/prehook_05.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/prehook_05.phpt +2026-04-08T22:03:49.337902Z 01O Copying tests/ext/sandbox/hook_method/prehook_access_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/prehook_access_01.phpt +2026-04-08T22:03:49.838894Z 01O Copying tests/ext/sandbox/hook_method/prehook_error_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/prehook_error_01.phpt +2026-04-08T22:03:49.838907Z 01O Copying tests/ext/sandbox/hook_method/prehook_error_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/prehook_error_02.phpt +2026-04-08T22:03:49.838913Z 01O Copying tests/ext/sandbox/hook_method/prehook_exceptions_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/prehook_exceptions_01.phpt +2026-04-08T22:03:49.838922Z 01O Copying tests/ext/sandbox/hook_method/prehook_exceptions_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/prehook_exceptions_02.phpt +2026-04-08T22:03:49.838931Z 01O Copying tests/ext/sandbox/hook_method/prehook_scope_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/prehook_scope_01.phpt +2026-04-08T22:03:49.838992Z 01O Copying tests/ext/sandbox/hook_method/prehook_scope_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/prehook_scope_02.phpt +2026-04-08T22:03:49.839000Z 01O Copying tests/ext/sandbox/hook_method/prehook_scope_03.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/prehook_scope_03.phpt +2026-04-08T22:03:49.839026Z 01O Copying tests/ext/sandbox/hook_method/prehook_span_ids_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/prehook_span_ids_01.phpt +2026-04-08T22:03:50.339219Z 01O Copying tests/ext/sandbox/hook_method/prehook_span_ids_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/prehook_span_ids_02.phpt +2026-04-08T22:03:50.339236Z 01O Copying tests/ext/sandbox/install_hook/allow_nested_hook.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/allow_nested_hook.phpt +2026-04-08T22:03:50.339246Z 01O Copying tests/ext/sandbox/install_hook/exclude_inherited_hook.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/exclude_inherited_hook.phpt +2026-04-08T22:03:50.339257Z 01O Copying tests/ext/sandbox/install_hook/get_source_file.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/get_source_file.phpt +2026-04-08T22:03:50.339262Z 01O Copying tests/ext/sandbox/install_hook/hook_file.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/hook_file.phpt +2026-04-08T22:03:50.339268Z 01O Copying tests/ext/sandbox/install_hook/hook_internal_fake_closure.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/hook_internal_fake_closure.phpt +2026-04-08T22:03:50.339276Z 01O Copying tests/ext/sandbox/install_hook/hook_internal_inherited_constructor.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/hook_internal_inherited_constructor.phpt +2026-04-08T22:03:50.339281Z 01O Copying tests/ext/sandbox/install_hook/hook_not_invoked_if_tracer_disabled.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/hook_not_invoked_if_tracer_disabled.phpt +2026-04-08T22:03:50.839848Z 01O Copying tests/ext/sandbox/install_hook/hook_scoped_file.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/hook_scoped_file.phpt +2026-04-08T22:03:50.839861Z 01O Copying tests/ext/sandbox/install_hook/install_hook_return_by_ref.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/install_hook_return_by_ref.phpt +2026-04-08T22:03:50.839868Z 01O Copying tests/ext/sandbox/install_hook/internal_fake_closure_forced_parse_error_asan.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/internal_fake_closure_forced_parse_error_asan.phpt +2026-04-08T22:03:50.839879Z 01O Copying tests/ext/sandbox/install_hook/override_argument_jit.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/override_argument_jit.phpt +2026-04-08T22:03:50.839885Z 01O Copying tests/ext/sandbox/install_hook/override_default_argument.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/override_default_argument.phpt +2026-04-08T22:03:50.839891Z 01O Copying tests/ext/sandbox/install_hook/override_exception.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/override_exception.phpt +2026-04-08T22:03:50.839961Z 01O Copying tests/ext/sandbox/install_hook/remove_executing_hook.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/remove_executing_hook.phpt +2026-04-08T22:03:50.839980Z 01O Copying tests/ext/sandbox/install_hook/remove_hook_null_logger.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/remove_hook_null_logger.phpt +2026-04-08T22:03:51.340615Z 01O Copying tests/ext/sandbox/install_hook/replace_generator.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/replace_generator.phpt +2026-04-08T22:03:51.340628Z 01O Copying tests/ext/sandbox/install_hook/replace_hook_args.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/replace_hook_args.phpt +2026-04-08T22:03:51.340635Z 01O Copying tests/ext/sandbox/install_hook/replace_hook_args_internal.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/replace_hook_args_internal.phpt +2026-04-08T22:03:51.340648Z 01O Copying tests/ext/sandbox/install_hook/replace_hook_retval.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/replace_hook_retval.phpt +2026-04-08T22:03:51.340655Z 01O Copying tests/ext/sandbox/install_hook/suppress_call.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/suppress_call.phpt +2026-04-08T22:03:51.340661Z 01O Copying tests/ext/sandbox/install_hook/suppress_call_jit.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/suppress_call_jit.phpt +2026-04-08T22:03:51.340668Z 01O Copying tests/ext/sandbox/install_hook/testinclude.inc to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/testinclude.inc +2026-04-08T22:03:51.340673Z 01O Copying tests/ext/sandbox/install_hook/trace_callable.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/trace_callable.phpt +2026-04-08T22:03:51.340679Z 01O Copying tests/ext/sandbox/install_hook/trace_closure.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/trace_closure.phpt +2026-04-08T22:03:51.841463Z 01O Copying tests/ext/sandbox/install_hook/trace_closure_from_callable.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/trace_closure_from_callable.phpt +2026-04-08T22:03:51.841478Z 01O Copying tests/ext/sandbox/install_hook/trace_closure_ge_php_84.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/trace_closure_ge_php_84.phpt +2026-04-08T22:03:51.841488Z 01O Copying tests/ext/sandbox/install_hook/trace_file.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/trace_file.phpt +2026-04-08T22:03:51.841497Z 01O Copying tests/ext/sandbox/install_hook/trace_function.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/trace_function.phpt +2026-04-08T22:03:51.841512Z 01O Copying tests/ext/sandbox/install_hook/trace_generator.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/trace_generator.phpt +2026-04-08T22:03:51.841521Z 01O Copying tests/ext/sandbox/install_hook/trace_generator_ge_php_84.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/trace_generator_ge_php_84.phpt +2026-04-08T22:03:51.841550Z 01O Copying tests/ext/sandbox/install_hook/trace_generator_jit.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/trace_generator_jit.phpt +2026-04-08T22:03:51.841606Z 01O Copying tests/ext/sandbox/interface_hook.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/interface_hook.phpt +2026-04-08T22:03:52.341939Z 01O Copying tests/ext/sandbox/interface_hook_internal.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/interface_hook_internal.phpt +2026-04-08T22:03:52.341951Z 01O Copying tests/ext/sandbox/interface_inherit_hook.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/interface_inherit_hook.phpt +2026-04-08T22:03:52.341957Z 01O Copying tests/ext/sandbox/interface_inherit_hook_explicit_reimplement.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/interface_inherit_hook_explicit_reimplement.phpt +2026-04-08T22:03:52.341972Z 01O Copying tests/ext/sandbox/interface_inherit_hook_multiple.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/interface_inherit_hook_multiple.phpt +2026-04-08T22:03:52.341977Z 01O Copying tests/ext/sandbox/internal_hook_jit.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/internal_hook_jit.phpt +2026-04-08T22:03:52.341984Z 01O Copying tests/ext/sandbox/keep_spans_in_limited_tracing_internal_functions.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/keep_spans_in_limited_tracing_internal_functions.phpt +2026-04-08T22:03:52.341993Z 01O Copying tests/ext/sandbox/keep_spans_in_limited_tracing_internal_methods.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/keep_spans_in_limited_tracing_internal_methods.phpt +2026-04-08T22:03:52.342000Z 01O Copying tests/ext/sandbox/keep_spans_in_limited_tracing_userland_functions.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/keep_spans_in_limited_tracing_userland_functions.phpt +2026-04-08T22:03:52.342007Z 01O Copying tests/ext/sandbox/keep_spans_in_limited_tracing_userland_methods.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/keep_spans_in_limited_tracing_userland_methods.phpt +2026-04-08T22:03:52.842619Z 01O Copying tests/ext/sandbox/manual_flush.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/manual_flush.phpt +2026-04-08T22:03:52.842642Z 01O Copying tests/ext/sandbox/new_static.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/new_static.phpt +2026-04-08T22:03:52.842648Z 01O Copying tests/ext/sandbox/non-zero_duration.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/non-zero_duration.phpt +2026-04-08T22:03:52.842657Z 01O Copying tests/ext/sandbox/preinitialized_tracing_of_method.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/preinitialized_tracing_of_method.phpt +2026-04-08T22:03:52.842669Z 01O Copying tests/ext/sandbox/return_by_ref.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/return_by_ref.phpt +2026-04-08T22:03:52.842675Z 01O Copying tests/ext/sandbox/retval_is_null_with_exception.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/retval_is_null_with_exception.phpt +2026-04-08T22:03:52.842686Z 01O Copying tests/ext/sandbox/safe_to_string_metadata.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/safe_to_string_metadata.phpt +2026-04-08T22:03:52.842692Z 01O Copying tests/ext/sandbox/safe_to_string_metadata_drops_invalid_keys.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/safe_to_string_metadata_drops_invalid_keys.phpt +2026-04-08T22:03:53.343377Z 01O Copying tests/ext/sandbox/safe_to_string_metadata_ge_php_84.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/safe_to_string_metadata_ge_php_84.phpt +2026-04-08T22:03:53.343395Z 01O Copying tests/ext/sandbox/safe_to_string_metrics.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/safe_to_string_metrics.phpt +2026-04-08T22:03:53.343416Z 01O Copying tests/ext/sandbox/safe_to_string_properties.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/safe_to_string_properties.phpt +2026-04-08T22:03:53.343425Z 01O Copying tests/ext/sandbox/span_clone.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/span_clone.phpt +2026-04-08T22:03:53.343431Z 01O Copying tests/ext/sandbox/span_resource_serialization.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/span_resource_serialization.phpt +2026-04-08T22:03:53.343439Z 01O Copying tests/ext/sandbox/spans_out_of_sync_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/spans_out_of_sync_01.phpt +2026-04-08T22:03:53.343444Z 01O Copying tests/ext/sandbox/spans_out_of_sync_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/spans_out_of_sync_02.phpt +2026-04-08T22:03:53.343450Z 01O Copying tests/ext/sandbox/spans_out_of_sync_03.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/spans_out_of_sync_03.phpt +2026-04-08T22:03:53.844113Z 01O Copying tests/ext/sandbox/spans_out_of_sync_04.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/spans_out_of_sync_04.phpt +2026-04-08T22:03:53.844127Z 01O Copying tests/ext/sandbox/spans_out_of_sync_05.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/spans_out_of_sync_05.phpt +2026-04-08T22:03:53.844134Z 01O Copying tests/ext/sandbox/spans_out_of_sync_06.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/spans_out_of_sync_06.phpt +2026-04-08T22:03:53.844144Z 01O Copying tests/ext/sandbox/static_tracing_closures_will_not_bind_this.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/static_tracing_closures_will_not_bind_this.phpt +2026-04-08T22:03:53.844149Z 01O Copying tests/ext/sandbox/variadic_args_internal.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/variadic_args_internal.phpt +2026-04-08T22:03:53.844156Z 01O Copying tests/ext/sandbox/variadic_no_args.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/variadic_no_args.phpt +2026-04-08T22:03:53.844181Z 01O Copying tests/ext/sandbox/vm_var_types_return.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/vm_var_types_return.phpt +2026-04-08T22:03:53.844196Z 01O Copying tests/ext/segfault_backtrace_disabled.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/segfault_backtrace_disabled.phpt +2026-04-08T22:03:54.344699Z 01O Copying tests/ext/segfault_backtrace_enabled.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/segfault_backtrace_enabled.phpt +2026-04-08T22:03:54.344713Z 01O Copying tests/ext/set_distributed_tracing_context_wrong_param.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/set_distributed_tracing_context_wrong_param.phpt +2026-04-08T22:03:54.344722Z 01O Copying tests/ext/set_user_no_metadata.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/set_user_no_metadata.phpt +2026-04-08T22:03:54.344731Z 01O Copying tests/ext/set_user_with_metadata.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/set_user_with_metadata.phpt +2026-04-08T22:03:54.344799Z 01O Copying tests/ext/set_user_with_propagation_by_default.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/set_user_with_propagation_by_default.phpt +2026-04-08T22:03:54.344808Z 01O Copying tests/ext/set_user_with_propagation_override_default.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/set_user_with_propagation_override_default.phpt +2026-04-08T22:03:54.344817Z 01O Copying tests/ext/set_user_without_propagation_override_default.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/set_user_without_propagation_override_default.phpt +2026-04-08T22:03:54.344822Z 01O Copying tests/ext/show_actual_active_span_in_hook.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/show_actual_active_span_in_hook.phpt +2026-04-08T22:03:54.344837Z 01O Copying tests/ext/sidecar_connection_mode_auto.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sidecar_connection_mode_auto.phpt +2026-04-08T22:03:54.845448Z 01O Copying tests/ext/sidecar_connection_mode_config.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sidecar_connection_mode_config.phpt +2026-04-08T22:03:54.845476Z 01O Copying tests/ext/sidecar_connection_mode_invalid.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sidecar_connection_mode_invalid.phpt +2026-04-08T22:03:54.845485Z 01O Copying tests/ext/sidecar_connection_mode_subprocess.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sidecar_connection_mode_subprocess.phpt +2026-04-08T22:03:54.845510Z 01O Copying tests/ext/sidecar_disabled_when_telemetry_disabled.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sidecar_disabled_when_telemetry_disabled.phpt +2026-04-08T22:03:54.845526Z 01O Copying tests/ext/sidecar_enabled.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sidecar_enabled.phpt +2026-04-08T22:03:54.845539Z 01O Copying tests/ext/single-span_sampling/accept-single-span.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/single-span_sampling/accept-single-span.phpt +2026-04-08T22:03:54.845549Z 01O Copying tests/ext/single-span_sampling/check-sample-rate.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/single-span_sampling/check-sample-rate.phpt +2026-04-08T22:03:54.845556Z 01O Copying tests/ext/single-span_sampling/limited-single-span-with-match.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/single-span_sampling/limited-single-span-with-match.phpt +2026-04-08T22:03:55.346148Z 01O Copying tests/ext/single-span_sampling/limited-single-span.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/single-span_sampling/limited-single-span.phpt +2026-04-08T22:03:55.346162Z 01O Copying tests/ext/single-span_sampling/name-matching-single-span.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/single-span_sampling/name-matching-single-span.phpt +2026-04-08T22:03:55.346172Z 01O Copying tests/ext/single-span_sampling/read-single-span-sampling-config-from-file.config.json to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/single-span_sampling/read-single-span-sampling-config-from-file.config.json +2026-04-08T22:03:55.346184Z 01O Copying tests/ext/single-span_sampling/read-single-span-sampling-config-from-file.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/single-span_sampling/read-single-span-sampling-config-from-file.phpt +2026-04-08T22:03:55.346241Z 01O Copying tests/ext/span_create_observer.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/span_create_observer.phpt +2026-04-08T22:03:55.346247Z 01O Copying tests/ext/span_on_close.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/span_on_close.phpt +2026-04-08T22:03:55.346257Z 01O Copying tests/ext/span_stack/span_stack_clone.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/span_stack/span_stack_clone.phpt +2026-04-08T22:03:55.346262Z 01O Copying tests/ext/span_stack/span_stack_swap.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/span_stack/span_stack_swap.phpt +2026-04-08T22:03:55.846843Z 01O Copying tests/ext/span_stack/span_stack_swap_traced_function.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/span_stack/span_stack_swap_traced_function.phpt +2026-04-08T22:03:55.846866Z 01O Copying tests/ext/span_stack/span_trace_stack_autoclose.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/span_stack/span_trace_stack_autoclose.phpt +2026-04-08T22:03:55.846874Z 01O Copying tests/ext/span_stack/span_trace_swap.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/span_stack/span_trace_swap.phpt +2026-04-08T22:03:55.846883Z 01O Copying tests/ext/span_stack/stack_dropped_parent.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/span_stack/stack_dropped_parent.phpt +2026-04-08T22:03:55.846887Z 01O Copying tests/ext/span_stack/start_span_new_trace.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/span_stack/start_span_new_trace.phpt +2026-04-08T22:03:55.846895Z 01O Copying tests/ext/span_stack/start_span_stack.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/span_stack/start_span_stack.phpt +2026-04-08T22:03:55.846903Z 01O Copying tests/ext/span_stack/start_top_level_span_stack.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/span_stack/start_top_level_span_stack.phpt +2026-04-08T22:03:55.846908Z 01O Copying tests/ext/span_with_parent_property_access.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/span_with_parent_property_access.phpt +2026-04-08T22:03:56.347490Z 01O Copying tests/ext/span_with_removed_exception.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/span_with_removed_exception.phpt +2026-04-08T22:03:56.347500Z 01O Copying tests/ext/start_span_with_all_properties.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/start_span_with_all_properties.phpt +2026-04-08T22:03:56.347507Z 01O Copying tests/ext/start_span_without_closing.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/start_span_without_closing.phpt +2026-04-08T22:03:56.347516Z 01O Copying tests/ext/start_span_without_closing_autofinish.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/start_span_without_closing_autofinish.phpt +2026-04-08T22:03:56.347523Z 01O Copying tests/ext/startup_logging.inc to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/startup_logging.inc +2026-04-08T22:03:56.347530Z 01O Copying tests/ext/startup_logging.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/startup_logging.phpt +2026-04-08T22:03:56.347551Z 01O Copying tests/ext/startup_logging_config.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/startup_logging_config.phpt +2026-04-08T22:03:56.347569Z 01O Copying tests/ext/startup_logging_diagnostics.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/startup_logging_diagnostics.phpt +2026-04-08T22:03:56.850085Z 01O Copying tests/ext/startup_logging_disabled.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/startup_logging_disabled.phpt +2026-04-08T22:03:56.850102Z 01O Copying tests/ext/startup_logging_json.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/startup_logging_json.phpt +2026-04-08T22:03:56.850114Z 01O Copying tests/ext/startup_logging_json_config.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/startup_logging_json_config.phpt +2026-04-08T22:03:56.850125Z 01O Copying tests/ext/startup_logging_skipif.inc to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/startup_logging_skipif.inc +2026-04-08T22:03:56.850131Z 01O Copying tests/ext/startup_logging_skipif_unix.inc to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/startup_logging_skipif_unix.inc +2026-04-08T22:03:56.850139Z 01O Copying tests/ext/startup_logging_skipif_unix_83.inc to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/startup_logging_skipif_unix_83.inc +2026-04-08T22:03:56.850146Z 01O Copying tests/ext/telemetry/broken_pipe.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/telemetry/broken_pipe.phpt +2026-04-08T22:03:56.850151Z 01O Copying tests/ext/telemetry/composer.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/telemetry/composer.phpt +2026-04-08T22:03:56.850160Z 01O Copying tests/ext/telemetry/config.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/telemetry/config.phpt +2026-04-08T22:03:57.348586Z 01O Copying tests/ext/telemetry/curl_helper.inc to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/telemetry/curl_helper.inc +2026-04-08T22:03:57.348597Z 01O Copying tests/ext/telemetry/disabled.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/telemetry/disabled.phpt +2026-04-08T22:03:57.348603Z 01O Copying tests/ext/telemetry/integration.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/telemetry/integration.phpt +2026-04-08T22:03:57.348612Z 01O Copying tests/ext/telemetry/integration_filesystem_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/telemetry/integration_filesystem_01.phpt +2026-04-08T22:03:57.348617Z 01O Copying tests/ext/telemetry/integration_filesystem_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/telemetry/integration_filesystem_02.phpt +2026-04-08T22:03:57.348623Z 01O Copying tests/ext/telemetry/integration_filesystem_03.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/telemetry/integration_filesystem_03.phpt +2026-04-08T22:03:57.348631Z 01O Copying tests/ext/telemetry/integration_filesystem_04.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/telemetry/integration_filesystem_04.phpt +2026-04-08T22:03:57.348643Z 01O Copying tests/ext/telemetry/integration_runtime_error.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/telemetry/integration_runtime_error.phpt +2026-04-08T22:03:57.849315Z 01O Copying tests/ext/telemetry/metrics_logs_created.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/telemetry/metrics_logs_created.phpt +2026-04-08T22:03:57.849328Z 01O Copying tests/ext/telemetry/metrics_spans_created.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/telemetry/metrics_spans_created.phpt +2026-04-08T22:03:57.849334Z 01O Copying tests/ext/telemetry/simple.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/telemetry/simple.phpt +2026-04-08T22:03:57.849343Z 01O Copying tests/ext/telemetry/telemetry_process_tags.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/telemetry/telemetry_process_tags.phpt +2026-04-08T22:03:57.849399Z 01O Copying tests/ext/telemetry/vendor/autoload.php to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/telemetry/vendor/autoload.php +2026-04-08T22:03:57.849406Z 01O Copying tests/ext/telemetry/vendor/composer/installed.json to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/telemetry/vendor/composer/installed.json +2026-04-08T22:03:57.849414Z 01O Copying tests/ext/test_special_attributes.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/test_special_attributes.phpt +2026-04-08T22:03:57.849419Z 01O Copying tests/ext/test_special_attributes_bis.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/test_special_attributes_bis.phpt +2026-04-08T22:03:57.849424Z 01O Copying tests/ext/traced_attribute.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/traced_attribute.phpt +2026-04-08T22:03:58.349643Z 01O Copying tests/ext/traced_attribute_delayed.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/traced_attribute_delayed.phpt +2026-04-08T22:03:58.349655Z 01O Copying tests/ext/traced_internal_functions_override_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/traced_internal_functions_override_01.phpt +2026-04-08T22:03:58.349661Z 01O Copying tests/ext/ust.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/ust.phpt +2026-04-08T22:03:58.349684Z 01O Copying tests/ext/traced_internal_functions_override_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/traced_internal_functions_override_02.phpt +2026-04-08T22:03:58.349702Z 01O Copying tests/ext/track_user_login_failure_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/track_user_login_failure_01.phpt +2026-04-08T22:03:58.349712Z 01O Copying tests/ext/track_user_login_failure_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/track_user_login_failure_02.phpt +2026-04-08T22:03:58.349722Z 01O Copying tests/ext/track_user_login_failure_03.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/track_user_login_failure_03.phpt +2026-04-08T22:03:58.349728Z 01O Copying tests/ext/track_user_login_success_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/track_user_login_success_01.phpt +2026-04-08T22:03:58.349734Z 01O Copying tests/ext/track_user_login_success_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/track_user_login_success_02.phpt +2026-04-08T22:03:58.849818Z 01O Copying tests/ext/track_user_login_success_03.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/track_user_login_success_03.phpt +2026-04-08T22:03:58.849849Z 01O Copying tests/ext/track_user_login_success_04.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/track_user_login_success_04.phpt +2026-04-08T22:03:58.849859Z 01O Copying tests/ext/track_user_login_success_05.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/track_user_login_success_05.phpt +2026-04-08T22:03:58.849894Z 01O Copying tests/ext/track_user_login_success_06.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/track_user_login_success_06.phpt +2026-04-08T22:03:58.849910Z 01O Copying tests/ext/track_user_login_success_07.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/track_user_login_success_07.phpt +2026-04-08T22:03:58.849920Z 01O Copying tests/ext/try_drop_span.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/try_drop_span.phpt +2026-04-08T22:03:58.849984Z 01O Copying tests/ext/try_drop_span_root.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/try_drop_span_root.phpt +2026-04-08T22:03:58.849995Z 01O Copying tests/ext/ust_precedence_over_ddtags.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/ust_precedence_over_ddtags.phpt +2026-04-08T22:03:59.350488Z 01O Copying tests/ext/ust_via_ddtags.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/ust_via_ddtags.phpt +2026-04-08T22:03:59.350501Z 01O Copying tests/ext/wrong-parameter-errors/DDTrace_hook_function.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/wrong-parameter-errors/DDTrace_hook_function.phpt +2026-04-08T22:03:59.350508Z 01O Copying tests/ext/wrong-parameter-errors/DDTrace_hook_method.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/wrong-parameter-errors/DDTrace_hook_method.phpt +2026-04-08T22:03:59.350517Z 01O Copying tests/ext/wrong-parameter-errors/DDTrace_trace_function.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/wrong-parameter-errors/DDTrace_trace_function.phpt +2026-04-08T22:03:59.350522Z 01O Copying tests/ext/wrong-parameter-errors/DDTrace_trace_id.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/wrong-parameter-errors/DDTrace_trace_id.phpt +2026-04-08T22:03:59.350529Z 01O Copying tests/ext/wrong-parameter-errors/DDTrace_trace_method.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/wrong-parameter-errors/DDTrace_trace_method.phpt +2026-04-08T22:03:59.350556Z 01O Copying tests/ext/wrong-parameter-errors/dd_trace_send_traces_via_thread.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/wrong-parameter-errors/dd_trace_send_traces_via_thread.phpt +2026-04-08T22:03:59.350574Z 01O Copying tests/ext/wrong-parameter-errors/set_distributed_tracing_context.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/wrong-parameter-errors/set_distributed_tracing_context.phpt +2026-04-08T22:03:59.851231Z 01O Copying tests/ext/background-sender/stubs/cgroup.docker to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/background-sender/stubs/cgroup.docker +2026-04-08T22:03:59.851272Z 01O Copying tests/ext/background-sender/stubs/cgroup.empty to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/background-sender/stubs/cgroup.empty +2026-04-08T22:03:59.851284Z 01O Copying tests/ext/background-sender/stubs/cgroup.fargate.1.4 to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/background-sender/stubs/cgroup.fargate.1.4 +2026-04-08T22:03:59.851295Z 01O cp /opt/php/debug-zts-asan/bin/../lib/php/build/run-tests.php /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/run-tests.php +2026-04-08T22:03:59.851300Z 01O sed -i 's/\bdl(/(bool)(/' /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/run-tests.php # this dl() stuff in run-tests.php is for --EXTENSIONS-- sections, which we don't use; just strip it away (see https://github.com/php/php-src/issues/15367) +2026-04-08T22:03:59.851311Z 01O USE_ZEND_ALLOC=0 USE_TRACKED_ALLOC=1 DD_TRACE_GIT_METADATA_ENABLED=0 DD_CRASHTRACKER_RECEIVER_TIMEOUT_MS=15000 DD_EXPERIMENTAL_PROPAGATE_PROCESS_TAGS_ENABLED=0 DD_SERVICE= DD_ENV= REPORT_EXIT_STATUS=1 TEST_PHP_SRCDIR=/go/src/github.com/DataDog/apm-reliability/dd-trace-php USE_TRACKED_ALLOC=1 php -n -d 'memory_limit=-1' /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/run-tests.php --asan --show-diff -n -p /usr/local/bin/php -q --shuffle -j4 -d extension=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/modules/ddtrace.so -d extension=zend_test.so -d zend_test.observer.enabled=1 -d zend_test.observer.observe_all=1 -d zend_test.observer.show_output=0 /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ +2026-04-08T22:04:00.351806Z 01O +2026-04-08T22:04:00.351815Z 01O ===================================================================== +2026-04-08T22:04:00.351820Z 01O PHP : /usr/local/bin/php +2026-04-08T22:04:00.351851Z 01O PHP_SAPI : cli +2026-04-08T22:04:00.351854Z 01O PHP_VERSION : 8.0.30 +2026-04-08T22:04:00.351858Z 01O ZEND_VERSION: 4.0.30 +2026-04-08T22:04:00.351866Z 01O PHP_OS : Linux - Linux runner-xbvgsbv-project-355-concurrent-3-uvsaicnm 6.8.0-1050-aws #53~22.04.1-Ubuntu SMP Fri Mar 13 21:34:27 UTC 2026 x86_64 +2026-04-08T22:04:00.351870Z 01O INI actual : /go/src/github.com/DataDog/apm-reliability/dd-trace-php +2026-04-08T22:04:00.351874Z 01O More .INIs : +2026-04-08T22:04:00.351880Z 01O CWD : /go/src/github.com/DataDog/apm-reliability/dd-trace-php +2026-04-08T22:04:00.351882Z 01O Extra dirs : +2026-04-08T22:04:00.351888Z 01O VALGRIND : Not used +2026-04-08T22:04:00.351893Z 01O ===================================================================== +2026-04-08T22:04:00.351896Z 01O Running selected tests. +2026-04-08T22:04:00.351899Z 01O ===================================================================== +2026-04-08T22:04:00.351905Z 01O ========= WELCOME TO THE FUTURE: run-tests PARALLEL EDITION ========= +2026-04-08T22:04:00.351908Z 01O ===================================================================== +2026-04-08T22:04:00.351912Z 01O Spawning 4 workers... Done in 0.14s +2026-04-08T22:04:00.351923Z 01O ===================================================================== +2026-04-08T22:04:00.351926Z 01O +2026-04-08T22:04:00.852467Z 01O PASS Test that call_user_func_array can trace inside a namespace [tmp/build_extension/tests/ext/call_user_func/namespaced-array.phpt] +2026-04-08T22:04:00.852480Z 01O TEST 1/647 [4/4 concurrent test workers running] PASS [Sandbox] Hook implementations of interface methods on direct implementor only [tmp/build_extension/tests/ext/sandbox/interface_inherit_hook.phpt] +2026-04-08T22:04:00.852490Z 01O TEST 2/647 [4/4 concurrent test workers running] PASS [regression] Properly skip nested dropped spans [tmp/build_extension/tests/ext/sandbox-regression/nested_dropped_spans.phpt] +2026-04-08T22:04:00.852500Z 01O TEST 3/647 [4/4 concurrent test workers running] PASS [Prehook] Variadic arguments are passed to tracing closure for internal functions [tmp/build_extension/tests/ext/sandbox-prehook/variadic_args_internal.phpt] +2026-04-08T22:04:00.852505Z 01O TEST 4/647 [4/4 concurrent test workers running] PASS Exceptions do not close the span that catches it [tmp/build_extension/tests/ext/sandbox/exception_does_not_close_span_that_catches.phpt] +2026-04-08T22:04:00.852511Z 01O TEST 5/647 [4/4 concurrent test workers running] SKIP E_ERROR fatal errors are tracked from hitting the memory limit [tmp/build_extension/tests/ext/sandbox/fatal_errors_are_tracked_002.phpt] reason: Zend memory manager required +2026-04-08T22:04:00.852529Z 01O TEST 6/647 [4/4 concurrent test workers running] PASS Tracing Fake Closures via install_hook() [tmp/build_extension/tests/ext/sandbox/install_hook/trace_closure_from_callable.phpt] +2026-04-08T22:04:00.852539Z 01O TEST 7/647 [4/4 concurrent test workers running] PASS Post fields parameters should be retrieved and redacted if needed [tmp/build_extension/tests/ext/root_span_url_with_post_fields.phpt] +2026-04-08T22:04:00.852545Z 01O TEST 8/647 [4/4 concurrent test workers running] PASS Empty post request without whitelisting [tmp/build_extension/tests/ext/root_span_url_with_post_no_param_set.phpt] +2026-04-08T22:04:00.852599Z 01O TEST 9/647 [4/4 concurrent test workers running] PASS rate limiter disabled [tmp/build_extension/tests/ext/limiter/001-limiter-disabled.phpt] +2026-04-08T22:04:00.852603Z 01O TEST 10/647 [4/4 concurrent test workers running] PASS All open internal spans are marked with the fatal error [tmp/build_extension/tests/ext/sandbox/fatal_errors_are_tracked_005.phpt] +2026-04-08T22:04:00.852611Z 01O TEST 11/647 [4/4 concurrent test workers running] PASS Transmit distributed header information to spans via single B3 header without sampling decision [tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_inherit_b3-single-span_no_sampling.phpt] +2026-04-08T22:04:00.852618Z 01O TEST 12/647 [4/4 concurrent test workers running] PASS DDTrace\hook_function posthook is called at exit [tmp/build_extension/tests/ext/sandbox/hook_function/posthook_exit_01.phpt] +2026-04-08T22:04:00.852623Z 01O TEST 13/647 [4/4 concurrent test workers running] SKIP background sender restores effective capabilities from permitted set [tmp/build_extension/tests/ext/background-sender/background_sender_restores_capabilities.phpt] reason: leak sanitizer crashes +2026-04-08T22:04:00.852628Z 01O TEST 14/647 [4/4 concurrent test workers running] PASS DDTrace\hook_function returns false quietly when no hook is passed [tmp/build_extension/tests/ext/sandbox/hook_function/02.phpt] +2026-04-08T22:04:00.852636Z 01O TEST 15/647 [4/4 concurrent test workers running] PASS Override arguments of a function with default arguments [tmp/build_extension/tests/ext/sandbox/install_hook/override_default_argument.phpt] +2026-04-08T22:04:00.852641Z 01O TEST 16/647 [4/4 concurrent test workers running] PASS Test \datadog\appsec\v2\track_user_login_failure [tmp/build_extension/tests/ext/track_user_login_failure_01.phpt] +2026-04-08T22:04:00.852646Z 01O TEST 17/647 [4/4 concurrent test workers running] PASS Setting custom distributed header information [tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_overwrite.phpt] +2026-04-08T22:04:00.852656Z 01O TEST 18/647 [4/4 concurrent test workers running] PASS Exceptions from original call rethrown in tracing closure [tmp/build_extension/tests/ext/sandbox/exceptions_in_original_call_rethrown_in_tracing_closure.phpt] +2026-04-08T22:04:00.852662Z 01O TEST 19/647 [4/4 concurrent test workers running] PASS priority_sampling rule with name match, using glob [tmp/build_extension/tests/ext/priority_sampling/021-rule-name-as-glob-with-question-mark.phpt] +2026-04-08T22:04:00.852679Z 01O TEST 20/647 [4/4 concurrent test workers running] +2026-04-08T22:04:01.353205Z 01O+ PASS Test baggage span tags default behavior [tmp/build_extension/tests/ext/distributed_tracing/baggage/baggage_span_tags.phpt] +2026-04-08T22:04:01.353215Z 01O TEST 21/647 [4/4 concurrent test workers running] PASS priority_sampling is ignored when asm standalone is enabled [tmp/build_extension/tests/ext/priority_sampling/asm-standalone.phpt] +2026-04-08T22:04:01.353222Z 01O TEST 22/647 [4/4 concurrent test workers running] PASS DDTrace\add_global_tag() on all sorts of spans [tmp/build_extension/tests/ext/add_global_tag_on_userland_and_internal_spans.phpt] +2026-04-08T22:04:01.353296Z 01O TEST 23/647 [4/4 concurrent test workers running] PASS HTTP endpoint resource renaming with DD_TRACE_RESOURCE_RENAMING_ENABLED=true [tmp/build_extension/tests/ext/http_endpoint_resource_renaming_basic.phpt] +2026-04-08T22:04:01.353305Z 01O TEST 24/647 [4/4 concurrent test workers running] PASS Test file inclusion hooking [tmp/build_extension/tests/ext/sandbox/install_hook/hook_file.phpt] +2026-04-08T22:04:01.353314Z 01O TEST 25/647 [4/4 concurrent test workers running] PASS Test consume_distributed_tracing_headers() with conflicting span_ids in tracestate and traceparent headers [tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_conflicting_span_ids_tracecontext.phpt] +2026-04-08T22:04:01.353319Z 01O TEST 26/647 [4/4 concurrent test workers running] PASS Request init hook ignores exceptions [tmp/build_extension/tests/ext/autoload-php-files/ignores_exceptions.phpt] +2026-04-08T22:04:01.353325Z 01O TEST 27/647 [4/4 concurrent test workers running] PASS Test DDTrace\close_spans_until [tmp/build_extension/tests/ext/close_spans_until.phpt] +2026-04-08T22:04:01.353331Z 01O TEST 28/647 [4/4 concurrent test workers running] PASS DDTrace\hook_method prehook is passed the correct args with inheritance [tmp/build_extension/tests/ext/sandbox/hook_method/prehook_04.phpt] +2026-04-08T22:04:01.353336Z 01O TEST 29/647 [4/4 concurrent test workers running] PASS Logs aliases are correctly handled [tmp/build_extension/tests/ext/alias_logs.phpt] +2026-04-08T22:04:01.353343Z 01O TEST 30/647 [4/4 concurrent test workers running] PASS Test max_per_second single span limiting with multiple buckets [tmp/build_extension/tests/ext/single-span_sampling/limited-single-span-with-match.phpt] +2026-04-08T22:04:01.353347Z 01O TEST 31/647 [4/4 concurrent test workers running] +2026-04-08T22:04:01.853549Z 01O+ PASS dd_trace_method() is aliased to DDTrace\trace_method() [tmp/build_extension/tests/ext/sandbox/dd_trace_method_alias.phpt] +2026-04-08T22:04:01.853566Z 01O TEST 32/647 [4/4 concurrent test workers running] PASS [Prehook Regression] New static instantiates from expected class [tmp/build_extension/tests/ext/sandbox-prehook/new_static.phpt] +2026-04-08T22:04:01.853573Z 01O TEST 33/647 [4/4 concurrent test workers running] PASS DDTrace\ExceptionSpanEvent serialization with overridden attributes [tmp/build_extension/tests/ext/request-replayer/dd_trace_exception_span_event.phpt] +2026-04-08T22:04:01.853582Z 01O TEST 34/647 [4/4 concurrent test workers running] PASS DDTrace\hook_method posthook is passed the correct args [tmp/build_extension/tests/ext/sandbox/hook_method/posthook_03.phpt] +2026-04-08T22:04:01.853589Z 01O TEST 35/647 [4/4 concurrent test workers running] PASS Test that call_user_func can trace in global scope [tmp/build_extension/tests/ext/call_user_func/not-namespaced.phpt] +2026-04-08T22:04:01.853594Z 01O TEST 36/647 [4/4 concurrent test workers running] PASS Span is dropped when tracing closure returns false [tmp/build_extension/tests/ext/sandbox/drop_spans.phpt] +2026-04-08T22:04:01.853658Z 01O TEST 37/647 [4/4 concurrent test workers running] PASS Installing a live debugger log probe [tmp/build_extension/tests/ext/live-debugger/debugger_log_probe.phpt] +2026-04-08T22:04:01.853668Z 01O TEST 38/647 [4/4 concurrent test workers running] SKIP Don't send crashtracker report when segmentation fault signal is raised and config disables it [tmp/build_extension/tests/ext/crashtracker_segfault_disabled.phpt] reason: : intentionally causes segfaults +2026-04-08T22:04:01.853674Z 01O TEST 39/647 [4/4 concurrent test workers running] +2026-04-08T22:04:02.354214Z 01O+ PASS [Sandbox regression] Trace variadic functions and methods [tmp/build_extension/tests/ext/sandbox-regression/variable_length_parameter_list.phpt] +2026-04-08T22:04:02.354225Z 01O TEST 40/647 [4/4 concurrent test workers running] PASS hook_function posthook should have access only to public members [tmp/build_extension/tests/ext/sandbox/hook_function/posthook_access_01.phpt] +2026-04-08T22:04:02.354232Z 01O TEST 41/647 [4/4 concurrent test workers running] PASS Replacing the return value of a generator instantiation in the begin hook [tmp/build_extension/tests/ext/sandbox/install_hook/replace_generator.phpt] +2026-04-08T22:04:02.354256Z 01O TEST 42/647 [4/4 concurrent test workers running] PASS New static instantiates from expected class [tmp/build_extension/tests/ext/sandbox/new_static.phpt] +2026-04-08T22:04:02.354264Z 01O TEST 43/647 [4/4 concurrent test workers running] PASS Force flush the traces mid-way through a trace [tmp/build_extension/tests/ext/force_flush_traces.phpt] +2026-04-08T22:04:02.354272Z 01O TEST 44/647 [4/4 concurrent test workers running] PASS Test \datadog\appsec\v2\track_user_login_success when user is an array [tmp/build_extension/tests/ext/track_user_login_success_02.phpt] +2026-04-08T22:04:02.354281Z 01O TEST 45/647 [4/4 concurrent test workers running] PASS Installing a live debugger span probe on a class [tmp/build_extension/tests/ext/live-debugger/debugger_span_probe_class.phpt] +2026-04-08T22:04:02.354289Z 01O TEST 46/647 [4/4 concurrent test workers running] PASS Startup logging config from JSON fetched at runtime [tmp/build_extension/tests/ext/startup_logging_json_config.phpt] +2026-04-08T22:04:02.354297Z 01O TEST 47/647 [4/4 concurrent test workers running] PASS Span stacks are fully reset when the tracer is disabled and re-enabled [tmp/build_extension/tests/ext/span_stack/stack_dropped_parent.phpt] +2026-04-08T22:04:02.354308Z 01O TEST 48/647 [4/4 concurrent test workers running] PASS DDTrace\hook_function posthook basic functionality [tmp/build_extension/tests/ext/sandbox/hook_function/posthook_01.phpt] +2026-04-08T22:04:02.354313Z 01O TEST 49/647 [4/4 concurrent test workers running] PASS DDTrace\hook_function returns false with diagnostic when no hook is passed [tmp/build_extension/tests/ext/sandbox/hook_function/03.phpt] +2026-04-08T22:04:02.354318Z 01O TEST 50/647 [4/4 concurrent test workers running] +2026-04-08T22:04:02.854899Z 01O+ PASS Test creating swapping traces [tmp/build_extension/tests/ext/span_stack/span_trace_swap.phpt] +2026-04-08T22:04:02.854911Z 01O TEST 51/647 [4/4 concurrent test workers running] PASS deferred loading only happens once, even if dispatch is not overwritten [tmp/build_extension/tests/ext/sandbox/deferred_load_attempt_loading_once.phpt] +2026-04-08T22:04:02.854959Z 01O TEST 52/647 [4/4 concurrent test workers running] PASS Test 128 bit generation [tmp/build_extension/tests/ext/generate_128_bit_trace_id.phpt] +2026-04-08T22:04:02.854965Z 01O TEST 53/647 [4/4 concurrent test workers running] PASS Foo [tmp/build_extension/tests/ext/ust.phpt] +2026-04-08T22:04:02.854973Z 01O TEST 54/647 [4/4 concurrent test workers running] PASS DDTrace\active_span basic functionality [tmp/build_extension/tests/ext/active_span.phpt] +2026-04-08T22:04:02.854979Z 01O TEST 55/647 [4/4 concurrent test workers running] PASS deferred loading doesn't crash if integration loading fails [tmp/build_extension/tests/ext/sandbox/deferred_load_missing_interface.phpt] +2026-04-08T22:04:02.854985Z 01O TEST 56/647 [4/4 concurrent test workers running] PASS [Prehook Regression] Exit gracefully handles a dropped span [tmp/build_extension/tests/ext/sandbox-prehook/exit_and_drop_span.phpt] +2026-04-08T22:04:02.854993Z 01O TEST 57/647 [4/4 concurrent test workers running] PASS Ensure tracing closure's $retval arg is null if invoked due to exit() [tmp/build_extension/tests/ext/sandbox/close-on-exit-retval.phpt] +2026-04-08T22:04:02.855001Z 01O TEST 58/647 [4/4 concurrent test workers running] PASS Test baggage header interaction with items limit configured [tmp/build_extension/tests/ext/distributed_tracing/baggage/distributed_trace_baggage_configured_items.phpt] +2026-04-08T22:04:02.855007Z 01O TEST 59/647 [4/4 concurrent test workers running] PASS Spans are not automatically flushed when auto-flushing disabled [tmp/build_extension/tests/ext/sandbox/manual_flush.phpt] +2026-04-08T22:04:02.855017Z 01O TEST 60/647 [4/4 concurrent test workers running] PASS _dd.p.ksr propagated tag is NOT set for default sampling (only for explicit agent rates) [tmp/build_extension/tests/ext/priority_sampling/026-ksr-tag-default-sampling.phpt] +2026-04-08T22:04:02.855021Z 01O TEST 61/647 [4/4 concurrent test workers running] PASS [Prehook] Tracing closure does not have access to return value [tmp/build_extension/tests/ext/sandbox-prehook/closure_arg_retval.phpt] +2026-04-08T22:04:02.855028Z 01O TEST 62/647 [4/4 concurrent test workers running] PASS Test \datadog\appsec\v2\track_user_login_success id should be string to be sent [tmp/build_extension/tests/ext/track_user_login_success_05.phpt] +2026-04-08T22:04:02.855036Z 01O TEST 63/647 [4/4 concurrent test workers running] PASS DDTrace\trace_method() binds the called object to the tracing closure [tmp/build_extension/tests/ext/sandbox/dd_trace_method_binds_called_object.phpt] +2026-04-08T22:04:02.855039Z 01O TEST 64/647 [4/4 concurrent test workers running] +2026-04-08T22:04:03.355640Z 01O+ PASS [Prehook] Arguments are copied before mutation can occur [tmp/build_extension/tests/ext/sandbox-prehook/args_copy_before_mutation.phpt] +2026-04-08T22:04:03.355660Z 01O TEST 65/647 [4/4 concurrent test workers running] PASS DDTrace\trace_function() can trace internal functions with internal spans [tmp/build_extension/tests/ext/sandbox/dd_trace_function_internal.phpt] +2026-04-08T22:04:03.355708Z 01O TEST 66/647 [4/4 concurrent test workers running] PASS priority_sampling user reject [tmp/build_extension/tests/ext/priority_sampling/002-user-reject.phpt] +2026-04-08T22:04:03.355718Z 01O TEST 67/647 [4/4 concurrent test workers running] PASS Starting a trace in a prehook and closing it in the posthook while an active one exists does not confuse the limiter [tmp/build_extension/tests/ext/sandbox-regression/limiter_reset_flush_with_open_spans.phpt] +2026-04-08T22:04:03.355723Z 01O TEST 68/647 [4/4 concurrent test workers running] PASS Spans are automatically flushed when auto-flushing enabled [tmp/build_extension/tests/ext/sandbox/auto_flush.phpt] +2026-04-08T22:04:03.355746Z 01O TEST 69/647 [4/4 concurrent test workers running] SKIP Test installing hook on trampoline fake closure [tmp/build_extension/tests/ext/sandbox-regression/trampoline_install_fake_closure_hook.phpt] reason: : The ... operator is a PHP 8.1+ feature +2026-04-08T22:04:03.355756Z 01O TEST 70/647 [4/4 concurrent test workers running] PASS Setting custom distributed header information [tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_span_link_from_headers.phpt] +2026-04-08T22:04:03.355764Z 01O TEST 71/647 [4/4 concurrent test workers running] PASS Test 128-bit trace id retrieval [tmp/build_extension/tests/ext/retrieve_128_bit_trace_id.phpt] +2026-04-08T22:04:03.355772Z 01O TEST 72/647 [4/4 concurrent test workers running] PASS Distributed tracestate consumption should produce valid tracestate header [tmp/build_extension/tests/ext/distributed_tracestate_consumption.phpt] +2026-04-08T22:04:03.355778Z 01O TEST 73/647 [4/4 concurrent test workers running] PASS DD_AGENT_HOST with IPv6 works [tmp/build_extension/tests/ext/background-sender/background_sender_ipv6_support.phpt] +2026-04-08T22:04:03.355784Z 01O TEST 74/647 [4/4 concurrent test workers running] PASS Keep spans in limited mode (internal functions) [tmp/build_extension/tests/ext/sandbox/keep_spans_in_limited_tracing_internal_functions.phpt] +2026-04-08T22:04:03.355790Z 01O TEST 75/647 [4/4 concurrent test workers running] +2026-04-08T22:04:03.863126Z 01O+ PASS [Sandbox regression] Method can be traced and called from tracing closure [tmp/build_extension/tests/ext/sandbox-regression/method_returning_array.phpt] +2026-04-08T22:04:03.863140Z 01O TEST 76/647 [4/4 concurrent test workers running] PASS Test CurlMulti during garbage collection [tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_multi_exec_003.phpt] +2026-04-08T22:04:03.863147Z 01O TEST 77/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Trace a function and method before it is defined [tmp/build_extension/tests/ext/sandbox-regression/allow_overriding_before_overrided_methods_functions_are_defined.phpt] +2026-04-08T22:04:03.863155Z 01O TEST 78/647 [4/4 concurrent test workers running] PASS Test creating a new span stack on top level [tmp/build_extension/tests/ext/span_stack/start_top_level_span_stack.phpt] +2026-04-08T22:04:03.863160Z 01O TEST 79/647 [4/4 concurrent test workers running] PASS manual.keep will overwrite a rejected distributed sampling decision [tmp/build_extension/tests/ext/priority_sampling/023-manual.keep-distributed_overwrite.phpt] +2026-04-08T22:04:03.863211Z 01O TEST 80/647 [4/4 concurrent test workers running] PASS Return value from finally block is passed to tracing closure [tmp/build_extension/tests/ext/sandbox/exception_handled_with_finally.phpt] +2026-04-08T22:04:03.863218Z 01O TEST 81/647 [4/4 concurrent test workers running] PASS Gracefully handle out-of-sync spans in closure itself [user][default properties] [tmp/build_extension/tests/ext/sandbox/spans_out_of_sync_06.phpt] +2026-04-08T22:04:03.863222Z 01O TEST 82/647 [4/4 concurrent test workers running] PASS Test that the sandbox API has non-zero durations [tmp/build_extension/tests/ext/sandbox/non-zero_duration.phpt] +2026-04-08T22:04:03.863228Z 01O TEST 83/647 [4/4 concurrent test workers running] PASS background sender happy path [tmp/build_extension/tests/ext/dd_trace_send_traces_via_thread_001.phpt] +2026-04-08T22:04:03.863235Z 01O TEST 84/647 [4/4 concurrent test workers running] PASS Check the library config files [tmp/build_extension/tests/ext/library_config/local_config_overloads_ini.phpt] +2026-04-08T22:04:03.863249Z 01O TEST 85/647 [4/4 concurrent test workers running] PASS Startup logging from JSON fetched at runtime [tmp/build_extension/tests/ext/startup_logging_json.phpt] +2026-04-08T22:04:03.863255Z 01O TEST 86/647 [4/4 concurrent test workers running] +2026-04-08T22:04:04.356971Z 01O+ PASS Test two traces get trace source from tags [tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_asm_standalone_07.phpt] +2026-04-08T22:04:04.356984Z 01O TEST 87/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Userland method is traced [tmp/build_extension/tests/ext/sandbox-regression/simple_method_hook.phpt] +2026-04-08T22:04:04.356992Z 01O TEST 88/647 [4/4 concurrent test workers running] PASS Verify trace source tag is sent on asm event [tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_existing_headers_004.phpt] +2026-04-08T22:04:04.356999Z 01O TEST 89/647 [4/4 concurrent test workers running] PASS Verify the user agent is added to the root span on serialization. [tmp/build_extension/tests/ext/root_span_http_useragent.phpt] +2026-04-08T22:04:04.357004Z 01O TEST 90/647 [4/4 concurrent test workers running] PASS DDTrace\trace_method() can trace with internal spans [tmp/build_extension/tests/ext/sandbox/dd_trace_method.phpt] +2026-04-08T22:04:04.357009Z 01O TEST 91/647 [4/4 concurrent test workers running] PASS Coms test no memory leaks with empty data store [tmp/build_extension/tests/ext/dd_trace_coms_empty_stacks_correctly_recycled.phpt] +2026-04-08T22:04:04.357017Z 01O TEST 92/647 [4/4 concurrent test workers running] PASS DDTrace\hook_method posthook is called with an exception; args are still good [tmp/build_extension/tests/ext/sandbox/hook_method/posthook_exceptions_01.phpt] +2026-04-08T22:04:04.357023Z 01O TEST 93/647 [4/4 concurrent test workers running] PASS Wrong tags parameter passed to set_distributed_tracing_context [tmp/build_extension/tests/ext/set_distributed_tracing_context_wrong_param.phpt] +2026-04-08T22:04:04.357029Z 01O TEST 94/647 [4/4 concurrent test workers running] SKIP Tracing Closures via install_hook() [tmp/build_extension/tests/ext/sandbox/install_hook/trace_closure_ge_php_84.phpt] reason: : test only stable on PHP >= 8.4 +2026-04-08T22:04:04.357100Z 01O TEST 95/647 [4/4 concurrent test workers running] PASS Distributed tracing headers propagate with existing headers set with curl_setopt_array() [tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_existing_headers_002.phpt] +2026-04-08T22:04:04.357119Z 01O TEST 96/647 [4/4 concurrent test workers running] PASS Test baggage round-trip propagation and multiple header handling [tmp/build_extension/tests/ext/distributed_tracing/baggage/distributed_trace_baggage_context_propagated.phpt] +2026-04-08T22:04:04.357131Z 01O TEST 97/647 [4/4 concurrent test workers running] PASS priority_sampling with manual.drop [tmp/build_extension/tests/ext/priority_sampling/018-manual.drop.phpt] +2026-04-08T22:04:04.357141Z 01O TEST 98/647 [4/4 concurrent test workers running] +2026-04-08T22:04:04.857547Z 01O+ PASS hook_method posthook is called with the correct scope (no override) [tmp/build_extension/tests/ext/sandbox/hook_method/posthook_scope_01.phpt] +2026-04-08T22:04:04.857562Z 01O TEST 99/647 [4/4 concurrent test workers running] PASS Distributed tracing headers propagate with existing headers set with curl_setopt() [tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_existing_headers_001.phpt] +2026-04-08T22:04:04.857569Z 01O TEST 100/647 [4/4 concurrent test workers running] PASS Span metadata is safely converted to strings without errors or exceptions [tmp/build_extension/tests/ext/sandbox/safe_to_string_metadata.phpt] +2026-04-08T22:04:04.857577Z 01O TEST 101/647 [4/4 concurrent test workers running] PASS [Prehook Regression] DDTrace\trace_method() binds the called object to the tracing closure [tmp/build_extension/tests/ext/sandbox-prehook/dd_trace_method_binds_called_object.phpt] +2026-04-08T22:04:04.857582Z 01O TEST 102/647 [4/4 concurrent test workers running] PASS Inferred span's service shouldn't change on ini_change of datadog.service [tmp/build_extension/tests/ext/inferred_proxy/alter_service.phpt] +2026-04-08T22:04:04.857589Z 01O TEST 103/647 [4/4 concurrent test workers running] PASS Distributed tracing span is generated for file_get_contents() [tmp/build_extension/tests/ext/integrations/http_streams/distributed_tracing_http_streams.phpt] +2026-04-08T22:04:04.857596Z 01O TEST 104/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Hook implementations of abstract methods [tmp/build_extension/tests/ext/sandbox-regression/abstract_method_hook.phpt] +2026-04-08T22:04:04.857601Z 01O TEST 105/647 [4/4 concurrent test workers running] PASS hook_method prehook is called with the correct scope (no override) [tmp/build_extension/tests/ext/sandbox/hook_method/prehook_scope_01.phpt] +2026-04-08T22:04:04.857606Z 01O TEST 106/647 [4/4 concurrent test workers running] PASS Empty referrer hostname from HTTP headers [tmp/build_extension/tests/ext/referrer_extraction_04.phpt] +2026-04-08T22:04:04.857616Z 01O TEST 107/647 [4/4 concurrent test workers running] PASS Keep spans in limited mode (internal methods) [tmp/build_extension/tests/ext/sandbox/keep_spans_in_limited_tracing_internal_methods.phpt] +2026-04-08T22:04:04.857684Z 01O TEST 108/647 [4/4 concurrent test workers running] +2026-04-08T22:04:05.358282Z 01O+ PASS DDTrace\hook_function prehook is passed the correct args [tmp/build_extension/tests/ext/sandbox/hook_function/prehook_03.phpt] +2026-04-08T22:04:05.358296Z 01O TEST 109/647 [4/4 concurrent test workers running] PASS Test that call_user_func can trace inside a namespace [tmp/build_extension/tests/ext/call_user_func/namespaced.phpt] +2026-04-08T22:04:05.358304Z 01O TEST 110/647 [4/4 concurrent test workers running] PASS Run sandbox closures for open spans on exit [tmp/build_extension/tests/ext/sandbox/close-on-exit.phpt] +2026-04-08T22:04:05.358313Z 01O TEST 111/647 [4/4 concurrent test workers running] PASS Process tag value normalization [tmp/build_extension/tests/ext/process_tag_value_normalization.phpt] +2026-04-08T22:04:05.358317Z 01O TEST 112/647 [4/4 concurrent test workers running] PASS Sanity check when extension is disabled [tmp/build_extension/tests/ext/extension_disabled.phpt] +2026-04-08T22:04:05.358322Z 01O TEST 113/647 [4/4 concurrent test workers running] +2026-04-08T22:04:05.858953Z 01O+ PASS Exceptions and errors are ignored when inside a tracing closure [tmp/build_extension/tests/ext/sandbox/exceptions_and_errors_are_ignored_in_tracing_closure.phpt] +2026-04-08T22:04:05.858965Z 01O TEST 114/647 [4/4 concurrent test workers running] PASS IPv6 address in referrer header [tmp/build_extension/tests/ext/referrer_extraction_05.phpt] +2026-04-08T22:04:05.858972Z 01O TEST 115/647 [4/4 concurrent test workers running] PASS Root span with http.url and obfuscated query string [tmp/build_extension/tests/ext/root_span_url_with_query_params_obfuscation.phpt] +2026-04-08T22:04:05.858980Z 01O TEST 116/647 [4/4 concurrent test workers running] PASS Test \datadog\appsec\v2\track_user_login_success id is not mandatory on user object [tmp/build_extension/tests/ext/track_user_login_success_04.phpt] +2026-04-08T22:04:05.858984Z 01O TEST 117/647 [4/4 concurrent test workers running] PASS Test exception replay [tmp/build_extension/tests/ext/live-debugger/exception-replay_001.phpt] +2026-04-08T22:04:05.858990Z 01O TEST 118/647 [4/4 concurrent test workers running] PASS DDTrace\hook_function prehook error is sandboxed [tmp/build_extension/tests/ext/sandbox/hook_function/prehook_error_01.phpt] +2026-04-08T22:04:05.859020Z 01O TEST 119/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Traced functions and methods are untraced with reset [tmp/build_extension/tests/ext/sandbox-regression/reset_configured_overrides.phpt] +2026-04-08T22:04:05.859034Z 01O TEST 120/647 [4/4 concurrent test workers running] +2026-04-08T22:04:06.359734Z 01O+ PASS Process tags are added to root span when enabled [tmp/build_extension/tests/ext/process_tags.phpt] +2026-04-08T22:04:06.359745Z 01O TEST 121/647 [4/4 concurrent test workers running] PASS Inherit some global metadata from parent span [tmp/build_extension/tests/ext/inherit_meta_from_parent.phpt] +2026-04-08T22:04:06.359751Z 01O TEST 122/647 [4/4 concurrent test workers running] PASS Die()'ing in the sandbox is properly caught [tmp/build_extension/tests/ext/sandbox/die_in_sandbox.phpt] +2026-04-08T22:04:06.359807Z 01O TEST 123/647 [4/4 concurrent test workers running] PASS Tracing Closures via install_hook() [tmp/build_extension/tests/ext/sandbox/install_hook/trace_closure.phpt] +2026-04-08T22:04:06.359816Z 01O TEST 124/647 [4/4 concurrent test workers running] PASS Test remote config request payload [tmp/build_extension/tests/ext/remote_config/rc_process_tags.phpt] +2026-04-08T22:04:06.359944Z 01O TEST 125/647 [4/4 concurrent test workers running] +2026-04-08T22:04:06.860537Z 01O+ PASS Verify the client ip is added when x-forwarded-for header is present. [tmp/build_extension/tests/ext/root_span_http_client_ip_custom_header.phpt] +2026-04-08T22:04:06.860547Z 01O TEST 126/647 [4/4 concurrent test workers running] PASS hook_method posthook is called with the correct scope (parent) [tmp/build_extension/tests/ext/sandbox/hook_method/posthook_scope_03.phpt] +2026-04-08T22:04:06.860553Z 01O TEST 127/647 [4/4 concurrent test workers running] PASS Resource is replaced by name if null-ish [tmp/build_extension/tests/ext/sandbox/span_resource_serialization.phpt] +2026-04-08T22:04:06.860560Z 01O TEST 128/647 [4/4 concurrent test workers running] PASS Test DDTrace\SpanData::$parent [tmp/build_extension/tests/ext/span_with_parent_property_access.phpt] +2026-04-08T22:04:06.860565Z 01O TEST 129/647 [4/4 concurrent test workers running] SKIP Execute __autoload() if present [tmp/build_extension/tests/ext/autoload-php-files/legacy_autoloader.phpt] reason: : __autoload was removed in PHP 8 +2026-04-08T22:04:06.860570Z 01O TEST 130/647 [4/4 concurrent test workers running] PASS Test that we don't leak in a set-up similar to CakePHP [tmp/build_extension/tests/ext/sandbox/cake_02.phpt] +2026-04-08T22:04:06.860579Z 01O TEST 131/647 [4/4 concurrent test workers running] PASS DDTrace\hook_method posthook is called at exit (shutdown handler) [tmp/build_extension/tests/ext/sandbox/hook_method/posthook_exit_02.phpt] +2026-04-08T22:04:06.860584Z 01O TEST 132/647 [4/4 concurrent test workers running] PASS _dd.p.ksr rounds small rates correctly at 6-decimal boundary [tmp/build_extension/tests/ext/priority_sampling/030-ksr-tag-rounding-boundary.phpt] +2026-04-08T22:04:06.860611Z 01O TEST 133/647 [4/4 concurrent test workers running] PASS E_USER_ERROR fatal errors are tracked from userland [tmp/build_extension/tests/ext/sandbox/fatal_errors_are_tracked_004.phpt] +2026-04-08T22:04:06.860619Z 01O TEST 134/647 [4/4 concurrent test workers running] +2026-04-08T22:04:07.361119Z 01O+ PASS Test internal functions are hooked within JIT [tmp/build_extension/tests/ext/sandbox/internal_hook_jit.phpt] +2026-04-08T22:04:07.361134Z 01O TEST 135/647 [4/4 concurrent test workers running] PASS Sample rate is not changed to 0 after first call during a minute when there is appsec upstream [tmp/build_extension/tests/ext/background-sender/agent_sampling-standalone-asm_03.phpt] +2026-04-08T22:04:07.361142Z 01O TEST 136/647 [4/4 concurrent test workers running] PASS Should create parent and child spans for error [tmp/build_extension/tests/ext/inferred_proxy/error_propagated.phpt] +2026-04-08T22:04:07.361196Z 01O TEST 137/647 [4/4 concurrent test workers running] PASS hook_method prehook is called with the correct scope (parent) [tmp/build_extension/tests/ext/sandbox/hook_method/prehook_scope_02.phpt] +2026-04-08T22:04:07.361328Z 01O TEST 138/647 [4/4 concurrent test workers running] +2026-04-08T22:04:07.861525Z 01O+ PASS Root span without query string in http.url [tmp/build_extension/tests/ext/root_span_url_without_query_params.phpt] +2026-04-08T22:04:07.861536Z 01O TEST 139/647 [4/4 concurrent test workers running] PASS Exceptions thrown in tracing closure and original call [tmp/build_extension/tests/ext/sandbox/exceptions_in_tracing_closure_and_original_call.phpt] +2026-04-08T22:04:07.861542Z 01O TEST 140/647 [4/4 concurrent test workers running] PASS Span Link serialization with non-null EG(exception) doesn't fail [tmp/build_extension/tests/ext/request-replayer/dd_trace_span_link_with_exception.phpt] +2026-04-08T22:04:07.861552Z 01O TEST 141/647 [4/4 concurrent test workers running] PASS Exceptions are handled for the correct catch block [tmp/build_extension/tests/ext/sandbox/exception_handled_for_correct_catch_block.phpt] +2026-04-08T22:04:07.861560Z 01O TEST 142/647 [4/4 concurrent test workers running] PASS Test baggage span tags wildcard [tmp/build_extension/tests/ext/distributed_tracing/baggage/baggage_span_tags_wildcard.phpt] +2026-04-08T22:04:07.861565Z 01O TEST 143/647 [4/4 concurrent test workers running] PASS URL with special characters in host part [tmp/build_extension/tests/ext/referrer_extraction_02.phpt] +2026-04-08T22:04:07.861575Z 01O TEST 144/647 [4/4 concurrent test workers running] PASS Ensure that if a user adds an internal function we already trace to traced internal functions list that it doesn't misbehave [tmp/build_extension/tests/ext/traced_internal_functions_override_02.phpt] +2026-04-08T22:04:07.861579Z 01O TEST 145/647 [4/4 concurrent test workers running] +2026-04-08T22:04:08.362247Z 01O+ PASS Tracing Closures via install_hook() [tmp/build_extension/tests/ext/sandbox/install_hook/trace_generator.phpt] +2026-04-08T22:04:08.362265Z 01O TEST 146/647 [4/4 concurrent test workers running] PASS overrideArguments() works with JIT (Issue #2174) [tmp/build_extension/tests/ext/sandbox/install_hook/override_argument_jit.phpt] +2026-04-08T22:04:08.362275Z 01O TEST 147/647 [4/4 concurrent test workers running] PASS [Prehook Regression] Span is dropped when tracing closure returns false [tmp/build_extension/tests/ext/sandbox-prehook/drop_spans.phpt] +2026-04-08T22:04:08.362286Z 01O TEST 148/647 [4/4 concurrent test workers running] PASS priority_sampling basic rule [tmp/build_extension/tests/ext/priority_sampling/004-rule-basic.phpt] +2026-04-08T22:04:08.362290Z 01O TEST 149/647 [4/4 concurrent test workers running] PASS [Prehook Regression] DDTrace\trace_function() can trace internal functions with internal spans [tmp/build_extension/tests/ext/sandbox-prehook/dd_trace_function_internal.phpt] +2026-04-08T22:04:08.362296Z 01O TEST 150/647 [4/4 concurrent test workers running] SKIP Test fiber observing with bailout [tmp/build_extension/tests/ext/fibers/fiber_observer_bailout.phpt] reason: : Fibers are a PHP 8.1+ feature +2026-04-08T22:04:08.362360Z 01O TEST 151/647 [4/4 concurrent test workers running] PASS Test get_memory_limit() returning correct values for default [tmp/build_extension/tests/ext/get_memory_limit_default.phpt] +2026-04-08T22:04:08.362373Z 01O TEST 152/647 [4/4 concurrent test workers running] PASS Ensure the ip header priority is followed [tmp/build_extension/tests/ext/extract_ip_addr_precedence.phpt] +2026-04-08T22:04:08.362379Z 01O TEST 153/647 [4/4 concurrent test workers running] +2026-04-08T22:04:08.862903Z 01O+ PASS Check that the library config files overloads ini settings [tmp/build_extension/tests/ext/library_config/fleet_config_overloads_ini.phpt] +2026-04-08T22:04:08.862936Z 01O TEST 154/647 [4/4 concurrent test workers running] PASS Invalid _dd.p.ts - It requires at least 2 bits instead of 1 [tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_asm_standalone_05.phpt] +2026-04-08T22:04:08.862943Z 01O TEST 155/647 [4/4 concurrent test workers running] PASS [Sandbox] Hook implementations of internal interface methods [tmp/build_extension/tests/ext/sandbox/interface_hook_internal.phpt] +2026-04-08T22:04:08.862966Z 01O TEST 156/647 [4/4 concurrent test workers running] PASS [Prehook Regression] Run sandbox closures for open spans on exit [tmp/build_extension/tests/ext/sandbox-prehook/close_on_exit.phpt] +2026-04-08T22:04:08.862981Z 01O TEST 157/647 [4/4 concurrent test workers running] PASS Exception in tracing closure gets logged [tmp/build_extension/tests/ext/sandbox/exception_error_log.phpt] +2026-04-08T22:04:08.862988Z 01O TEST 158/647 [4/4 concurrent test workers running] PASS Test dd_trace_check_memory_under_limit() returning correct values [tmp/build_extension/tests/ext/check_memory_under_limit_high_user_limit.phpt] +2026-04-08T22:04:08.863011Z 01O TEST 159/647 [4/4 concurrent test workers running] +2026-04-08T22:04:09.363401Z 01O+ PASS The sidecar properly handles invalid agent urls [tmp/build_extension/tests/ext/background-sender/sidecar_handles_invalid_agent_url.phpt] +2026-04-08T22:04:09.363412Z 01O TEST 160/647 [4/4 concurrent test workers running] PASS OTEL_PROPAGATORS fallback uses correct buffer when DD_TRACE_PROPAGATION_STYLE fails to decode [tmp/build_extension/tests/ext/otel_propagators_empty_dd_propagation_style.phpt] +2026-04-08T22:04:09.363419Z 01O TEST 161/647 [4/4 concurrent test workers running] PASS DDTrace\hook_function posthook exception is sandboxed [tmp/build_extension/tests/ext/sandbox/hook_function/posthook_exceptions_02.phpt] +2026-04-08T22:04:09.363425Z 01O TEST 162/647 [4/4 concurrent test workers running] +2026-04-08T22:04:09.864111Z 01O+ PASS Distributed tracing header tags propagate with curl_exec() [tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_propagate_tags.phpt] +2026-04-08T22:04:09.864121Z 01O TEST 163/647 [4/4 concurrent test workers running] PASS Negative duration for dropped spans [tmp/build_extension/tests/ext/flush-autofinish.phpt] +2026-04-08T22:04:09.864127Z 01O TEST 164/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Tracing closures do not run when extension is disabled [tmp/build_extension/tests/ext/sandbox-regression/extension_disabled.phpt] +2026-04-08T22:04:09.864173Z 01O TEST 165/647 [4/4 concurrent test workers running] PASS DDTrace\hook_method prehook exception is sandboxed [tmp/build_extension/tests/ext/sandbox/hook_method/prehook_exceptions_01.phpt] +2026-04-08T22:04:09.864180Z 01O TEST 166/647 [4/4 concurrent test workers running] PASS Functions that use return with yield are instrumented [tmp/build_extension/tests/ext/sandbox/generator_with_return.phpt] +2026-04-08T22:04:09.864186Z 01O TEST 167/647 [4/4 concurrent test workers running] +2026-04-08T22:04:10.364433Z 01O+ PASS Extended internal classes are hookable [tmp/build_extension/tests/ext/sandbox/hook_method/hook_extended_internal_class.phpt] +2026-04-08T22:04:10.364452Z 01O TEST 168/647 [4/4 concurrent test workers running] PASS priority_sampling rule with service match [tmp/build_extension/tests/ext/priority_sampling/007-rule-service.phpt] +2026-04-08T22:04:10.364461Z 01O TEST 169/647 [4/4 concurrent test workers running] PASS Do not fail when PHP code couldn't be loaded [tmp/build_extension/tests/ext/autoload-php-files/file_not_found.phpt] +2026-04-08T22:04:10.364479Z 01O TEST 170/647 [4/4 concurrent test workers running] PASS DDTrace\hook_method supports both hooks simultaneously [tmp/build_extension/tests/ext/sandbox/hook_method/01.phpt] +2026-04-08T22:04:10.364492Z 01O TEST 171/647 [4/4 concurrent test workers running] +2026-04-08T22:04:10.865112Z 01O+ PASS Distributed tracing headers propagate with curl_multi_exec() and headers set with curl_setopt() [tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_multi_exec_existing_headers_001.phpt] +2026-04-08T22:04:10.865130Z 01O TEST 172/647 [4/4 concurrent test workers running] PASS dd_trace_serialize_msgpack() with references [tmp/build_extension/tests/ext/dd_trace_serialize_msgpack_reference.phpt] +2026-04-08T22:04:10.865138Z 01O TEST 173/647 [4/4 concurrent test workers running] SKIP generator hooking works with JIT [tmp/build_extension/tests/ext/sandbox/install_hook/trace_generator_jit.phpt] reason: : JIT is only on PHP 8, and not stable enough on PHP 8.0 +2026-04-08T22:04:10.865145Z 01O TEST 174/647 [4/4 concurrent test workers running] +2026-04-08T22:04:11.365495Z 01O+ PASS Errors from userland will be flagged on span [tmp/build_extension/tests/ext/sandbox/errors_are_flagged_from_userland.phpt] +2026-04-08T22:04:11.365507Z 01O TEST 175/647 [4/4 concurrent test workers running] PASS Tracing Functions via install_hook() [tmp/build_extension/tests/ext/sandbox/install_hook/trace_function.phpt] +2026-04-08T22:04:11.365514Z 01O TEST 176/647 [4/4 concurrent test workers running] PASS priority_sampling rule with name and service reject [tmp/build_extension/tests/ext/priority_sampling/010-rule-name-service-reject.phpt] +2026-04-08T22:04:11.365522Z 01O TEST 177/647 [4/4 concurrent test workers running] PASS Calling dd_init.php is confined to open_basedir settings [tmp/build_extension/tests/ext/autoload-php-files/dd_init_open_basedir.phpt] +2026-04-08T22:04:11.365526Z 01O TEST 178/647 [4/4 concurrent test workers running] +2026-04-08T22:04:11.866158Z 01O+ PASS _dd.p.ksr propagated tag is NOT set for manual sampling [tmp/build_extension/tests/ext/priority_sampling/027-ksr-tag-not-set-manual.phpt] +2026-04-08T22:04:11.866218Z 01O TEST 179/647 [4/4 concurrent test workers running] PASS Client IP should not be collected if ini dd_trace.client_ip_header_disabled is set to true [tmp/build_extension/tests/ext/ip_collection_05.phpt] +2026-04-08T22:04:11.866227Z 01O TEST 180/647 [4/4 concurrent test workers running] PASS Curl multi objects release order does not crash on shutdown [tmp/build_extension/tests/ext/integrations/curl/curl_release_on_shutdown.phpt] +2026-04-08T22:04:11.866237Z 01O TEST 181/647 [4/4 concurrent test workers running] PASS Test that we don't have a sigsegv in a set-up similar to CakePHP [tmp/build_extension/tests/ext/sandbox/cake_01.phpt] +2026-04-08T22:04:11.866242Z 01O TEST 182/647 [4/4 concurrent test workers running] PASS Send logs from integration [tmp/build_extension/tests/ext/telemetry/integration_runtime_error.phpt] +2026-04-08T22:04:11.866247Z 01O TEST 183/647 [4/4 concurrent test workers running] +2026-04-08T22:04:12.366867Z 01O+ PASS Span properties defaults to values if not explicitly set (methods) [tmp/build_extension/tests/ext/sandbox/default_span_properties_method.phpt] +2026-04-08T22:04:12.366881Z 01O TEST 184/647 [4/4 concurrent test workers running] PASS Invalid sidecar connection mode falls back to auto [tmp/build_extension/tests/ext/sidecar_connection_mode_invalid.phpt] +2026-04-08T22:04:12.366889Z 01O TEST 185/647 [4/4 concurrent test workers running] PASS Using a wrongly formatted DD_TRACE_PEER_SERVICE_MAPPING doesn't break the tracer [tmp/build_extension/tests/ext/peer_service_wrong_values.phpt] +2026-04-08T22:04:12.366900Z 01O TEST 186/647 [4/4 concurrent test workers running] PASS Do not throw exceptions when veryfying if class/method and function exists. [tmp/build_extension/tests/ext/do_not_check_if_class_or_function_exists_by_default.phpt] +2026-04-08T22:04:12.366906Z 01O TEST 187/647 [4/4 concurrent test workers running] PASS Short running nested forks [tmp/build_extension/tests/ext/pcntl/pcntl_fork_short_running_nested.phpt] +2026-04-08T22:04:12.366911Z 01O TEST 188/647 [4/4 concurrent test workers running] +2026-04-08T22:04:12.867527Z 01O+ PASS Settings 'datadog.log_backtrace' and 'datadog.crashtracking_enabled' are mutually exclusive [tmp/build_extension/tests/ext/crashtracker_and_backtrace_are_mutually_exclusive.phpt] +2026-04-08T22:04:12.867542Z 01O TEST 189/647 [4/4 concurrent test workers running] PASS Test baggage span tags empty config [tmp/build_extension/tests/ext/distributed_tracing/baggage/baggage_span_tags_empty.phpt] +2026-04-08T22:04:12.867548Z 01O TEST 190/647 [4/4 concurrent test workers running] PASS Test the output of \DDTrace\current_context [tmp/build_extension/tests/ext/dd_trace_current_context.phpt] +2026-04-08T22:04:12.867558Z 01O TEST 191/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Destructor is called when object goes out of scope [tmp/build_extension/tests/ext/sandbox-regression/destructor_called_when_this_gets_out_of_scope.phpt] +2026-04-08T22:04:12.867563Z 01O TEST 192/647 [4/4 concurrent test workers running] PASS Test OpenTelemetry config remapping [tmp/build_extension/tests/ext/otel_config_remapping.phpt] +2026-04-08T22:04:12.867628Z 01O TEST 193/647 [4/4 concurrent test workers running] PASS When APM tracing is disabled, if not asm event, no tags are sent [tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_existing_headers_006.phpt] +2026-04-08T22:04:12.867638Z 01O TEST 194/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Override traced function from within itself [tmp/build_extension/tests/ext/sandbox-regression/used_dispatch_should_not_free.phpt] +2026-04-08T22:04:12.867645Z 01O TEST 195/647 [4/4 concurrent test workers running] +2026-04-08T22:04:13.368349Z 01O+ PASS DDTrace\hook_method prehook is passed the correct args [tmp/build_extension/tests/ext/sandbox/hook_method/prehook_03.phpt] +2026-04-08T22:04:13.368360Z 01O TEST 196/647 [4/4 concurrent test workers running] +2026-04-08T22:04:13.868928Z 01O+ +2026-04-08T22:04:13.868938Z 01O ========DIFF======== +2026-04-08T22:04:13.868942Z 01O 001+ ================================================================= +2026-04-08T22:04:13.868950Z 01O 002+ ==4224==ERROR: AddressSanitizer: stack-use-after-return on address 0x7485c9c21c58 at pc 0x574560ce8ae1 bp 0x7ffd2d7bba00 sp 0x7ffd2d7bb9f8 +2026-04-08T22:04:13.868953Z 01O 003+ READ of size 8 at 0x7485c9c21c58 thread T0 +2026-04-08T22:04:13.868958Z 01O 001- [ddtrace] [warning] [%d] Error raised in ddtrace's integration autoloader for ddtrace\test\testsandboxedintegration: Fatal! in %sdeferred_load_fatal.php on line %d +2026-04-08T22:04:13.868965Z 01O 002- PUBLIC STATIC METHOD +2026-04-08T22:04:13.868969Z 01O 003- PUBLIC STATIC METHOD +2026-04-08T22:04:13.868973Z 01O 004+ #0 0x574560ce8ae0 in zend_observer_is_skipped_frame /usr/local/src/php/Zend/zend_observer.c:181:38 +2026-04-08T22:04:13.868982Z 01O 005+ #1 0x574560ce89fb in zend_observer_fcall_end /usr/local/src/php/Zend/zend_observer.c:221:16 +2026-04-08T22:04:13.868985Z 01O 006+ #2 0x574560ce8e62 in zend_observer_fcall_end_all /usr/local/src/php/Zend/zend_observer.c:233:4 +2026-04-08T22:04:13.868990Z 01O 007+ #3 0x7485c5ec9970 in zai_reset_observed_frame_post_bailout /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/sandbox/call.c:92:9 +2026-04-08T22:04:13.869012Z 01O 008+ #4 0x7485c5ec9ba7 in zai_sandbox_call /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/sandbox/call.c:124:9 +2026-04-08T22:04:13.869028Z 01O 009+ #5 0x7485c5fa1083 in dd_invoke_integration_loader_and_unhook_posthook /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations/integrations.c:125:27 +2026-04-08T22:04:13.869036Z 01O 010+ #6 0x7485c5fa06cf in dd_invoke_integration_loader_and_unhook_prehook /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations/integrations.c:187:5 +2026-04-08T22:04:13.869043Z 01O 011+ #7 0x7485c5ebcaff in zai_hook_continue /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/hook/hook.c:1053:14 +2026-04-08T22:04:13.869048Z 01O 012+ #8 0x7485c5e99b2c in zai_interceptor_observer_begin_handler /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/interceptor/php8/interceptor.c:164:9 +2026-04-08T22:04:13.869053Z 01O 013+ #9 0x574560ce8455 in _zend_observe_fcall_begin /usr/local/src/php/Zend/zend_observer.c:163:3 +2026-04-08T22:04:13.869060Z 01O 014+ #10 0x574560ce8590 in zend_observer_fcall_begin /usr/local/src/php/Zend/zend_observer.c:176:3 +2026-04-08T22:04:13.869063Z 01O 015+ #11 0x574560b887ef in ZEND_DO_UCALL_SPEC_OBSERVER_HANDLER /usr/local/src/php/Zend/zend_vm_execute.h:1403:2 +2026-04-08T22:04:13.869122Z 01O 016+ #12 0x574560a0ff63 in execute_ex /usr/local/src/php/Zend/zend_vm_execute.h:54970:7 +2026-04-08T22:04:13.869128Z 01O 017+ #13 0x574560a10c8c in zend_execute /usr/local/src/php/Zend/zend_vm_execute.h:59523:2 +2026-04-08T22:04:13.869156Z 01O 018+ #14 0x574560981181 in zend_execute_scripts /usr/local/src/php/Zend/zend.c:1694:4 +2026-04-08T22:04:13.869168Z 01O 019+ #15 0x57456076da21 in php_execute_script /usr/local/src/php/main/main.c:2546:13 +2026-04-08T22:04:13.869178Z 01O 020+ #16 0x574560ced28f in do_cli /usr/local/src/php/sapi/cli/php_cli.c:949:5 +2026-04-08T22:04:13.869196Z 01O 021+ #17 0x574560ceb2c5 in main /usr/local/src/php/sapi/cli/php_cli.c:1337:18 +2026-04-08T22:04:13.869207Z 01O 022+ #18 0x7485cc74c249 in __libc_start_call_main csu/../sysdeps/nptl/libc_start_call_main.h:58:16 +2026-04-08T22:04:13.869214Z 01O 023+ #19 0x7485cc74c304 in __libc_start_main csu/../csu/libc-start.c:360:3 +2026-04-08T22:04:13.869225Z 01O 024+ #20 0x57455f6240f0 in _start (/opt/php/debug-zts-asan/bin/php+0x10130f0) (BuildId: ad7c0b542321b312675454bef26674568a50848a) +2026-04-08T22:04:13.869234Z 01O 025+  +2026-04-08T22:04:13.869239Z 01O 026+ Address 0x7485c9c21c58 is located in stack of thread T0 at offset 88 in frame +2026-04-08T22:04:13.869255Z 01O 027+ #0 0x57456093383f in zend_call_function /usr/local/src/php/Zend/zend_execute_API.c:664 +2026-04-08T22:04:13.869272Z 01O 028+  +2026-04-08T22:04:13.869277Z 01O 029+ This frame has 6 object(s): +2026-04-08T22:04:13.869289Z 01O 030+ [32, 40) 'call' (line 666) +2026-04-08T22:04:13.869298Z 01O 031+ [64, 144) 'dummy_execute_data' (line 666) <== Memory access at offset 88 is inside this variable +2026-04-08T22:04:13.869303Z 01O 032+ [176, 208) 'fci_cache_local' (line 667) +2026-04-08T22:04:13.869318Z 01O 033+ [240, 248) 'error' (line 709) +2026-04-08T22:04:13.869327Z 01O 034+ [272, 276) 'arg_num' (line 808) +2026-04-08T22:04:13.869332Z 01O 035+ [288, 304) 'cache_slot' (line 814) +2026-04-08T22:04:13.869353Z 01O 036+ HINT: this may be a false positive if your program uses some custom stack unwind mechanism, swapcontext or vfork +2026-04-08T22:04:13.869362Z 01O 037+ (longjmp and C++ exceptions *are* supported) +2026-04-08T22:04:13.869369Z 01O 038+ SUMMARY: AddressSanitizer: stack-use-after-return /usr/local/src/php/Zend/zend_observer.c:181:38 in zend_observer_is_skipped_frame +2026-04-08T22:04:13.869380Z 01O 039+ Shadow bytes around the buggy address: +2026-04-08T22:04:13.869388Z 01O 040+ 0x7485c9c21980: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 +2026-04-08T22:04:13.869393Z 01O 041+ 0x7485c9c21a00: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 +2026-04-08T22:04:13.869406Z 01O 042+ 0x7485c9c21a80: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 +2026-04-08T22:04:13.869418Z 01O 043+ 0x7485c9c21b00: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 +2026-04-08T22:04:13.869423Z 01O 044+ 0x7485c9c21b80: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 +2026-04-08T22:04:13.869429Z 01O 045+ =>0x7485c9c21c00: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5[f5]f5 f5 f5 f5 +2026-04-08T22:04:13.869432Z 01O 046+ 0x7485c9c21c80: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 +2026-04-08T22:04:13.869436Z 01O 047+ 0x7485c9c21d00: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 +2026-04-08T22:04:13.869441Z 01O 048+ 0x7485c9c21d80: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 +2026-04-08T22:04:13.869444Z 01O 049+ 0x7485c9c21e00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +2026-04-08T22:04:13.869448Z 01O 050+ 0x7485c9c21e80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +2026-04-08T22:04:13.869454Z 01O 051+ Shadow byte legend (one shadow byte represents 8 application bytes): +2026-04-08T22:04:13.869488Z 01O 052+ Addressable: 00 +2026-04-08T22:04:13.869493Z 01O 053+ Partially addressable: 01 02 03 04 05 06 07  +2026-04-08T22:04:13.869505Z 01O 054+ Heap left redzone: fa +2026-04-08T22:04:13.869515Z 01O 055+ Freed heap region: fd +2026-04-08T22:04:13.869520Z 01O 056+ Stack left redzone: f1 +2026-04-08T22:04:13.869526Z 01O 057+ Stack mid redzone: f2 +2026-04-08T22:04:13.869531Z 01O 058+ Stack right redzone: f3 +2026-04-08T22:04:13.869534Z 01O 059+ Stack after return: f5 +2026-04-08T22:04:13.869540Z 01O 060+ Stack use after scope: f8 +2026-04-08T22:04:13.869542Z 01O 061+ Global redzone: f9 +2026-04-08T22:04:13.869548Z 01O 062+ Global init order: f6 +2026-04-08T22:04:13.869553Z 01O 063+ Poisoned by user: f7 +2026-04-08T22:04:13.869555Z 01O 064+ Container overflow: fc +2026-04-08T22:04:13.869558Z 01O 065+ Array cookie: ac +2026-04-08T22:04:13.869563Z 01O 066+ Intra object redzone: bb +2026-04-08T22:04:13.869566Z 01O 067+ ASan internal: fe +2026-04-08T22:04:13.869570Z 01O 068+ Left alloca redzone: ca +2026-04-08T22:04:13.869575Z 01O 069+ Right alloca redzone: cb +2026-04-08T22:04:13.869578Z 01O 070+ ==4224==ABORTING +2026-04-08T22:04:13.869581Z 01O 071+ Aborted +2026-04-08T22:04:13.869593Z 01O 072+  +2026-04-08T22:04:13.869602Z 01O 073+ Termsig=6 +2026-04-08T22:04:13.869606Z 01O ========DONE======== +2026-04-08T22:04:13.869624Z 01O FAIL deferred loading doesn't crash if integration loading fails [tmp/build_extension/tests/ext/sandbox/deferred_load_fatal.phpt] +2026-04-08T22:04:13.869636Z 01O TEST 197/647 [4/4 concurrent test workers running] PASS HTTP Agent headers are ignored from userland [tmp/build_extension/tests/ext/background-sender/agent_headers_ignore_userland.phpt] +2026-04-08T22:04:13.869644Z 01O TEST 198/647 [4/4 concurrent test workers running] PASS Variadic arguments are passed to tracing closure for internal functions [tmp/build_extension/tests/ext/sandbox/variadic_args_internal.phpt] +2026-04-08T22:04:13.869653Z 01O TEST 199/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Trace private method [tmp/build_extension/tests/ext/sandbox-regression/private_method_hook.phpt] +2026-04-08T22:04:13.869659Z 01O TEST 200/647 [4/4 concurrent test workers running] PASS Distributed tracing headers propagate via file_get_contents() with pre-existing headers as array. [tmp/build_extension/tests/ext/integrations/http_streams/distributed_tracing_http_streams_with_headers_array.phpt] +2026-04-08T22:04:13.869665Z 01O TEST 201/647 [4/4 concurrent test workers running] PASS hook_method prehook should have access only to public members [tmp/build_extension/tests/ext/sandbox/hook_method/prehook_access_01.phpt] +2026-04-08T22:04:13.869673Z 01O TEST 202/647 [4/4 concurrent test workers running] PASS DDTrace\hook_function prehook exception is sandboxed (debug internal) [tmp/build_extension/tests/ext/sandbox/hook_function/prehook_exceptions_04.phpt] +2026-04-08T22:04:13.869677Z 01O TEST 203/647 [4/4 concurrent test workers running] +2026-04-08T22:04:14.369705Z 01O+ PASS Basic Git Metadata Injection from valid .git files (Repository URL & Commit Sha) [tmp/build_extension/tests/ext/integrations/source_code/001/git_metadata_injection_from_valid_files.phpt] +2026-04-08T22:04:14.369765Z 01O TEST 204/647 [4/4 concurrent test workers running] PASS priority_sampling rule with match on non-root spans [tmp/build_extension/tests/ext/priority_sampling/020-rule-nonroot.phpt] +2026-04-08T22:04:14.369772Z 01O TEST 205/647 [4/4 concurrent test workers running] PASS Test onClose SpanData handler [tmp/build_extension/tests/ext/span_on_close.phpt] +2026-04-08T22:04:14.369781Z 01O TEST 206/647 [4/4 concurrent test workers running] PASS Startup logging is enabled by default [tmp/build_extension/tests/ext/startup_logging.phpt] +2026-04-08T22:04:14.369785Z 01O TEST 207/647 [4/4 concurrent test workers running] PASS DDTrace\hook_method posthook is passed the correct args with inheritance [tmp/build_extension/tests/ext/sandbox/hook_method/posthook_04.phpt] +2026-04-08T22:04:14.369790Z 01O TEST 208/647 [4/4 concurrent test workers running] +2026-04-08T22:04:24.882125Z 01O+ PASS Read telemetry via composer [tmp/build_extension/tests/ext/telemetry/composer.phpt] +2026-04-08T22:04:24.882157Z 01O TEST 209/647 [4/4 concurrent test workers running] PASS DDTrace\hook_method prehook does not mess up span ids [tmp/build_extension/tests/ext/sandbox/hook_method/prehook_span_ids_01.phpt] +2026-04-08T22:04:24.882164Z 01O TEST 210/647 [4/4 concurrent test workers running] PASS dd_trace_serialize_msgpack() properly handles span_id, trace_id and parent_id, but only outside of nested arrays [tmp/build_extension/tests/ext/dd_trace_serialize_msgpack_id_in_meta.phpt] +2026-04-08T22:04:24.882175Z 01O TEST 211/647 [4/4 concurrent test workers running] PASS DD_APPSEC_SCA_ENABLED is set by INI [tmp/build_extension/tests/ext/appsec/sca_flag_is_sent_05.phpt] +2026-04-08T22:04:24.882188Z 01O TEST 212/647 [4/4 concurrent test workers running] PASS Remap http.status_code metric to http.status_code meta - OTel HTTP Semantic Convention < 1.21.0 [tmp/build_extension/tests/ext/otel_http_status_code_remapping.phpt] +2026-04-08T22:04:24.882195Z 01O TEST 213/647 [4/4 concurrent test workers running] PASS hook_function posthook should have access only to public members [tmp/build_extension/tests/ext/sandbox/hook_function/prehook_access_01.phpt] +2026-04-08T22:04:24.882202Z 01O TEST 214/647 [4/4 concurrent test workers running] PASS DDTrace\hook_function posthook is passed the correct args (variadic) [tmp/build_extension/tests/ext/sandbox/hook_function/posthook_02.phpt] +2026-04-08T22:04:24.882323Z 01O TEST 215/647 [4/4 concurrent test workers running] +2026-04-08T22:04:25.382503Z 01O+ PASS Gracefully handle out-of-sync spans from traced function [user] [tmp/build_extension/tests/ext/sandbox/spans_out_of_sync_03.phpt] +2026-04-08T22:04:25.382516Z 01O TEST 216/647 [4/4 concurrent test workers running] PASS Test dynamic config update [tmp/build_extension/tests/ext/remote_config/dynamic_config_update.phpt] +2026-04-08T22:04:25.382523Z 01O TEST 217/647 [4/4 concurrent test workers running] PASS Distributed tracing headers do not propagate with curl_multi_exec() after dd_trace_disable_in_request() [tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_multi_exec_disable.phpt] +2026-04-08T22:04:25.382551Z 01O TEST 218/647 [4/4 concurrent test workers running] PASS Test creating a switching span stacks [tmp/build_extension/tests/ext/span_stack/span_stack_swap.phpt] +2026-04-08T22:04:25.382616Z 01O TEST 219/647 [4/4 concurrent test workers running] PASS Extract client IP address (ip header set) [tmp/build_extension/tests/ext/extract_ip_addr_header_env.phpt] +2026-04-08T22:04:25.382624Z 01O TEST 220/647 [4/4 concurrent test workers running] PASS priority_sampling rule with tag match [tmp/build_extension/tests/ext/priority_sampling/016-rule-tag.phpt] +2026-04-08T22:04:25.382648Z 01O TEST 221/647 [4/4 concurrent test workers running] PASS Empty post request [tmp/build_extension/tests/ext/root_span_url_with_post_no_param.phpt] +2026-04-08T22:04:25.382654Z 01O TEST 222/647 [4/4 concurrent test workers running] PASS Userland root spans are automatically flushed when auto-flushing enabled [tmp/build_extension/tests/ext/sandbox/auto_flush_userland_root_span.phpt] +2026-04-08T22:04:25.382662Z 01O TEST 223/647 [4/4 concurrent test workers running] PASS DogStatsD client crash reproduction with unreachable Unix socket [tmp/build_extension/tests/ext/dogstatsd/metrics_over_uds_unreachable.phpt] +2026-04-08T22:04:25.382672Z 01O TEST 224/647 [4/4 concurrent test workers running] PASS DDTrace\hook_function supports both hooks simultaneously [tmp/build_extension/tests/ext/sandbox/hook_function/01.phpt] +2026-04-08T22:04:25.382676Z 01O TEST 225/647 [4/4 concurrent test workers running] +2026-04-08T22:04:25.883110Z 01O+ PASS DogStatsD client crash reproduction with unreachable UDP socket [tmp/build_extension/tests/ext/dogstatsd/metrics_over_udp_unreachable.phpt] +2026-04-08T22:04:25.883122Z 01O TEST 226/647 [4/4 concurrent test workers running] PASS Distributed tracing headers contain properly escaped values [tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_invalid_tags.phpt] +2026-04-08T22:04:25.883128Z 01O TEST 227/647 [4/4 concurrent test workers running] PASS DDTrace\hook_method posthook is passed the correct retval [tmp/build_extension/tests/ext/sandbox/hook_method/posthook_05.phpt] +2026-04-08T22:04:25.883135Z 01O TEST 228/647 [4/4 concurrent test workers running] PASS Transmit distributed header information to spans [tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_inherit.phpt] +2026-04-08T22:04:25.883139Z 01O TEST 229/647 [4/4 concurrent test workers running] PASS Ensure the hook limit is not exceeded [tmp/build_extension/tests/ext/sandbox/hook_limit.phpt] +2026-04-08T22:04:25.883145Z 01O TEST 230/647 [4/4 concurrent test workers running] PASS Span properties defaults to values if not explicitly set (functions) [tmp/build_extension/tests/ext/sandbox/default_span_properties.phpt] +2026-04-08T22:04:25.883167Z 01O TEST 231/647 [4/4 concurrent test workers running] PASS Change the env and version INIs at runtime [tmp/build_extension/tests/ext/runtime_ini_env_version_change.phpt] +2026-04-08T22:04:25.883185Z 01O TEST 232/647 [4/4 concurrent test workers running] PASS HTTP client status code error configuration and helper functions [tmp/build_extension/tests/ext/error_status_configuration/http_error_status_client_configuration.phpt] +2026-04-08T22:04:25.883247Z 01O TEST 233/647 [4/4 concurrent test workers running] PASS The Fargate 1.4+ container ID is sent via HTTP headers to the Agent [tmp/build_extension/tests/ext/background-sender/agent_headers_container_id_fargate.phpt] +2026-04-08T22:04:25.883256Z 01O TEST 234/647 [4/4 concurrent test workers running] PASS priority_sampling preset decision retained [tmp/build_extension/tests/ext/priority_sampling/011-preset.phpt] +2026-04-08T22:04:25.883267Z 01O TEST 235/647 [4/4 concurrent test workers running] +2026-04-08T22:04:26.383907Z 01O+ PASS Set DDTrace\start_span() properties [tmp/build_extension/tests/ext/start_span_with_all_properties.phpt] +2026-04-08T22:04:26.383918Z 01O TEST 236/647 [4/4 concurrent test workers running] PASS Post fields parameters should be retrieved and redacted if needed v2 [tmp/build_extension/tests/ext/root_span_url_with_post_simple_whitelist.phpt] +2026-04-08T22:04:26.383924Z 01O TEST 237/647 [4/4 concurrent test workers running] PASS Value of internal span's peerServiceSource is not added to the serialized version of the span when not set [tmp/build_extension/tests/ext/peer_service_sources_not_serialized_when_unset.phpt] +2026-04-08T22:04:26.383932Z 01O TEST 238/647 [4/4 concurrent test workers running] PASS DDTrace\hook_method posthook does not mess up span ids [tmp/build_extension/tests/ext/sandbox/hook_method/posthook_span_ids_01.phpt] +2026-04-08T22:04:26.383937Z 01O TEST 239/647 [4/4 concurrent test workers running] PASS [Prehook Regression] DDTrace\trace_function() can trace userland functions with internal spans [tmp/build_extension/tests/ext/sandbox-prehook/dd_trace_function_userland.phpt] +2026-04-08T22:04:26.383943Z 01O TEST 240/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Methods and functions are traced before definedx [tmp/build_extension/tests/ext/sandbox-regression/trace_method_or_function_that_will_exist_later.phpt] +2026-04-08T22:04:26.383952Z 01O TEST 241/647 [4/4 concurrent test workers running] PASS Distributed tracing header tags propagate asm events with curl_exec() [tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_propagate_asm_event.phpt] +2026-04-08T22:04:26.383958Z 01O TEST 242/647 [4/4 concurrent test workers running] PASS Bailout during hook END should not cause double-clear of span (internal function) [tmp/build_extension/tests/ext/bailout_double_hook_clear.phpt] +2026-04-08T22:04:26.383964Z 01O TEST 243/647 [4/4 concurrent test workers running] PASS Value of internal span's peerServiceSource is not added to the serialized version of the span when set [tmp/build_extension/tests/ext/peer_service_sources_not_serialized_when_set.phpt] +2026-04-08T22:04:26.383971Z 01O TEST 244/647 [4/4 concurrent test workers running] PASS Sampling priority is kept from distributed when asm upstream and asm standalone enabled [tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_asm_standalone_02.phpt] +2026-04-08T22:04:26.383976Z 01O TEST 245/647 [4/4 concurrent test workers running] PASS Transmit distributed header information to spans via single B3 header [tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_inherit_b3-single-span.phpt] +2026-04-08T22:04:26.384023Z 01O TEST 246/647 [4/4 concurrent test workers running] PASS Exceptions from user error handler are tracked for instrumented internal functions [tmp/build_extension/tests/ext/sandbox/exception_from_user_error_handler_internal.phpt] +2026-04-08T22:04:26.384033Z 01O TEST 247/647 [4/4 concurrent test workers running] PASS priority_sampling rule with tag reject [tmp/build_extension/tests/ext/priority_sampling/017-rule-tag-reject.phpt] +2026-04-08T22:04:26.384045Z 01O TEST 248/647 [4/4 concurrent test workers running] +2026-04-08T22:04:26.884524Z 01O+ PASS [Sandbox] Hook implementations of abstract trait methods are not supported [tmp/build_extension/tests/ext/sandbox/abstract_trait_hook_inherit.phpt] +2026-04-08T22:04:26.884537Z 01O TEST 249/647 [4/4 concurrent test workers running] PASS Reset distributed tracing context on request init [tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_reset_context_on_init.phpt] +2026-04-08T22:04:26.884544Z 01O TEST 250/647 [4/4 concurrent test workers running] PASS Test dropping spans from multiple trace hooks [tmp/build_extension/tests/ext/sandbox/hook_function/dropping_trace_hook.phpt] +2026-04-08T22:04:26.884552Z 01O TEST 251/647 [4/4 concurrent test workers running] PASS Sidecar should be disabled when telemetry is disabled [tmp/build_extension/tests/ext/sidecar_disabled_when_telemetry_disabled.phpt] +2026-04-08T22:04:26.884558Z 01O TEST 252/647 [4/4 concurrent test workers running] PASS Installing a live debugger metric probe [tmp/build_extension/tests/ext/live-debugger/debugger_metric_probe.phpt] +2026-04-08T22:04:26.884563Z 01O TEST 253/647 [4/4 concurrent test workers running] +2026-04-08T22:04:27.385232Z 01O+ PASS remove_hook() with class argument [tmp/build_extension/tests/ext/sandbox/install_hook/exclude_inherited_hook.phpt] +2026-04-08T22:04:27.385245Z 01O TEST 254/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Trace deeply-nested function calls (PHP 7) [tmp/build_extension/tests/ext/sandbox-regression/very_nested_functions.phpt] +2026-04-08T22:04:27.385251Z 01O TEST 255/647 [4/4 concurrent test workers running] PASS DDTrace\hook_method prehook error is sandboxed [tmp/build_extension/tests/ext/sandbox/hook_method/prehook_error_01.phpt] +2026-04-08T22:04:27.385270Z 01O TEST 256/647 [4/4 concurrent test workers running] PASS Errors in ddtrace autoloader do not affect error_get_last() [tmp/build_extension/tests/ext/autoload-php-files/error_get_last_is_unaffected.phpt] +2026-04-08T22:04:27.385276Z 01O TEST 257/647 [4/4 concurrent test workers running] PASS Test tracing generators within objects [tmp/build_extension/tests/ext/sandbox/generator_in_object.phpt] +2026-04-08T22:04:27.385281Z 01O TEST 258/647 [4/4 concurrent test workers running] +2026-04-08T22:04:27.885970Z 01O+ PASS HTTP headers are sent to the Agent from the background sender [tmp/build_extension/tests/ext/background-sender/agent_headers.phpt] +2026-04-08T22:04:27.885989Z 01O TEST 259/647 [4/4 concurrent test workers running] +2026-04-08T22:04:28.386455Z 01O+ +2026-04-08T22:04:28.386466Z 01O ========DIFF======== +2026-04-08T22:04:28.386471Z 01O foo +2026-04-08T22:04:28.386478Z 01O 002+ ================================================================= +2026-04-08T22:04:28.386535Z 01O 003+ ==4588==ERROR: AddressSanitizer: stack-use-after-return on address 0x781d21622858 at pc 0x636c3e4c1cf1 bp 0x7ffcb85e9820 sp 0x7ffcb85e9818 +2026-04-08T22:04:28.386541Z 01O 004+ READ of size 8 at 0x781d21622858 thread T0 +2026-04-08T22:04:28.386562Z 01O 005+ #0 0x636c3e4c1cf0 in zend_observer_is_skipped_frame /usr/local/src/php/Zend/zend_observer.c:181:38 +2026-04-08T22:04:28.386575Z 01O 006+ #1 0x636c3e4c1c0b in zend_observer_fcall_end /usr/local/src/php/Zend/zend_observer.c:221:16 +2026-04-08T22:04:28.386583Z 01O 002- [ddtrace] [warning] [%d] Error raised in ddtrace's closure defined at %s:%d for foo(): Fatal in %s on line %d +2026-04-08T22:04:28.386604Z 01O 003- int(200) +2026-04-08T22:04:28.386616Z 01O 004- foo +2026-04-08T22:04:28.386622Z 01O 005- [ddtrace] [warning] [%d] Error raised in ddtrace's closure defined at %s:%d for foo(): Fatal in %s on line %d +2026-04-08T22:04:28.386635Z 01O 006- [ddtrace] [info] [%d] Flushing trace of size %s +2026-04-08T22:04:28.386645Z 01O 007+ #2 0x636c3e4c2072 in zend_observer_fcall_end_all /usr/local/src/php/Zend/zend_observer.c:233:4 +2026-04-08T22:04:28.386652Z 01O 008+ #3 0x781d1d6c9970 in zai_reset_observed_frame_post_bailout /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/sandbox/call.c:92:9 +2026-04-08T22:04:28.386665Z 01O 009+ #4 0x781d1d6c9ba7 in zai_sandbox_call /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/sandbox/call.c:124:9 +2026-04-08T22:04:28.386677Z 01O 010+ #5 0x781d1d8345a4 in dd_uhook_call /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/hook/uhook_legacy.c:86:20 +2026-04-08T22:04:28.386685Z 01O 011+ #6 0x781d1d8329fd in dd_uhook_end /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/hook/uhook_legacy.c:239:21 +2026-04-08T22:04:28.386702Z 01O 012+ #7 0x781d1d6bd3f2 in zai_hook_finish /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/hook/hook.c:1116:13 +2026-04-08T22:04:28.386711Z 01O 013+ #8 0x781d1d69c42b in zai_hook_safe_finish /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/interceptor/php8/interceptor.c:56:9 +2026-04-08T22:04:28.386719Z 01O 014+ #9 0x781d1d698c1e in zai_interceptor_observer_end_handler /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/interceptor/php8/interceptor.c:176:9 +2026-04-08T22:04:28.386727Z 01O 015+ #10 0x636c3e4c1a98 in zend_observer_fcall_end /usr/local/src/php/Zend/zend_observer.c:213:3 +2026-04-08T22:04:28.386730Z 01O 016+ #11 0x636c3e2be626 in ZEND_RETURN_SPEC_OBSERVER_HANDLER /usr/local/src/php/Zend/zend_vm_execute.h:4202:2 +2026-04-08T22:04:28.386734Z 01O 017+ #12 0x636c3e1e9173 in execute_ex /usr/local/src/php/Zend/zend_vm_execute.h:54970:7 +2026-04-08T22:04:28.386740Z 01O 018+ #13 0x636c3e1e9e9c in zend_execute /usr/local/src/php/Zend/zend_vm_execute.h:59523:2 +2026-04-08T22:04:28.386743Z 01O 019+ #14 0x636c3e15a391 in zend_execute_scripts /usr/local/src/php/Zend/zend.c:1694:4 +2026-04-08T22:04:28.386747Z 01O 020+ #15 0x636c3df46c31 in php_execute_script /usr/local/src/php/main/main.c:2546:13 +2026-04-08T22:04:28.386761Z 01O 021+ #16 0x636c3e4d376b in main /usr/local/src/php/sapi/cgi/cgi_main.c:2532:6 +2026-04-08T22:04:28.386764Z 01O 022+ #17 0x781d2408f249 in __libc_start_call_main csu/../sysdeps/nptl/libc_start_call_main.h:58:16 +2026-04-08T22:04:28.386770Z 01O 023+ #18 0x781d2408f304 in __libc_start_main csu/../csu/libc-start.c:360:3 +2026-04-08T22:04:28.386773Z 01O 024+ #19 0x636c3cdfd300 in _start (/opt/php/debug-zts-asan/bin/php-cgi+0xfc2300) (BuildId: 0f382f08e5acac27457726ba425a15a8c407cbdc) +2026-04-08T22:04:28.386794Z 01O 025+  +2026-04-08T22:04:28.386799Z 01O 026+ Address 0x781d21622858 is located in stack of thread T0 at offset 88 in frame +2026-04-08T22:04:28.386816Z 01O 027+ #0 0x636c3e10ca4f in zend_call_function /usr/local/src/php/Zend/zend_execute_API.c:664 +2026-04-08T22:04:28.386838Z 01O 028+  +2026-04-08T22:04:28.386848Z 01O 029+ This frame has 6 object(s): +2026-04-08T22:04:28.386852Z 01O 030+ [32, 40) 'call' (line 666) +2026-04-08T22:04:28.386857Z 01O 031+ [64, 144) 'dummy_execute_data' (line 666) <== Memory access at offset 88 is inside this variable +2026-04-08T22:04:28.386863Z 01O 032+ [176, 208) 'fci_cache_local' (line 667) +2026-04-08T22:04:28.386866Z 01O 033+ [240, 248) 'error' (line 709) +2026-04-08T22:04:28.386870Z 01O 034+ [272, 276) 'arg_num' (line 808) +2026-04-08T22:04:28.386875Z 01O 035+ [288, 304) 'cache_slot' (line 814) +2026-04-08T22:04:28.386878Z 01O 036+ HINT: this may be a false positive if your program uses some custom stack unwind mechanism, swapcontext or vfork +2026-04-08T22:04:28.386883Z 01O 037+ (longjmp and C++ exceptions *are* supported) +2026-04-08T22:04:28.386888Z 01O 038+ SUMMARY: AddressSanitizer: stack-use-after-return /usr/local/src/php/Zend/zend_observer.c:181:38 in zend_observer_is_skipped_frame +2026-04-08T22:04:28.386892Z 01O 039+ Shadow bytes around the buggy address: +2026-04-08T22:04:28.386896Z 01O 040+ 0x781d21622580: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 +2026-04-08T22:04:28.386901Z 01O 041+ 0x781d21622600: f1 f1 f1 f1 00 00 00 00 00 00 00 00 00 00 00 00 +2026-04-08T22:04:28.386906Z 01O 042+ 0x781d21622680: f2 f2 f2 f2 00 00 f2 f2 00 00 00 00 00 00 00 00 +2026-04-08T22:04:28.386909Z 01O 043+ 0x781d21622700: 00 00 f2 f2 f2 f2 00 00 00 00 00 00 00 00 f3 f3 +2026-04-08T22:04:28.386914Z 01O 044+ 0x781d21622780: f3 f3 f3 f3 00 00 00 00 00 00 00 00 00 00 00 00 +2026-04-08T22:04:28.386917Z 01O 045+ =>0x781d21622800: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5[f5]f5 f5 f5 f5 +2026-04-08T22:04:28.386921Z 01O 046+ 0x781d21622880: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 +2026-04-08T22:04:28.386926Z 01O 047+ 0x781d21622900: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 +2026-04-08T22:04:28.386930Z 01O 048+ 0x781d21622980: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 +2026-04-08T22:04:28.386933Z 01O 049+ 0x781d21622a00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +2026-04-08T22:04:28.386938Z 01O 050+ 0x781d21622a80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +2026-04-08T22:04:28.386941Z 01O 051+ Shadow byte legend (one shadow byte represents 8 application bytes): +2026-04-08T22:04:28.386945Z 01O 052+ Addressable: 00 +2026-04-08T22:04:28.386950Z 01O 053+ Partially addressable: 01 02 03 04 05 06 07  +2026-04-08T22:04:28.386952Z 01O 054+ Heap left redzone: fa +2026-04-08T22:04:28.386956Z 01O 055+ Freed heap region: fd +2026-04-08T22:04:28.386962Z 01O 056+ Stack left redzone: f1 +2026-04-08T22:04:28.386964Z 01O 057+ Stack mid redzone: f2 +2026-04-08T22:04:28.386968Z 01O 058+ Stack right redzone: f3 +2026-04-08T22:04:28.386973Z 01O 059+ Stack after return: f5 +2026-04-08T22:04:28.386975Z 01O 060+ Stack use after scope: f8 +2026-04-08T22:04:28.386978Z 01O 061+ Global redzone: f9 +2026-04-08T22:04:28.386983Z 01O 062+ Global init order: f6 +2026-04-08T22:04:28.386985Z 01O 063+ Poisoned by user: f7 +2026-04-08T22:04:28.386988Z 01O 064+ Container overflow: fc +2026-04-08T22:04:28.387007Z 01O 065+ Array cookie: ac +2026-04-08T22:04:28.387010Z 01O 066+ Intra object redzone: bb +2026-04-08T22:04:28.387013Z 01O 067+ ASan internal: fe +2026-04-08T22:04:28.387017Z 01O 068+ Left alloca redzone: ca +2026-04-08T22:04:28.387020Z 01O 069+ Right alloca redzone: cb +2026-04-08T22:04:28.387023Z 01O 070+ ==4588==ABORTING +2026-04-08T22:04:28.387036Z 01O 071+ Aborted +2026-04-08T22:04:28.387044Z 01O 072+  +2026-04-08T22:04:28.387049Z 01O 073+ Termsig=6 +2026-04-08T22:04:28.387063Z 01O ========DONE======== +2026-04-08T22:04:28.387073Z 01O FAIL Check that sandboxed hooks do not invoke error handlers or set the error code [tmp/build_extension/tests/ext/sandbox/hook_function/hook_does_not_leak_error.phpt] +2026-04-08T22:04:28.387080Z 01O TEST 260/647 [4/4 concurrent test workers running] PASS Test install_hook() on functions returning by reference [tmp/build_extension/tests/ext/sandbox/install_hook/install_hook_return_by_ref.phpt] +2026-04-08T22:04:28.387099Z 01O TEST 261/647 [4/4 concurrent test workers running] PASS Test consume_distributed_tracing_headers() with array argument [tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_consume_array.phpt] +2026-04-08T22:04:28.387111Z 01O TEST 262/647 [4/4 concurrent test workers running] +2026-04-08T22:04:28.887198Z 01O+ PASS Check that the library config files overloads env vars [tmp/build_extension/tests/ext/library_config/fleet_config_overloads_env.phpt] +2026-04-08T22:04:28.887211Z 01O TEST 263/647 [4/4 concurrent test workers running] PASS Test get_memory_limit() returning correct values [tmp/build_extension/tests/ext/get_memory_limit_0_percent.phpt] +2026-04-08T22:04:28.887218Z 01O TEST 264/647 [4/4 concurrent test workers running] PASS [Sandbox regression] dd_trace_tracer_is_limited() limits the tracer with a hard span limit [tmp/build_extension/tests/ext/sandbox-regression/dd_trace_tracer_is_limited_hard.phpt] +2026-04-08T22:04:28.887229Z 01O TEST 265/647 [4/4 concurrent test workers running] PASS Testing user filter on streams [tmp/build_extension/tests/ext/from_php_7_3_test_user_streams_consumed_bug.phpt] +2026-04-08T22:04:28.887234Z 01O TEST 266/647 [4/4 concurrent test workers running] +2026-04-08T22:04:29.387937Z 01O+ PASS Check sample rate is in effect [tmp/build_extension/tests/ext/single-span_sampling/check-sample-rate.phpt] +2026-04-08T22:04:29.387947Z 01O TEST 267/647 [4/4 concurrent test workers running] +2026-04-08T22:04:29.387952Z 01O ========DIFF======== +2026-04-08T22:04:29.387958Z 01O 001+ ================================================================= +2026-04-08T22:04:29.387961Z 01O 002+ ==4635==ERROR: AddressSanitizer: stack-use-after-return on address 0x77db3b422a58 at pc 0x5ef3db7b8ae1 bp 0x7ffefb9ca1a0 sp 0x7ffefb9ca198 +2026-04-08T22:04:29.387965Z 01O 003+ READ of size 8 at 0x77db3b422a58 thread T0 +2026-04-08T22:04:29.387974Z 01O 001- [ddtrace] [warning] [%d] Error raised in ddtrace's closure defined at %s:%d for x(): No D in %s +2026-04-08T22:04:29.387977Z 01O 002- Leaving Autoloader +2026-04-08T22:04:29.387982Z 01O 003- [ddtrace] [info] [%d] Flushing trace of size 2 to send-queue for %s +2026-04-08T22:04:29.387988Z 01O 004+ #0 0x5ef3db7b8ae0 in zend_observer_is_skipped_frame /usr/local/src/php/Zend/zend_observer.c:181:38 +2026-04-08T22:04:29.387991Z 01O 005+ #1 0x5ef3db7b89fb in zend_observer_fcall_end /usr/local/src/php/Zend/zend_observer.c:221:16 +2026-04-08T22:04:29.388052Z 01O 006+ #2 0x5ef3db7b8e62 in zend_observer_fcall_end_all /usr/local/src/php/Zend/zend_observer.c:233:4 +2026-04-08T22:04:29.388059Z 01O 007+ #3 0x77db376c9970 in zai_reset_observed_frame_post_bailout /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/sandbox/call.c:92:9 +2026-04-08T22:04:29.388088Z 01O 008+ #4 0x77db376c9ba7 in zai_sandbox_call /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/sandbox/call.c:124:9 +2026-04-08T22:04:29.388106Z 01O 009+ #5 0x77db378345a4 in dd_uhook_call /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/hook/uhook_legacy.c:86:20 +2026-04-08T22:04:29.388114Z 01O 010+ #6 0x77db378329fd in dd_uhook_end /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/hook/uhook_legacy.c:239:21 +2026-04-08T22:04:29.388127Z 01O 011+ #7 0x77db376bd3f2 in zai_hook_finish /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/hook/hook.c:1116:13 +2026-04-08T22:04:29.388134Z 01O 012+ #8 0x77db3769c42b in zai_hook_safe_finish /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/interceptor/php8/interceptor.c:56:9 +2026-04-08T22:04:29.388140Z 01O 013+ #9 0x77db37698c1e in zai_interceptor_observer_end_handler /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/interceptor/php8/interceptor.c:176:9 +2026-04-08T22:04:29.388147Z 01O 014+ #10 0x5ef3db7b8888 in zend_observer_fcall_end /usr/local/src/php/Zend/zend_observer.c:213:3 +2026-04-08T22:04:29.388150Z 01O 015+ #11 0x5ef3db5b5416 in ZEND_RETURN_SPEC_OBSERVER_HANDLER /usr/local/src/php/Zend/zend_vm_execute.h:4202:2 +2026-04-08T22:04:29.388154Z 01O 016+ #12 0x5ef3db4dff63 in execute_ex /usr/local/src/php/Zend/zend_vm_execute.h:54970:7 +2026-04-08T22:04:29.388160Z 01O 017+ #13 0x5ef3db406e81 in zend_call_function /usr/local/src/php/Zend/zend_execute_API.c:895:3 +2026-04-08T22:04:29.388163Z 01O 018+ #14 0x5ef3db408f4e in zend_call_known_function /usr/local/src/php/Zend/zend_execute_API.c:985:23 +2026-04-08T22:04:29.388167Z 01O 019+ #15 0x5ef3dabd64ec in spl_perform_autoload /usr/local/src/php/ext/spl/php_spl.c:440:3 +2026-04-08T22:04:29.388181Z 01O 020+ #16 0x77db377443bc in dd_perform_autoload /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/autoload_php_files.c:268:16 +2026-04-08T22:04:29.388191Z 01O 021+ #17 0x5ef3db40a03d in zend_lookup_class_ex /usr/local/src/php/Zend/zend_execute_API.c:1110:7 +2026-04-08T22:04:29.388196Z 01O 022+ #18 0x5ef3db40c454 in zend_fetch_class_by_name /usr/local/src/php/Zend/zend_execute_API.c:1521:19 +2026-04-08T22:04:29.388214Z 01O 023+ #19 0x5ef3db7a3235 in zend_do_link_class /usr/local/src/php/Zend/zend_inheritance.c:2436:12 +2026-04-08T22:04:29.388227Z 01O 024+ #20 0x5ef3db395962 in do_bind_class /usr/local/src/php/Zend/zend_compile.c:1139:6 +2026-04-08T22:04:29.388233Z 01O 025+ #21 0x5ef3db66a556 in ZEND_DECLARE_CLASS_SPEC_CONST_HANDLER /usr/local/src/php/Zend/zend_vm_execute.h:5183:2 +2026-04-08T22:04:29.388242Z 01O 026+ #22 0x5ef3db676233 in ZEND_USER_OPCODE_SPEC_HANDLER /usr/local/src/php/Zend/zend_vm_execute.h:3025:4 +2026-04-08T22:04:29.388246Z 01O 027+ #23 0x5ef3db4dff63 in execute_ex /usr/local/src/php/Zend/zend_vm_execute.h:54970:7 +2026-04-08T22:04:29.388250Z 01O 028+ #24 0x5ef3db4e0c8c in zend_execute /usr/local/src/php/Zend/zend_vm_execute.h:59523:2 +2026-04-08T22:04:29.388255Z 01O 029+ #25 0x5ef3db451181 in zend_execute_scripts /usr/local/src/php/Zend/zend.c:1694:4 +2026-04-08T22:04:29.388258Z 01O 030+ #26 0x5ef3db23da21 in php_execute_script /usr/local/src/php/main/main.c:2546:13 +2026-04-08T22:04:29.388289Z 01O 031+ #27 0x5ef3db7bd28f in do_cli /usr/local/src/php/sapi/cli/php_cli.c:949:5 +2026-04-08T22:04:29.388305Z 01O 032+ #28 0x5ef3db7bb2c5 in main /usr/local/src/php/sapi/cli/php_cli.c:1337:18 +2026-04-08T22:04:29.388316Z 01O 033+ #29 0x77db3dfa5249 in __libc_start_call_main csu/../sysdeps/nptl/libc_start_call_main.h:58:16 +2026-04-08T22:04:29.388330Z 01O 034+ #30 0x77db3dfa5304 in __libc_start_main csu/../csu/libc-start.c:360:3 +2026-04-08T22:04:29.388334Z 01O 035+ #31 0x5ef3da0f40f0 in _start (/opt/php/debug-zts-asan/bin/php+0x10130f0) (BuildId: ad7c0b542321b312675454bef26674568a50848a) +2026-04-08T22:04:29.388338Z 01O 036+  +2026-04-08T22:04:29.388343Z 01O 037+ Address 0x77db3b422a58 is located in stack of thread T0 at offset 88 in frame +2026-04-08T22:04:29.388346Z 01O 038+ #0 0x5ef3db40383f in zend_call_function /usr/local/src/php/Zend/zend_execute_API.c:664 +2026-04-08T22:04:29.388350Z 01O 039+  +2026-04-08T22:04:29.388355Z 01O 040+ This frame has 6 object(s): +2026-04-08T22:04:29.388358Z 01O 041+ [32, 40) 'call' (line 666) +2026-04-08T22:04:29.388361Z 01O 042+ [64, 144) 'dummy_execute_data' (line 666) <== Memory access at offset 88 is inside this variable +2026-04-08T22:04:29.388367Z 01O 043+ [176, 208) 'fci_cache_local' (line 667) +2026-04-08T22:04:29.388370Z 01O 044+ [240, 248) 'error' (line 709) +2026-04-08T22:04:29.388373Z 01O 045+ [272, 276) 'arg_num' (line 808) +2026-04-08T22:04:29.388379Z 01O 046+ [288, 304) 'cache_slot' (line 814) +2026-04-08T22:04:29.388382Z 01O 047+ HINT: this may be a false positive if your program uses some custom stack unwind mechanism, swapcontext or vfork +2026-04-08T22:04:29.388387Z 01O 048+ (longjmp and C++ exceptions *are* supported) +2026-04-08T22:04:29.388396Z 01O 049+ SUMMARY: AddressSanitizer: stack-use-after-return /usr/local/src/php/Zend/zend_observer.c:181:38 in zend_observer_is_skipped_frame +2026-04-08T22:04:29.388401Z 01O 050+ Shadow bytes around the buggy address: +2026-04-08T22:04:29.388404Z 01O 051+ 0x77db3b422780: f3 f3 f3 f3 00 00 00 00 00 00 00 00 00 00 00 00 +2026-04-08T22:04:29.388410Z 01O 052+ 0x77db3b422800: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 +2026-04-08T22:04:29.388412Z 01O 053+ 0x77db3b422880: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 +2026-04-08T22:04:29.388415Z 01O 054+ 0x77db3b422900: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 +2026-04-08T22:04:29.388421Z 01O 055+ 0x77db3b422980: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 +2026-04-08T22:04:29.388423Z 01O 056+ =>0x77db3b422a00: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5[f5]f5 f5 f5 f5 +2026-04-08T22:04:29.388427Z 01O 057+ 0x77db3b422a80: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 +2026-04-08T22:04:29.388433Z 01O 058+ 0x77db3b422b00: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 +2026-04-08T22:04:29.388436Z 01O 059+ 0x77db3b422b80: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 +2026-04-08T22:04:29.388440Z 01O 060+ 0x77db3b422c00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +2026-04-08T22:04:29.388445Z 01O 061+ 0x77db3b422c80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +2026-04-08T22:04:29.388447Z 01O 062+ Shadow byte legend (one shadow byte represents 8 application bytes): +2026-04-08T22:04:29.388451Z 01O 063+ Addressable: 00 +2026-04-08T22:04:29.388466Z 01O 064+ Partially addressable: 01 02 03 04 05 06 07  +2026-04-08T22:04:29.388475Z 01O 065+ Heap left redzone: fa +2026-04-08T22:04:29.388480Z 01O 066+ Freed heap region: fd +2026-04-08T22:04:29.388494Z 01O 067+ Stack left redzone: f1 +2026-04-08T22:04:29.388513Z 01O 068+ Stack mid redzone: f2 +2026-04-08T22:04:29.388518Z 01O 069+ Stack right redzone: f3 +2026-04-08T22:04:29.388529Z 01O 070+ Stack after return: f5 +2026-04-08T22:04:29.388538Z 01O 071+ Stack use after scope: f8 +2026-04-08T22:04:29.388542Z 01O 072+ Global redzone: f9 +2026-04-08T22:04:29.388555Z 01O 073+ Global init order: f6 +2026-04-08T22:04:29.388563Z 01O 074+ Poisoned by user: f7 +2026-04-08T22:04:29.388567Z 01O 075+ Container overflow: fc +2026-04-08T22:04:29.388581Z 01O 076+ Array cookie: ac +2026-04-08T22:04:29.388589Z 01O 077+ Intra object redzone: bb +2026-04-08T22:04:29.388594Z 01O 078+ ASan internal: fe +2026-04-08T22:04:29.388605Z 01O 079+ Left alloca redzone: ca +2026-04-08T22:04:29.388614Z 01O 080+ Right alloca redzone: cb +2026-04-08T22:04:29.388620Z 01O 081+ ==4635==ABORTING +2026-04-08T22:04:29.388633Z 01O 082+ Aborted +2026-04-08T22:04:29.388643Z 01O 083+  +2026-04-08T22:04:29.388649Z 01O 084+ Termsig=6 +2026-04-08T22:04:29.388660Z 01O ========DONE======== +2026-04-08T22:04:29.388671Z 01O FAIL Assert bailouts are gracefully handled within class autoloading [tmp/build_extension/tests/ext/sandbox-regression/class_resolver_bailout_hook.phpt] +2026-04-08T22:04:29.388676Z 01O TEST 268/647 [4/4 concurrent test workers running] +2026-04-08T22:04:29.888834Z 01O+ SKIP Test executing fibers with tracer fully disabled [tmp/build_extension/tests/ext/fibers/fiber_switch_tracer_disabled.phpt] reason: : Fibers are a PHP 8.1+ feature +2026-04-08T22:04:29.888856Z 01O TEST 269/647 [4/4 concurrent test workers running] PASS Overriding function arguments via install_hook() [tmp/build_extension/tests/ext/sandbox/install_hook/replace_hook_args.phpt] +2026-04-08T22:04:29.888864Z 01O TEST 270/647 [4/4 concurrent test workers running] SKIP Send telemetry about the sidecar being disabled [tmp/build_extension/tests/ext/background-sender/sidecar_fallback.phpt] reason: : Sidecar fallback exists only on PHP 8.3 +2026-04-08T22:04:29.888872Z 01O TEST 271/647 [4/4 concurrent test workers running] PASS Assesses the opt-in behavior of peer service [tmp/build_extension/tests/ext/peer_service_disabled_default.phpt] +2026-04-08T22:04:29.888876Z 01O TEST 272/647 [4/4 concurrent test workers running] PASS DDTrace_trace_method is passed wrong parameters [tmp/build_extension/tests/ext/wrong-parameter-errors/DDTrace_trace_method.phpt] +2026-04-08T22:04:29.888884Z 01O TEST 273/647 [4/4 concurrent test workers running] PASS hook_function posthook should ignore limited mode [tmp/build_extension/tests/ext/sandbox/hook_function/posthook_limited_01.phpt] +2026-04-08T22:04:29.888895Z 01O TEST 274/647 [4/4 concurrent test workers running] PASS Span creation with distributed context set after starting span [tmp/build_extension/tests/ext/inferred_proxy/propagated_tags_after_span_start.phpt] +2026-04-08T22:04:29.888899Z 01O TEST 275/647 [4/4 concurrent test workers running] PASS Test hooking preserves the active span [tmp/build_extension/tests/ext/show_actual_active_span_in_hook.phpt] +2026-04-08T22:04:29.888905Z 01O TEST 276/647 [4/4 concurrent test workers running] PASS Client IP should not be collected if env DD_TRACE_CLIENT_IP_ENABLED is set to true [tmp/build_extension/tests/ext/ip_collection_02.phpt] +2026-04-08T22:04:29.888959Z 01O TEST 277/647 [4/4 concurrent test workers running] +2026-04-08T22:04:30.389556Z 01O+ PASS Test that service tags in DD_TAGS are ignored but version and env tags are set [tmp/build_extension/tests/ext/ust_via_ddtags.phpt] +2026-04-08T22:04:30.389573Z 01O TEST 278/647 [4/4 concurrent test workers running] PASS Distributed tracing headers propagate via file_get_contents() with pre-existing headers as string. [tmp/build_extension/tests/ext/integrations/http_streams/distributed_tracing_http_streams_with_headers_string.phpt] +2026-04-08T22:04:30.389581Z 01O TEST 279/647 [4/4 concurrent test workers running] PASS Short running multiple forks [tmp/build_extension/tests/ext/pcntl/pcntl_fork_reseed_span_id.phpt] +2026-04-08T22:04:30.389591Z 01O TEST 280/647 [4/4 concurrent test workers running] SKIP Sidecar should be enabled by default on PHP 8.4 [tmp/build_extension/tests/ext/sidecar_enabled.phpt] reason: : This tests is only for PHP 8.4 +2026-04-08T22:04:30.389597Z 01O TEST 281/647 [4/4 concurrent test workers running] PASS E_ERROR fatal errors are tracked from internal function [tmp/build_extension/tests/ext/sandbox/fatal_errors_are_tracked_001.phpt] +2026-04-08T22:04:30.389602Z 01O TEST 282/647 [4/4 concurrent test workers running] +2026-04-08T22:04:30.890145Z 01O+ PASS ASAN repro: internal fake closure + forced eval parse error [tmp/build_extension/tests/ext/sandbox/install_hook/internal_fake_closure_forced_parse_error_asan.phpt] +2026-04-08T22:04:30.890158Z 01O TEST 283/647 [4/4 concurrent test workers running] PASS When DD_GIT_REPOSITORY_URL is specified, _dd.git.repository_url is injected [tmp/build_extension/tests/ext/integrations/source_code/repository_url_env_var.phpt] +2026-04-08T22:04:30.890167Z 01O TEST 284/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Multiple functions and methods are traced [tmp/build_extension/tests/ext/sandbox-regression/multiple_instrumentations.phpt] +2026-04-08T22:04:30.890175Z 01O TEST 285/647 [4/4 concurrent test workers running] PASS Properly remap peer service's sources based on DD_TRACE_PEER_SERVICE_MAPPING [tmp/build_extension/tests/ext/peer_service_remapping.phpt] +2026-04-08T22:04:30.890179Z 01O TEST 286/647 [4/4 concurrent test workers running] +2026-04-08T22:04:32.892377Z 01O+ PASS Installing a live debugger span decoration probe [tmp/build_extension/tests/ext/live-debugger/debugger_span_decoration_probe.phpt] +2026-04-08T22:04:32.892389Z 01O TEST 287/647 [4/4 concurrent test workers running] PASS priority_sampling user keep [tmp/build_extension/tests/ext/priority_sampling/003-user-keep.phpt] +2026-04-08T22:04:32.892397Z 01O TEST 288/647 [4/4 concurrent test workers running] SKIP Send crashtracker report when segmentation fault signal is raised and config enables it [tmp/build_extension/tests/ext/crashtracker_segfault_windows.phpt] reason: : intentionally causes segfaults +2026-04-08T22:04:32.892407Z 01O TEST 289/647 [4/4 concurrent test workers running] PASS Verify trace source tag is not sent when no asm event [tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_existing_headers_005.phpt] +2026-04-08T22:04:32.892411Z 01O TEST 290/647 [4/4 concurrent test workers running] +2026-04-08T22:04:33.392983Z 01O+ PASS [Sandbox regression] Return value passed to tracing closure [tmp/build_extension/tests/ext/sandbox-regression/return_value_passed.phpt] +2026-04-08T22:04:33.392997Z 01O TEST 291/647 [4/4 concurrent test workers running] PASS Test \datadog\appsec\v2\track_user_login_failure invalid login [tmp/build_extension/tests/ext/track_user_login_failure_03.phpt] +2026-04-08T22:04:33.393007Z 01O TEST 292/647 [4/4 concurrent test workers running] SKIP Ensure the tracer can also be enabled or disabled in fibers [tmp/build_extension/tests/ext/fibers/enable_tracer_in_fiber.phpt] reason: : Fibers are a PHP 8.1+ feature +2026-04-08T22:04:33.393019Z 01O TEST 293/647 [4/4 concurrent test workers running] PASS Exceptions get attached to spans [tmp/build_extension/tests/ext/sandbox/exception_handling.phpt] +2026-04-08T22:04:33.393024Z 01O TEST 294/647 [4/4 concurrent test workers running] PASS Remove hook [tmp/build_extension/tests/ext/sandbox/install_hook/remove_hook_null_logger.phpt] +2026-04-08T22:04:33.393028Z 01O TEST 295/647 [4/4 concurrent test workers running] +2026-04-08T22:04:33.893934Z 01O+ PASS Test swapping span stacks due to auto-close of spans by functions [tmp/build_extension/tests/ext/span_stack/span_stack_swap_traced_function.phpt] +2026-04-08T22:04:33.893980Z 01O TEST 296/647 [4/4 concurrent test workers running] PASS Exceptions from original call are passed to tracing closure [tmp/build_extension/tests/ext/sandbox/exceptions_are_passed_to_the_tracing_closure.phpt] +2026-04-08T22:04:33.893991Z 01O TEST 297/647 [4/4 concurrent test workers running] SKIP Span properties are safely converted to strings without errors or exceptions [tmp/build_extension/tests/ext/sandbox/safe_to_string_properties.phpt] reason: : test only works before 7.4 +2026-04-08T22:04:33.894002Z 01O TEST 298/647 [4/4 concurrent test workers running] PASS Ensure that if a user adds an internal function we already trace to traced internal functions list that it doesn't misbehave [tmp/build_extension/tests/ext/traced_internal_functions_override_01.phpt] +2026-04-08T22:04:33.894006Z 01O TEST 299/647 [4/4 concurrent test workers running] +2026-04-08T22:04:34.394506Z 01O+ PASS priority_sampling rule with service reject [tmp/build_extension/tests/ext/priority_sampling/008-rule-service-reject.phpt] +2026-04-08T22:04:34.394520Z 01O TEST 300/647 [4/4 concurrent test workers running] PASS Distributed tracing header tags propagate with curl_exec() [tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_propagate_custom_tags.phpt] +2026-04-08T22:04:34.394526Z 01O TEST 301/647 [4/4 concurrent test workers running] PASS DDTrace\hook_function posthook is passed the correct args [tmp/build_extension/tests/ext/sandbox/hook_function/posthook_03.phpt] +2026-04-08T22:04:34.394536Z 01O TEST 302/647 [4/4 concurrent test workers running] PASS Auto-flushing will sandbox an exception thrown from the tracer flush [tmp/build_extension/tests/ext/sandbox/auto_flush_sandbox_exception.phpt] +2026-04-08T22:04:34.394540Z 01O TEST 303/647 [4/4 concurrent test workers running] +2026-04-08T22:04:34.895145Z 01O+ PASS Variadic arguments are passed to tracing closure when no arguments exist in function signature [tmp/build_extension/tests/ext/sandbox/variadic_no_args.phpt] +2026-04-08T22:04:34.895210Z 01O TEST 304/647 [4/4 concurrent test workers running] PASS Short running multiple forks [tmp/build_extension/tests/ext/pcntl/pcntl_fork_short_running_multiple.phpt] +2026-04-08T22:04:34.895220Z 01O TEST 305/647 [4/4 concurrent test workers running] SKIP rate limiter reached [tmp/build_extension/tests/ext/limiter/002-limiter-reached.phpt] reason: timing sensitive test, does not make sense with valgrind +2026-04-08T22:04:34.895228Z 01O TEST 306/647 [4/4 concurrent test workers running] +2026-04-08T22:04:35.395385Z 01O+ PASS priority_sampling rule with resource reject [tmp/build_extension/tests/ext/priority_sampling/015-rule-resource-reject.phpt] +2026-04-08T22:04:35.395409Z 01O TEST 307/647 [4/4 concurrent test workers running] PASS Startup logging is disabled [tmp/build_extension/tests/ext/startup_logging_disabled.phpt] +2026-04-08T22:04:35.395420Z 01O TEST 308/647 [4/4 concurrent test workers running] PASS Nested closure targeting method call 01 (posthook) [tmp/build_extension/tests/ext/sandbox/hook_method/posthook_06.phpt] +2026-04-08T22:04:35.395429Z 01O TEST 309/647 [4/4 concurrent test workers running] +2026-04-08T22:04:35.896054Z 01O+ SKIP runtime-id exists in meta when profiling is disabled [tmp/build_extension/tests/ext/profiling/runtime_id_02.phpt] reason: : requires profiling +2026-04-08T22:04:35.896066Z 01O TEST 310/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Userland function is traced [tmp/build_extension/tests/ext/sandbox-regression/simple_function_hook.phpt] +2026-04-08T22:04:35.896073Z 01O TEST 311/647 [4/4 concurrent test workers running] PASS priority_sampling rule with name match [tmp/build_extension/tests/ext/priority_sampling/005-rule-name.phpt] +2026-04-08T22:04:35.896080Z 01O TEST 312/647 [4/4 concurrent test workers running] PASS hook_method posthook is called with the correct scope (parent) [tmp/build_extension/tests/ext/sandbox/hook_method/posthook_scope_02.phpt] +2026-04-08T22:04:35.896085Z 01O TEST 313/647 [4/4 concurrent test workers running] PASS Keep spans in limited mode (userland functions) [tmp/build_extension/tests/ext/sandbox/keep_spans_in_limited_tracing_userland_functions.phpt] +2026-04-08T22:04:35.896090Z 01O TEST 314/647 [4/4 concurrent test workers running] +2026-04-08T22:04:36.396527Z 01O+ SKIP dd_trace_tracer_is_limited() limits the tracer with a memory limit [tmp/build_extension/tests/ext/dd_trace_tracer_is_limited_memory.phpt] reason: Zend MM must be enabled +2026-04-08T22:04:36.396540Z 01O TEST 315/647 [4/4 concurrent test workers running] PASS Startup logging config [tmp/build_extension/tests/ext/startup_logging_config.phpt] +2026-04-08T22:04:36.396546Z 01O TEST 316/647 [4/4 concurrent test workers running] PASS priority_sampling rule with name and service match [tmp/build_extension/tests/ext/priority_sampling/009-rule-name-service.phpt] +2026-04-08T22:04:36.396553Z 01O TEST 317/647 [4/4 concurrent test workers running] +2026-04-08T22:04:36.897081Z 01O+ PASS Distributed tracing headers propagate with curl_exec() [tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_tracestate.phpt] +2026-04-08T22:04:36.897149Z 01O TEST 318/647 [4/4 concurrent test workers running] PASS Test baggage header interaction when is configured as first [tmp/build_extension/tests/ext/distributed_tracing/baggage/distributed_trace_baggage_first.phpt] +2026-04-08T22:04:36.897158Z 01O TEST 319/647 [4/4 concurrent test workers running] PASS priority_sampling default sampling [tmp/build_extension/tests/ext/priority_sampling/001-default-sampling.phpt] +2026-04-08T22:04:36.897167Z 01O TEST 320/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Private and protected properties are accessed from a tracing closure [tmp/build_extension/tests/ext/sandbox-regression/access_modifier_property_access_hook.phpt] +2026-04-08T22:04:36.897171Z 01O TEST 321/647 [4/4 concurrent test workers running] +2026-04-08T22:04:37.397780Z 01O+ PASS Test \DDTrace\set_user doesn't propagate when overriding configuration [tmp/build_extension/tests/ext/set_user_without_propagation_override_default.phpt] +2026-04-08T22:04:37.397793Z 01O TEST 322/647 [4/4 concurrent test workers running] PASS 'logs_created' internal metric [tmp/build_extension/tests/ext/telemetry/metrics_logs_created.phpt] +2026-04-08T22:04:37.397800Z 01O TEST 323/647 [4/4 concurrent test workers running] PASS DDTrace_trace_function is passed wrong parameters [tmp/build_extension/tests/ext/wrong-parameter-errors/DDTrace_trace_function.phpt] +2026-04-08T22:04:37.397810Z 01O TEST 324/647 [4/4 concurrent test workers running] PASS Baggage headers should not be propagated when curl integration is disabled [tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_disabled_baggage.phpt] +2026-04-08T22:04:37.397815Z 01O TEST 325/647 [4/4 concurrent test workers running] PASS Use the first available tag from peerServiceSources to set peer.service [tmp/build_extension/tests/ext/peer_service_use_first_available_tag.phpt] +2026-04-08T22:04:37.397820Z 01O TEST 326/647 [4/4 concurrent test workers running] +2026-04-08T22:04:37.898450Z 01O+ PASS Test cloning a span stack [tmp/build_extension/tests/ext/span_stack/span_stack_clone.phpt] +2026-04-08T22:04:37.898462Z 01O TEST 327/647 [4/4 concurrent test workers running] PASS Test consume_distributed_tracing_headers() with conflicting span_ids in datadog and tracecontext headers [tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_conflicting_span_ids_dd_tracecontext.phpt] +2026-04-08T22:04:37.898472Z 01O TEST 328/647 [4/4 concurrent test workers running] PASS Thread mode sidecar: orphaned child process promotes itself to master after parent exits [tmp/build_extension/tests/ext/pcntl/pcntl_fork_thread_mode_orphan.phpt] +2026-04-08T22:04:37.898483Z 01O TEST 329/647 [4/4 concurrent test workers running] PASS Test try_drop_span() on root span [tmp/build_extension/tests/ext/try_drop_span_root.phpt] +2026-04-08T22:04:37.898487Z 01O TEST 330/647 [4/4 concurrent test workers running] PASS Exceptions in the tracing closure callback are always defined [tmp/build_extension/tests/ext/sandbox/exception_is_defined.phpt] +2026-04-08T22:04:37.898493Z 01O TEST 331/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Recursive calls will trace only outermost invocation [tmp/build_extension/tests/ext/sandbox-regression/recursion.phpt] +2026-04-08T22:04:37.898537Z 01O TEST 332/647 [4/4 concurrent test workers running] +2026-04-08T22:04:38.399065Z 01O+ PASS Decoding nested array POST data [tmp/build_extension/tests/ext/root_span_url_with_post_array.phpt] +2026-04-08T22:04:38.399079Z 01O TEST 333/647 [4/4 concurrent test workers running] PASS Test get_memory_limit() returning correct values [tmp/build_extension/tests/ext/get_memory_limit_unlimited_default.phpt] +2026-04-08T22:04:38.399086Z 01O TEST 334/647 [4/4 concurrent test workers running] PASS Headers values are mapped to expected tag key [tmp/build_extension/tests/ext/dd_trace_serialize_header_to_meta.phpt] +2026-04-08T22:04:38.399094Z 01O TEST 335/647 [4/4 concurrent test workers running] PASS DDTrace\hook_function prehook basic functionality [tmp/build_extension/tests/ext/sandbox/hook_function/prehook_01.phpt] +2026-04-08T22:04:38.399098Z 01O TEST 336/647 [4/4 concurrent test workers running] PASS DDTrace\SpanEvent serialization with attributes [tmp/build_extension/tests/ext/request-replayer/dd_trace_span_event.phpt] +2026-04-08T22:04:38.399105Z 01O TEST 337/647 [4/4 concurrent test workers running] PASS Verify ips in private ranges are detected as private(Base: 100.64.0.0, Mask: 255.192.0.0) [tmp/build_extension/tests/ext/extract_ip_private_01.phpt] +2026-04-08T22:04:38.399111Z 01O TEST 338/647 [4/4 concurrent test workers running] +2026-04-08T22:04:38.899903Z 01O+ PASS Should create parent and child spans for a 200 [tmp/build_extension/tests/ext/inferred_proxy/basic_test.phpt] +2026-04-08T22:04:38.899915Z 01O TEST 339/647 [4/4 concurrent test workers running] PASS The return value is null when an exception is thrown in the original call [tmp/build_extension/tests/ext/sandbox/retval_is_null_with_exception.phpt] +2026-04-08T22:04:38.899924Z 01O TEST 340/647 [4/4 concurrent test workers running] SKIP Dump backtrace when segmentation fault signal is raised and config enables it [tmp/build_extension/tests/ext/segfault_backtrace_enabled.phpt] reason: : intentionally causes segfaults +2026-04-08T22:04:38.899932Z 01O TEST 341/647 [4/4 concurrent test workers running] +2026-04-08T22:04:39.901123Z 01O+ PASS Sample rate is changed to 0 after first call during a minute when STANDALONE ASM is enabled and no asm events [tmp/build_extension/tests/ext/background-sender/agent_sampling-standalone-asm_01.phpt] +2026-04-08T22:04:39.901135Z 01O TEST 342/647 [4/4 concurrent test workers running] PASS DDTrace\hook_method posthook does not mess up spans with children [tmp/build_extension/tests/ext/sandbox/hook_method/posthook_span_ids_02.phpt] +2026-04-08T22:04:39.901141Z 01O TEST 343/647 [4/4 concurrent test workers running] PASS Test file inclusion hooking [tmp/build_extension/tests/ext/sandbox/install_hook/trace_file.phpt] +2026-04-08T22:04:39.901149Z 01O TEST 344/647 [4/4 concurrent test workers running] PASS DDTrace_hook_function is passed wrong parameters [tmp/build_extension/tests/ext/wrong-parameter-errors/DDTrace_hook_function.phpt] +2026-04-08T22:04:39.901154Z 01O TEST 345/647 [4/4 concurrent test workers running] PASS DDTrace\hook_function supports recursion [tmp/build_extension/tests/ext/sandbox/hook_function/recursion.phpt] +2026-04-08T22:04:39.901218Z 01O TEST 346/647 [4/4 concurrent test workers running] PASS Test exception replay capture limits [tmp/build_extension/tests/ext/live-debugger/exception-replay_002.phpt] +2026-04-08T22:04:39.901246Z 01O TEST 347/647 [4/4 concurrent test workers running] PASS DDTrace\hook_function posthook exception is sandboxed (debug internal) [tmp/build_extension/tests/ext/sandbox/hook_function/posthook_exceptions_04.phpt] +2026-04-08T22:04:39.901253Z 01O TEST 348/647 [4/4 concurrent test workers running] +2026-04-08T22:04:40.401467Z 01O+ PASS Test the output of \DDTrace\current_context without env variables. [tmp/build_extension/tests/ext/dd_trace_current_context_noenv.phpt] +2026-04-08T22:04:40.401489Z 01O TEST 349/647 [4/4 concurrent test workers running] PASS root span with DD_TRACE_URL_AS_RESOURCE_NAMES_ENABLED [tmp/build_extension/tests/ext/root_span_url_with_query_params.phpt] +2026-04-08T22:04:40.401498Z 01O TEST 350/647 [4/4 concurrent test workers running] PASS Startup logging diagnostics [tmp/build_extension/tests/ext/startup_logging_diagnostics.phpt] +2026-04-08T22:04:40.401519Z 01O TEST 351/647 [4/4 concurrent test workers running] +2026-04-08T22:04:40.902039Z 01O+ PASS VM variable types are handled properly for return [tmp/build_extension/tests/ext/sandbox/vm_var_types_return.phpt] +2026-04-08T22:04:40.902050Z 01O TEST 352/647 [4/4 concurrent test workers running] PASS DDTrace\hook_method posthook is called at exit [tmp/build_extension/tests/ext/sandbox/hook_method/posthook_exit_01.phpt] +2026-04-08T22:04:40.902057Z 01O TEST 353/647 [4/4 concurrent test workers running] PASS Test process_tags in application field [tmp/build_extension/tests/ext/telemetry/telemetry_process_tags.phpt] +2026-04-08T22:04:40.902064Z 01O TEST 354/647 [4/4 concurrent test workers running] PASS Post fields with a implicit array keys [tmp/build_extension/tests/ext/root_span_url_with_post_implicit_array_key.phpt] +2026-04-08T22:04:40.902071Z 01O TEST 355/647 [4/4 concurrent test workers running] +2026-04-08T22:04:41.402410Z 01O+ PASS Long running autoflush [tmp/build_extension/tests/ext/pcntl/pcntl_fork_long_running_autoflush.phpt] +2026-04-08T22:04:41.402445Z 01O TEST 356/647 [4/4 concurrent test workers running] PASS Distributed tracing span is generated for file_get_contents() [tmp/build_extension/tests/ext/integrations/http_streams/distributed_tracing_http_streams_disabled.phpt] +2026-04-08T22:04:41.402451Z 01O TEST 357/647 [4/4 concurrent test workers running] PASS DDTrace\hook_method returns false quietly when no hook is passed [tmp/build_extension/tests/ext/sandbox/hook_method/02.phpt] +2026-04-08T22:04:41.402477Z 01O TEST 358/647 [4/4 concurrent test workers running] PASS Enabling dynamic instrumentation via dynamic configuration [tmp/build_extension/tests/ext/live-debugger/debugger_enable_dynamic_config.phpt] +2026-04-08T22:04:41.402488Z 01O TEST 359/647 [4/4 concurrent test workers running] PASS Test that call_user_func_array can trace in global scope [tmp/build_extension/tests/ext/call_user_func/not-namespaced-array.phpt] +2026-04-08T22:04:41.402495Z 01O TEST 360/647 [4/4 concurrent test workers running] PASS priority_sampling rule with name match, using glob [tmp/build_extension/tests/ext/priority_sampling/022-rule-name-as-glob-with-multiple-criterias.phpt] +2026-04-08T22:04:41.402541Z 01O TEST 361/647 [4/4 concurrent test workers running] +2026-04-08T22:04:41.903085Z 01O+ PASS [Prehook] Tracing closure does not have access to thrown exception [tmp/build_extension/tests/ext/sandbox-prehook/closure_arg_exception.phpt] +2026-04-08T22:04:41.903095Z 01O TEST 362/647 [4/4 concurrent test workers running] +2026-04-08T22:04:42.904378Z 01O+ PASS Live debugger log probe includes process_tags [tmp/build_extension/tests/ext/live-debugger/debugger_log_probe_process_tags.phpt] +2026-04-08T22:04:42.904396Z 01O TEST 363/647 [4/4 concurrent test workers running] PASS The tracer should not crash when many hooks are installed [tmp/build_extension/tests/ext/sandbox-regression/handle_many_hooks.phpt] +2026-04-08T22:04:42.904404Z 01O TEST 364/647 [4/4 concurrent test workers running] PASS DDTrace\hook_function posthook error is sandboxed (debug) [tmp/build_extension/tests/ext/sandbox/hook_function/posthook_error_02.phpt] +2026-04-08T22:04:42.904431Z 01O TEST 365/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Trace case-insensitive method from a child class [tmp/build_extension/tests/ext/sandbox-regression/case_insensitive_method_hook.phpt] +2026-04-08T22:04:42.904439Z 01O TEST 366/647 [4/4 concurrent test workers running] +2026-04-08T22:04:49.412640Z 01O+ PASS Test dynamic config update [tmp/build_extension/tests/ext/remote_config/dynamic_config_auto_update.phpt] +2026-04-08T22:04:49.412675Z 01O TEST 367/647 [4/4 concurrent test workers running] PASS Negative duration for dropped spans [tmp/build_extension/tests/ext/dropped_spans_have_negative_duration.phpt] +2026-04-08T22:04:49.412683Z 01O TEST 368/647 [4/4 concurrent test workers running] +2026-04-08T22:04:49.913278Z 01O+ +2026-04-08T22:04:49.913291Z 01O ========DIFF======== +2026-04-08T22:04:49.913295Z 01O 001+  +2026-04-08T22:04:49.913301Z 01O 001- invoked +2026-04-08T22:04:49.913303Z 01O ========DONE======== +2026-04-08T22:04:49.913308Z 01O XFAIL Test hooking fake closures of internal functions via install_hook() [tmp/build_extension/tests/ext/sandbox/install_hook/hook_internal_fake_closure.phpt] XFAIL REASON: Not implemented yet +2026-04-08T22:04:49.913317Z 01O TEST 369/647 [4/4 concurrent test workers running] PASS priority_sampling rule with resource match [tmp/build_extension/tests/ext/priority_sampling/014-rule-resource.phpt] +2026-04-08T22:04:49.913321Z 01O TEST 370/647 [4/4 concurrent test workers running] PASS Extract client IP address (ip header set) [tmp/build_extension/tests/ext/extract_ip_addr_header_ini.phpt] +2026-04-08T22:04:49.913327Z 01O TEST 371/647 [4/4 concurrent test workers running] PASS Nested closure targeting method call 02 (posthook) [tmp/build_extension/tests/ext/sandbox/hook_method/posthook_07.phpt] +2026-04-08T22:04:49.913335Z 01O TEST 372/647 [4/4 concurrent test workers running] +2026-04-08T22:04:50.414028Z 01O+ PASS Test get_memory_limit() returning correct values [tmp/build_extension/tests/ext/get_memory_limit_set_by_absolute.phpt] +2026-04-08T22:04:50.414040Z 01O TEST 373/647 [4/4 concurrent test workers running] PASS DD_APPSEC_SCA_ENABLED flag is sent to via telemetry with default value [tmp/build_extension/tests/ext/appsec/sca_flag_is_sent_01.phpt] +2026-04-08T22:04:50.414049Z 01O TEST 374/647 [4/4 concurrent test workers running] SKIP Unset, nulled and generally invalid data in exception property is ignored [tmp/build_extension/tests/ext/span_with_removed_exception.phpt] reason: : test only works before 7.4 +2026-04-08T22:04:50.414076Z 01O TEST 375/647 [4/4 concurrent test workers running] +2026-04-08T22:04:50.914551Z 01O+ PASS hook_method prehook is called with the correct scope (parent) [tmp/build_extension/tests/ext/sandbox/hook_method/prehook_scope_03.phpt] +2026-04-08T22:04:50.914564Z 01O TEST 376/647 [4/4 concurrent test workers running] PASS Suppress function call via suppressCall() [tmp/build_extension/tests/ext/sandbox/install_hook/suppress_call.phpt] +2026-04-08T22:04:50.914570Z 01O TEST 377/647 [4/4 concurrent test workers running] PASS Exceptions are handled with multi-catch syntax [tmp/build_extension/tests/ext/sandbox/exception_handled_in_multicatch.phpt] +2026-04-08T22:04:50.914582Z 01O TEST 378/647 [4/4 concurrent test workers running] PASS Invalid referrer hostname from HTTP headers [tmp/build_extension/tests/ext/referrer_extraction_01.phpt] +2026-04-08T22:04:50.914585Z 01O TEST 379/647 [4/4 concurrent test workers running] +2026-04-08T22:04:51.415298Z 01O+ PASS Test dd_trace_check_memory_under_limit() returning correct values for default [tmp/build_extension/tests/ext/check_memory_under_limit_default.phpt] +2026-04-08T22:04:51.415380Z 01O TEST 380/647 [4/4 concurrent test workers running] PASS Invalid regex: default sampling rate applies [tmp/build_extension/tests/ext/priority_sampling/invalid-regex-rule.phpt] +2026-04-08T22:04:51.415388Z 01O TEST 381/647 [4/4 concurrent test workers running] +2026-04-08T22:04:51.915991Z 01O+ PASS Telemetry test with connection reset [tmp/build_extension/tests/ext/telemetry/broken_pipe.phpt] +2026-04-08T22:04:51.916024Z 01O TEST 382/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Traced userland function catches and rethrows exception [tmp/build_extension/tests/ext/sandbox-regression/throw_exception.phpt] +2026-04-08T22:04:51.916032Z 01O TEST 383/647 [4/4 concurrent test workers running] +2026-04-08T22:04:52.416705Z 01O+ PASS Only param whose name is in DD_TRACE_HTTP_POST_DATA_PARAM_ALLOWED shouldn't be redacted [tmp/build_extension/tests/ext/root_span_url_with_post_only_allowed_params.phpt] +2026-04-08T22:04:52.416717Z 01O TEST 384/647 [4/4 concurrent test workers running] PASS root span with DD_TRACE_URL_AS_RESOURCE_NAMES_ENABLED (variant using SERVER_NAME) [tmp/build_extension/tests/ext/root_span_url_as_resource_names_no_host.phpt] +2026-04-08T22:04:52.416724Z 01O TEST 385/647 [4/4 concurrent test workers running] PASS Distributed tracing headers propagate with curl_exec() [tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl.phpt] +2026-04-08T22:04:52.416733Z 01O TEST 386/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Tracing closure set from inside non-static method [tmp/build_extension/tests/ext/sandbox-regression/closure_set_inside_object_methods.phpt] +2026-04-08T22:04:52.416739Z 01O TEST 387/647 [4/4 concurrent test workers running] PASS Ingest all spans [tmp/build_extension/tests/ext/single-span_sampling/name-matching-single-span.phpt] +2026-04-08T22:04:52.416743Z 01O TEST 388/647 [4/4 concurrent test workers running] +2026-04-08T22:04:52.917324Z 01O+ PASS Client IP should not be collected if DD_TRACE_CLIENT_IP_ENABLED/dd_trace.client_ip_enabled is not set [tmp/build_extension/tests/ext/ip_collection_01.phpt] +2026-04-08T22:04:52.917343Z 01O TEST 389/647 [4/4 concurrent test workers running] PASS Remove credentials from repository URL [tmp/build_extension/tests/ext/integrations/source_code/git_metadata_injection_remove_credentials_from_env.phpt] +2026-04-08T22:04:52.917349Z 01O TEST 390/647 [4/4 concurrent test workers running] +2026-04-08T22:04:53.417998Z 01O+ PASS Filesystem integration can also be disabled with default integrations flag [tmp/build_extension/tests/ext/telemetry/integration_filesystem_04.phpt] +2026-04-08T22:04:53.418017Z 01O TEST 391/647 [4/4 concurrent test workers running] +2026-04-08T22:04:53.918576Z 01O+ PASS Distributed tracing headers propagate with curl_exec() [tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_sampling_priority.phpt] +2026-04-08T22:04:53.918597Z 01O TEST 392/647 [4/4 concurrent test workers running] SKIP Fatal errors are ignored in shutdown handler [tmp/build_extension/tests/ext/sandbox/fatal_errors_ignored_in_shutdown.phpt] reason: Zend memory manager required +2026-04-08T22:04:53.918650Z 01O TEST 393/647 [4/4 concurrent test workers running] PASS Test max_per_second single span limiting [tmp/build_extension/tests/ext/single-span_sampling/limited-single-span.phpt] +2026-04-08T22:04:53.918660Z 01O TEST 394/647 [4/4 concurrent test workers running] SKIP Tracing Closures via install_hook() [tmp/build_extension/tests/ext/sandbox/install_hook/trace_generator_ge_php_84.phpt] reason: : test only stable on PHP >= 8.4 +2026-04-08T22:04:53.918670Z 01O TEST 395/647 [4/4 concurrent test workers running] +2026-04-08T22:04:54.419301Z 01O+ PASS DDTrace\hook_method posthook exception is sandboxed [tmp/build_extension/tests/ext/sandbox/hook_method/posthook_exceptions_02.phpt] +2026-04-08T22:04:54.419313Z 01O TEST 396/647 [4/4 concurrent test workers running] PASS Remap http.response.status_code to http.status_code - OTel HTTP Semantic Convention >= 1.21.0 [tmp/build_extension/tests/ext/otel_http_response_status_code_remapping.phpt] +2026-04-08T22:04:54.419319Z 01O TEST 397/647 [4/4 concurrent test workers running] PASS Sidecar connection in subprocess mode [tmp/build_extension/tests/ext/sidecar_connection_mode_subprocess.phpt] +2026-04-08T22:04:54.419326Z 01O TEST 398/647 [4/4 concurrent test workers running] +2026-04-08T22:04:55.921310Z 01O+ PASS E_ERROR fatal errors are tracked from hitting the max execution time [tmp/build_extension/tests/ext/sandbox/fatal_errors_are_tracked_003.phpt] +2026-04-08T22:04:55.921323Z 01O TEST 399/647 [4/4 concurrent test workers running] PASS Test get_memory_limit() returning correct values [tmp/build_extension/tests/ext/get_memory_limit_set_by_percentage.phpt] +2026-04-08T22:04:55.921330Z 01O TEST 400/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Tracing closure safely uses variables from outside scope [tmp/build_extension/tests/ext/sandbox-regression/closure_accessing_outside_variables.phpt] +2026-04-08T22:04:55.921361Z 01O TEST 401/647 [4/4 concurrent test workers running] PASS Basic functionality of dd_trace_serialize_msgpack() [tmp/build_extension/tests/ext/dd_trace_serialize_msgpack.phpt] +2026-04-08T22:04:55.921380Z 01O TEST 402/647 [4/4 concurrent test workers running] +2026-04-08T22:04:56.422263Z 01O+ PASS Sidecar connection in auto mode (default) [tmp/build_extension/tests/ext/sidecar_connection_mode_auto.phpt] +2026-04-08T22:04:56.422275Z 01O TEST 403/647 [4/4 concurrent test workers running] PASS For now, even when trace was generated by APM the produced output on standalone is 02 on _dd.p.ts [tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_asm_standalone_08.phpt] +2026-04-08T22:04:56.422281Z 01O TEST 404/647 [4/4 concurrent test workers running] PASS DDTrace\hook_method posthook error is sandboxed [tmp/build_extension/tests/ext/sandbox/hook_method/posthook_error_01.phpt] +2026-04-08T22:04:56.422292Z 01O TEST 405/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Do not throw exceptions when verifying if method or function exists [tmp/build_extension/tests/ext/sandbox-regression/do_not_check_if_class_or_function_exists_by_default.phpt] +2026-04-08T22:04:56.422297Z 01O TEST 406/647 [4/4 concurrent test workers running] +2026-04-08T22:05:00.427335Z 01O+ PASS 'spans_created' internal metric [tmp/build_extension/tests/ext/telemetry/metrics_spans_created.phpt] +2026-04-08T22:05:00.427428Z 01O TEST 407/647 [4/4 concurrent test workers running] +2026-04-08T22:05:00.928059Z 01O+ PASS Test ts is only added to traces with ASM events [tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_asm_standalone_06.phpt] +2026-04-08T22:05:00.928082Z 01O TEST 408/647 [4/4 concurrent test workers running] PASS The sidecar trace flusher sender informs about changes to the agent sample rate [tmp/build_extension/tests/ext/background-sender/agent_sampling_sidecar.phpt] +2026-04-08T22:05:00.928091Z 01O TEST 409/647 [4/4 concurrent test workers running] PASS DDTrace\hook_method prehook [tmp/build_extension/tests/ext/sandbox/hook_method/prehook_01.phpt] +2026-04-08T22:05:00.928099Z 01O TEST 410/647 [4/4 concurrent test workers running] +2026-04-08T22:05:01.929475Z 01O+ PASS DD_APPSEC_SCA_ENABLED is set by INI [tmp/build_extension/tests/ext/appsec/sca_flag_is_sent_04.phpt] +2026-04-08T22:05:01.929487Z 01O TEST 411/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Private and protected methods are called from a tracing closure [tmp/build_extension/tests/ext/sandbox-regression/access_modifier_method_access_hook.phpt] +2026-04-08T22:05:01.929495Z 01O TEST 412/647 [4/4 concurrent test workers running] PASS The container ID is sent via HTTP headers to the Agent [tmp/build_extension/tests/ext/background-sender/agent_headers_container_id.phpt] +2026-04-08T22:05:01.929504Z 01O TEST 413/647 [4/4 concurrent test workers running] PASS Explicitly drop dd.p.dm if provided in propagated tags when the incoming sampling priority is reject [tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_drop_dm.phpt] +2026-04-08T22:05:01.929509Z 01O TEST 414/647 [4/4 concurrent test workers running] +2026-04-08T22:05:02.429979Z 01O+ PASS _dd.p.ksr preserves exact 0.000001 rate without rounding away [tmp/build_extension/tests/ext/priority_sampling/031-ksr-tag-exact-sixth-decimal.phpt] +2026-04-08T22:05:02.429992Z 01O TEST 415/647 [4/4 concurrent test workers running] PASS [Prehook Regression] Keep spans in limited mode (userland functions) [tmp/build_extension/tests/ext/sandbox-prehook/keep_spans_in_limited_tracing_userland_functions.phpt] +2026-04-08T22:05:02.430000Z 01O TEST 416/647 [4/4 concurrent test workers running] PASS Test get_memory_limit() returning correct values [tmp/build_extension/tests/ext/get_memory_limit_unlimited_set_by_percentage.phpt] +2026-04-08T22:05:02.430010Z 01O TEST 417/647 [4/4 concurrent test workers running] PASS Test hooking inherited internal constructors via install_hook() [tmp/build_extension/tests/ext/sandbox/install_hook/hook_internal_inherited_constructor.phpt] +2026-04-08T22:05:02.430014Z 01O TEST 418/647 [4/4 concurrent test workers running] PASS Reserved OTel attributes that have special meaning [tmp/build_extension/tests/ext/test_special_attributes_bis.phpt] +2026-04-08T22:05:02.430020Z 01O TEST 419/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Trace function with params [tmp/build_extension/tests/ext/sandbox-regression/with_params_function_hook.phpt] +2026-04-08T22:05:02.430073Z 01O TEST 420/647 [4/4 concurrent test workers running] PASS Test tracing via attributes [tmp/build_extension/tests/ext/traced_attribute.phpt] +2026-04-08T22:05:02.430078Z 01O TEST 421/647 [4/4 concurrent test workers running] SKIP Test dd_trace_check_memory_under_limit() returning correct values [tmp/build_extension/tests/ext/check_memory_under_limit_low_user_limit.phpt] reason: Zend MM must be enabled +2026-04-08T22:05:02.430084Z 01O TEST 422/647 [4/4 concurrent test workers running] SKIP runtime-id exists in meta when profiling is enabled [tmp/build_extension/tests/ext/profiling/runtime_id_01.phpt] reason: : requires profiling +2026-04-08T22:05:02.430090Z 01O TEST 423/647 [4/4 concurrent test workers running] +2026-04-08T22:05:02.930462Z 01O+ PASS http.response.status_code takes precedence over http.status_code [tmp/build_extension/tests/ext/otel_http_response_status_code_remapping_precedence.phpt] +2026-04-08T22:05:02.930498Z 01O TEST 424/647 [4/4 concurrent test workers running] PASS Use DDTrace\close_span() on span started within internal span [tmp/build_extension/tests/ext/start_span_without_closing.phpt] +2026-04-08T22:05:02.930602Z 01O TEST 425/647 [4/4 concurrent test workers running] SKIP If an agent unix domain socket exists it will try to connect to it [tmp/build_extension/tests/ext/background-sender/default_unix_domain_socket_agent.phpt] reason: : This test is flaky in CI environments. +2026-04-08T22:05:02.930619Z 01O TEST 426/647 [4/4 concurrent test workers running] PASS Test generate_distributed_tracing_headers() [tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_generate.phpt] +2026-04-08T22:05:02.930661Z 01O TEST 427/647 [4/4 concurrent test workers running] PASS Disabled telemetry test [tmp/build_extension/tests/ext/telemetry/disabled.phpt] +2026-04-08T22:05:02.930673Z 01O TEST 428/647 [4/4 concurrent test workers running] PASS DDTrace\hook_function prehook error is sandboxed (debug) [tmp/build_extension/tests/ext/sandbox/hook_function/prehook_error_02.phpt] +2026-04-08T22:05:02.930678Z 01O TEST 429/647 [4/4 concurrent test workers running] PASS DDTrace_hook_method is passed wrong parameters [tmp/build_extension/tests/ext/wrong-parameter-errors/DDTrace_hook_method.phpt] +2026-04-08T22:05:02.930685Z 01O TEST 430/647 [4/4 concurrent test workers running] PASS Test get_memory_limit() returning correct values [tmp/build_extension/tests/ext/get_memory_limit_unlimited_set_by_absolute.phpt] +2026-04-08T22:05:02.930696Z 01O TEST 431/647 [4/4 concurrent test workers running] +2026-04-08T22:05:03.431183Z 01O+ PASS Use DDTrace\close_span() on span started within internal span [tmp/build_extension/tests/ext/start_span_without_closing_autofinish.phpt] +2026-04-08T22:05:03.431195Z 01O TEST 432/647 [4/4 concurrent test workers running] PASS DDTrace\SpanData::getLink basic functionality [tmp/build_extension/tests/ext/dd_trace_span_data_get_link.phpt] +2026-04-08T22:05:03.431201Z 01O TEST 433/647 [4/4 concurrent test workers running] PASS Signal integration telemetry [tmp/build_extension/tests/ext/telemetry/integration.phpt] +2026-04-08T22:05:03.431211Z 01O TEST 434/647 [4/4 concurrent test workers running] PASS Setting a distributed tracing context if a span is already active [tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_overwrite_active_span.phpt] +2026-04-08T22:05:03.431268Z 01O TEST 435/647 [4/4 concurrent test workers running] PASS The AWS API Gateway proxy service name should fallback to global config [tmp/build_extension/tests/ext/inferred_proxy/fallback_service_name.phpt] +2026-04-08T22:05:03.431275Z 01O TEST 436/647 [4/4 concurrent test workers running] PASS deferred loading dispatch can be overridden [tmp/build_extension/tests/ext/sandbox/deferred_load_using_function.phpt] +2026-04-08T22:05:03.431285Z 01O TEST 437/647 [4/4 concurrent test workers running] PASS Test baggage header interaction with default configurations [tmp/build_extension/tests/ext/distributed_tracing/baggage/distributed_trace_baggage_default.phpt] +2026-04-08T22:05:03.431291Z 01O TEST 438/647 [4/4 concurrent test workers running] PASS Test \datadog\appsec\v2\track_user_login_success no user id given [tmp/build_extension/tests/ext/track_user_login_success_06.phpt] +2026-04-08T22:05:03.431295Z 01O TEST 439/647 [4/4 concurrent test workers running] +2026-04-08T22:05:03.931888Z 01O+ PASS Gracefully handle out-of-sync spans from traced function [user][default properties] [tmp/build_extension/tests/ext/sandbox/spans_out_of_sync_04.phpt] +2026-04-08T22:05:03.931911Z 01O TEST 440/647 [4/4 concurrent test workers running] PASS Test baggage header behavior with encoding and decoding [tmp/build_extension/tests/ext/distributed_tracing/baggage/distributed_trace_baggage_decoding_encoding.phpt] +2026-04-08T22:05:03.931920Z 01O TEST 441/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Tracing closure accesses private static method [tmp/build_extension/tests/ext/sandbox-regression/private_self_access.phpt] +2026-04-08T22:05:03.931943Z 01O TEST 442/647 [4/4 concurrent test workers running] PASS When DD_GIT_COMMIT_SHA is specified, _dd.git_commit_sha is injected [tmp/build_extension/tests/ext/integrations/source_code/commit_sha_env_var.phpt] +2026-04-08T22:05:03.931958Z 01O TEST 443/647 [4/4 concurrent test workers running] PASS The background sender informs about changes to the agent sample rate [tmp/build_extension/tests/ext/background-sender/agent_sampling.phpt] +2026-04-08T22:05:03.931966Z 01O TEST 444/647 [4/4 concurrent test workers running] PASS Ingest all spans [tmp/build_extension/tests/ext/single-span_sampling/accept-single-span.phpt] +2026-04-08T22:05:03.931973Z 01O TEST 445/647 [4/4 concurrent test workers running] +2026-04-08T22:05:04.432420Z 01O+ PASS DDTrace\hook_function prehook exception is sandboxed (debug) [tmp/build_extension/tests/ext/sandbox/hook_function/prehook_exceptions_02.phpt] +2026-04-08T22:05:04.432432Z 01O TEST 446/647 [4/4 concurrent test workers running] PASS Long running manual flush [tmp/build_extension/tests/ext/pcntl/pcntl_fork_long_running_manual.phpt] +2026-04-08T22:05:04.432438Z 01O TEST 447/647 [4/4 concurrent test workers running] PASS Values of an array are not redacted when the array base is in the DD_TRACE_HTTP_POST_DATA_PARAM_ALLOWED env var [tmp/build_extension/tests/ext/root_span_url_with_post_array_allowed.phpt] +2026-04-08T22:05:04.432481Z 01O TEST 448/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Trace extended method when called from parent class [tmp/build_extension/tests/ext/sandbox-regression/overriding_method_defined_in_parent.phpt] +2026-04-08T22:05:04.432487Z 01O TEST 449/647 [4/4 concurrent test workers running] +2026-04-08T22:05:04.933065Z 01O+ SKIP Send crashtracker report when segmentation fault signal is raised and config enables it [tmp/build_extension/tests/ext/crashtracker_segfault.phpt] reason: : intentionally causes segfaults +2026-04-08T22:05:04.933085Z 01O TEST 450/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Namespaced functions and methods are traced [tmp/build_extension/tests/ext/sandbox-regression/namespaces.phpt] +2026-04-08T22:05:04.933100Z 01O TEST 451/647 [4/4 concurrent test workers running] PASS Invalid _dd.p.ts - Non hexadecimal [tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_asm_standalone_03.phpt] +2026-04-08T22:05:04.933133Z 01O TEST 452/647 [4/4 concurrent test workers running] PASS Add meta struct string [tmp/build_extension/tests/ext/meta_struct.phpt] +2026-04-08T22:05:04.933147Z 01O TEST 453/647 [4/4 concurrent test workers running] SKIP Request init hook ignores fatal errors [tmp/build_extension/tests/ext/autoload-php-files/ignores_fatal_errors.phpt] reason: Zend MM must be enabled +2026-04-08T22:05:04.933155Z 01O TEST 454/647 [4/4 concurrent test workers running] PASS Serialization of a span with multiple span links [tmp/build_extension/tests/ext/dd_trace_span_data_serialization_with_links.phpt] +2026-04-08T22:05:04.933163Z 01O TEST 455/647 [4/4 concurrent test workers running] PASS Reserved OTel attributes that have special meaning [tmp/build_extension/tests/ext/test_special_attributes.phpt] +2026-04-08T22:05:04.933167Z 01O TEST 456/647 [4/4 concurrent test workers running] +2026-04-08T22:05:05.934525Z 01O+ PASS Assert that the default environment can be read from agent info [tmp/build_extension/tests/ext/request-replayer/dd_trace_agent_env.phpt] +2026-04-08T22:05:05.934540Z 01O TEST 457/647 [4/4 concurrent test workers running] PASS _dd.p.ksr propagated tag formats rate with up to 6 decimal digits and no trailing zeros [tmp/build_extension/tests/ext/priority_sampling/028-ksr-tag-formatting.phpt] +2026-04-08T22:05:05.934548Z 01O TEST 458/647 [4/4 concurrent test workers running] PASS [Prehook Regression] Exceptions and errors are ignored when inside a tracing closure [tmp/build_extension/tests/ext/sandbox-prehook/exceptions_and_errors_are_ignored_in_tracing_closure.phpt] +2026-04-08T22:05:05.934576Z 01O TEST 459/647 [4/4 concurrent test workers running] PASS Extract client IP address (no ip header set) [tmp/build_extension/tests/ext/extract_ip_addr.phpt] +2026-04-08T22:05:05.934587Z 01O TEST 460/647 [4/4 concurrent test workers running] +2026-04-08T22:05:13.444047Z 01O+ PASS Check the library config files [tmp/build_extension/tests/ext/library_config/local_config.phpt] +2026-04-08T22:05:13.444088Z 01O TEST 461/647 [4/4 concurrent test workers running] +2026-04-08T22:05:13.944451Z 01O+ PASS Bug #61728 (PHP crash when calling ob_start in request_shutdown phase) [tmp/build_extension/tests/ext/from_php_7_3_bug61728.phpt] +2026-04-08T22:05:13.944522Z 01O TEST 462/647 [4/4 concurrent test workers running] PASS Invalid (non-string) keys in span metadata are dropped [tmp/build_extension/tests/ext/sandbox/safe_to_string_metadata_drops_invalid_keys.phpt] +2026-04-08T22:05:13.944530Z 01O TEST 463/647 [4/4 concurrent test workers running] SKIP Test fiber observing [tmp/build_extension/tests/ext/fibers/fiber_stack_switch.phpt] reason: : Fibers are a PHP 8.1+ feature +2026-04-08T22:05:13.944540Z 01O TEST 464/647 [4/4 concurrent test workers running] PASS Test \datadog\appsec\v2\track_user_login_success when user is string [tmp/build_extension/tests/ext/track_user_login_success_01.phpt] +2026-04-08T22:05:13.944544Z 01O TEST 465/647 [4/4 concurrent test workers running] +2026-04-08T22:05:14.445100Z 01O+ PASS Verify the client ip is added when x-forwarded-for header is present. [tmp/build_extension/tests/ext/root_span_http_client_ip_x_forwarded_for.phpt] +2026-04-08T22:05:14.445142Z 01O TEST 466/647 [4/4 concurrent test workers running] PASS Keep spans in limited mode (userland methods) [tmp/build_extension/tests/ext/sandbox/keep_spans_in_limited_tracing_userland_methods.phpt] +2026-04-08T22:05:14.445149Z 01O TEST 467/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Trace protected method [tmp/build_extension/tests/ext/sandbox-regression/protected_method_hook.phpt] +2026-04-08T22:05:14.445183Z 01O TEST 468/647 [4/4 concurrent test workers running] PASS Static tracing closures will not bind $this [tmp/build_extension/tests/ext/sandbox/static_tracing_closures_will_not_bind_this.phpt] +2026-04-08T22:05:14.445199Z 01O TEST 469/647 [4/4 concurrent test workers running] PASS Transmit distributed header information to spans [tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_bogus_ids.phpt] +2026-04-08T22:05:14.445206Z 01O TEST 470/647 [4/4 concurrent test workers running] +2026-04-08T22:05:14.945864Z 01O+ PASS [Sandbox regression] Trace method with params [tmp/build_extension/tests/ext/sandbox-regression/with_params_method_hook.phpt] +2026-04-08T22:05:14.945885Z 01O TEST 471/647 [4/4 concurrent test workers running] PASS Client IP should be collected if env DD_TRACE_CLIENT_IP_ENABLED is set to true [tmp/build_extension/tests/ext/ip_collection_03.phpt] +2026-04-08T22:05:14.945892Z 01O TEST 472/647 [4/4 concurrent test workers running] PASS DDTrace\hook_function prehook is passed the correct args (variadic) [tmp/build_extension/tests/ext/sandbox/hook_function/prehook_02.phpt] +2026-04-08T22:05:14.945902Z 01O TEST 473/647 [4/4 concurrent test workers running] PASS Existing errors are kept [tmp/build_extension/tests/ext/sandbox/get_last_error.phpt] +2026-04-08T22:05:14.945906Z 01O TEST 474/647 [4/4 concurrent test workers running] PASS DDTrace\hook_method prehook is passed the correct args (variadic) [tmp/build_extension/tests/ext/sandbox/hook_method/prehook_02.phpt] +2026-04-08T22:05:14.945911Z 01O TEST 475/647 [4/4 concurrent test workers running] +2026-04-08T22:05:15.446376Z 01O+ PASS Filesystem integration depends on RASP. If RASP is enabled but wrapped functions are not used, it is not enabled [tmp/build_extension/tests/ext/telemetry/integration_filesystem_02.phpt] +2026-04-08T22:05:15.446443Z 01O TEST 476/647 [4/4 concurrent test workers running] PASS Distributed tracing headers propagate with curl_multi_exec() and headers set with curl_setopt_array() [tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_multi_exec_existing_headers_002.phpt] +2026-04-08T22:05:15.446451Z 01O TEST 477/647 [4/4 concurrent test workers running] PASS Exceptions are handled in the correct catch frame [tmp/build_extension/tests/ext/sandbox/exception_handled_in_correct_catch_frame.phpt] +2026-04-08T22:05:15.446466Z 01O TEST 478/647 [4/4 concurrent test workers running] PASS Basic Git Metadata Injection from global tags (Repository URL & Commit Sha) [tmp/build_extension/tests/ext/integrations/source_code/git_metadata_injection_from_global_tags.phpt] +2026-04-08T22:05:15.446471Z 01O TEST 479/647 [4/4 concurrent test workers running] PASS Test creating a new span stack [tmp/build_extension/tests/ext/span_stack/start_span_stack.phpt] +2026-04-08T22:05:15.446477Z 01O TEST 480/647 [4/4 concurrent test workers running] PASS DogStatsD is disabled in agentlessmode [tmp/build_extension/tests/ext/dogstatsd/disabled_if_agentless.phpt] +2026-04-08T22:05:15.446484Z 01O TEST 481/647 [4/4 concurrent test workers running] PASS DD_APPSEC_SCA_ENABLED flag is sent to via telemetry with true [tmp/build_extension/tests/ext/appsec/sca_flag_is_sent_02.phpt] +2026-04-08T22:05:15.446492Z 01O TEST 482/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Trace class constructor [tmp/build_extension/tests/ext/sandbox-regression/overriding_construct.phpt] +2026-04-08T22:05:15.446498Z 01O TEST 483/647 [4/4 concurrent test workers running] +2026-04-08T22:05:15.947162Z 01O+ PASS hook_method posthook should have access only to public members [tmp/build_extension/tests/ext/sandbox/hook_method/posthook_access_01.phpt] +2026-04-08T22:05:15.947176Z 01O TEST 484/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Untrace a function [tmp/build_extension/tests/ext/sandbox-regression/reset_function_tracing.phpt] +2026-04-08T22:05:15.947181Z 01O TEST 485/647 [4/4 concurrent test workers running] PASS DDTrace\hook_function posthook is called at exit (shutdown handler) [tmp/build_extension/tests/ext/sandbox/hook_function/posthook_exit_02.phpt] +2026-04-08T22:05:15.947190Z 01O TEST 486/647 [4/4 concurrent test workers running] PASS run sampling algorithm on multiple trace IDs and ensure that the results are deterministic [tmp/build_extension/tests/ext/priority_sampling/024-deterministic-sampling.phpt] +2026-04-08T22:05:15.947203Z 01O TEST 487/647 [4/4 concurrent test workers running] PASS Root span with http.url and unobfuscated query string with empty regex [tmp/build_extension/tests/ext/root_span_url_with_query_params_obfuscation_empty.phpt] +2026-04-08T22:05:15.947210Z 01O TEST 488/647 [4/4 concurrent test workers running] PASS dd_trace_closed_spans_count() tracks closed spans from userland and C-level [tmp/build_extension/tests/ext/sandbox/dd_trace_closed_spans_count.phpt] +2026-04-08T22:05:15.947223Z 01O TEST 489/647 [4/4 concurrent test workers running] PASS priority_sampling default decision retained [tmp/build_extension/tests/ext/priority_sampling/012-default.phpt] +2026-04-08T22:05:15.947278Z 01O TEST 490/647 [4/4 concurrent test workers running] PASS Span creation with distributed context set before starting span [tmp/build_extension/tests/ext/inferred_proxy/propagated_tags_before_span_start.phpt] +2026-04-08T22:05:15.947285Z 01O TEST 491/647 [4/4 concurrent test workers running] PASS Gracefully handle out-of-sync spans from traced function [internal] [tmp/build_extension/tests/ext/sandbox/spans_out_of_sync_01.phpt] +2026-04-08T22:05:15.947294Z 01O TEST 492/647 [4/4 concurrent test workers running] PASS Do not execute the default spl_autoload implementation if no autoloader is specified [tmp/build_extension/tests/ext/autoload-php-files/skip_default_autoloader.phpt] +2026-04-08T22:05:15.947298Z 01O TEST 493/647 [4/4 concurrent test workers running] +2026-04-08T22:05:16.447763Z 01O+ PASS Invalid _dd.p.ts - More bits than allowed [tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_asm_standalone_04.phpt] +2026-04-08T22:05:16.447774Z 01O TEST 494/647 [4/4 concurrent test workers running] PASS Filesystem integration depends on RASP. If RASP is enabled and wrapped function are used, then it is enabled [tmp/build_extension/tests/ext/telemetry/integration_filesystem_03.phpt] +2026-04-08T22:05:16.447781Z 01O TEST 495/647 [4/4 concurrent test workers running] PASS Test consume_distributed_tracing_headers() with function argument [tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_consume_func.phpt] +2026-04-08T22:05:16.447789Z 01O TEST 496/647 [4/4 concurrent test workers running] PASS Thread mode sidecar uses abstract Unix socket [tmp/build_extension/tests/ext/background-sender/sidecar_thread_mode_permissions.phpt] +2026-04-08T22:05:16.447794Z 01O TEST 497/647 [4/4 concurrent test workers running] PASS Transmit distributed header information to spans via B3 headers [tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_inherit_b3.phpt] +2026-04-08T22:05:16.447799Z 01O TEST 498/647 [4/4 concurrent test workers running] +2026-04-08T22:05:16.948574Z 01O+ PASS Test delayed resolution of tracing attributes [tmp/build_extension/tests/ext/traced_attribute_delayed.phpt] +2026-04-08T22:05:16.948588Z 01O TEST 499/647 [4/4 concurrent test workers running] PASS [Prehook regression] Private and protected properties are accessed from a tracing closure [tmp/build_extension/tests/ext/sandbox-prehook/access_modifier_property_access_hook.phpt] +2026-04-08T22:05:16.948594Z 01O TEST 500/647 [4/4 concurrent test workers running] PASS DDTrace\hook_method prehook error is sandboxed (debug) [tmp/build_extension/tests/ext/sandbox/hook_method/prehook_error_02.phpt] +2026-04-08T22:05:16.948602Z 01O TEST 501/647 [4/4 concurrent test workers running] PASS DDTrace\hook_function prehook exception is sandboxed (internal) [tmp/build_extension/tests/ext/sandbox/hook_function/prehook_exceptions_03.phpt] +2026-04-08T22:05:16.948615Z 01O TEST 502/647 [4/4 concurrent test workers running] PASS Exit gracefully handles a dropped span [tmp/build_extension/tests/ext/sandbox/exit_and_drop_span.phpt] +2026-04-08T22:05:16.948622Z 01O TEST 503/647 [4/4 concurrent test workers running] PASS Client IP should not be collected if ini dd_trace.client_ip_header_disabled is set to true [tmp/build_extension/tests/ext/ip_collection_04.phpt] +2026-04-08T22:05:16.948674Z 01O TEST 504/647 [4/4 concurrent test workers running] PASS Span metrics is safely converted to numerics without errors or exceptions [tmp/build_extension/tests/ext/sandbox/safe_to_string_metrics.phpt] +2026-04-08T22:05:16.948679Z 01O TEST 505/647 [4/4 concurrent test workers running] PASS [Sandbox] Hook implementations of interface methods [tmp/build_extension/tests/ext/sandbox/interface_hook.phpt] +2026-04-08T22:05:16.948699Z 01O TEST 506/647 [4/4 concurrent test workers running] PASS Ensure we can read C configuration data [tmp/build_extension/tests/ext/read_c_configuration.phpt] +2026-04-08T22:05:16.948731Z 01O TEST 507/647 [4/4 concurrent test workers running] PASS Test that individual environment variables take precedence over DD_TAGS [tmp/build_extension/tests/ext/ust_precedence_over_ddtags.phpt] +2026-04-08T22:05:16.948737Z 01O TEST 508/647 [4/4 concurrent test workers running] +2026-04-08T22:05:17.449285Z 01O+ PASS When ASM tracing is disabled and there is asm event, trace source tags is populated [tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_existing_headers_007.phpt] +2026-04-08T22:05:17.449298Z 01O TEST 509/647 [4/4 concurrent test workers running] PASS A PHP request timeout does not leak/segfault (run with leak detection) [tmp/build_extension/tests/ext/request_timeout_01.phpt] +2026-04-08T22:05:17.449305Z 01O TEST 510/647 [4/4 concurrent test workers running] PASS priority_sampling service mapping [tmp/build_extension/tests/ext/priority_sampling/013-rule-service-mapped.phpt] +2026-04-08T22:05:17.449328Z 01O TEST 511/647 [4/4 concurrent test workers running] PASS Adding additional function arguments on internal functions via install_hook() [tmp/build_extension/tests/ext/sandbox/install_hook/replace_hook_args_internal.phpt] +2026-04-08T22:05:17.449338Z 01O TEST 512/647 [4/4 concurrent test workers running] PASS Auto-flushing will not instrument while flushing [tmp/build_extension/tests/ext/sandbox/auto_flush_disables_tracing.phpt] +2026-04-08T22:05:17.449346Z 01O TEST 513/647 [4/4 concurrent test workers running] PASS Request init hook loads files without using multibyte flag [tmp/build_extension/tests/ext/autoload-php-files/file_contains_non_printable_character.phpt] +2026-04-08T22:05:17.449359Z 01O TEST 514/647 [4/4 concurrent test workers running] PASS An Inferred Span should not be created on missing headers [tmp/build_extension/tests/ext/inferred_proxy/incomplete_headers.phpt] +2026-04-08T22:05:17.449363Z 01O TEST 515/647 [4/4 concurrent test workers running] +2026-04-08T22:05:17.949771Z 01O+ PASS Check sample rate is in effect [tmp/build_extension/tests/ext/single-span_sampling/read-single-span-sampling-config-from-file.phpt] +2026-04-08T22:05:17.949792Z 01O TEST 516/647 [4/4 concurrent test workers running] SKIP rate limiter always allow when DD_EXPERIMENTAL_APPSEC_STANDALONE_ENABLED enabled [tmp/build_extension/tests/ext/limiter/003-limiter-with-asm-standalone.phpt] reason: timing sensitive test, does not make sense with valgrind +2026-04-08T22:05:17.949850Z 01O TEST 517/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Method invoked via reflection correctly returns created object [tmp/build_extension/tests/ext/sandbox-regression/method_invoked_via_reflection.phpt] +2026-04-08T22:05:17.949872Z 01O TEST 518/647 [4/4 concurrent test workers running] PASS DDTrace\hook_function posthook error is sandboxed [tmp/build_extension/tests/ext/sandbox/hook_function/posthook_error_01.phpt] +2026-04-08T22:05:17.949891Z 01O TEST 519/647 [4/4 concurrent test workers running] SKIP [crasht] opcache tags are attached to crash report [tmp/build_extension/tests/ext/crashtracker_jit_tags.phpt] reason: : intentionally causes segfaults +2026-04-08T22:05:17.949903Z 01O TEST 520/647 [4/4 concurrent test workers running] PASS _dd.p.ksr propagated tag is set for rule-based sampling [tmp/build_extension/tests/ext/priority_sampling/025-ksr-tag-rule-sampling.phpt] +2026-04-08T22:05:17.949914Z 01O TEST 521/647 [4/4 concurrent test workers running] PASS [Prehook Regression] Exceptions get attached to spans [tmp/build_extension/tests/ext/sandbox-prehook/exception_handling.phpt] +2026-04-08T22:05:17.949919Z 01O TEST 522/647 [4/4 concurrent test workers running] PASS DDTrace\hook_function posthook works with variadic functions [tmp/build_extension/tests/ext/sandbox/hook_function/posthook_variadic.phpt] +2026-04-08T22:05:17.949929Z 01O TEST 523/647 [4/4 concurrent test workers running] PASS DD_TRACE_SIDECAR_CONNECTION_MODE configuration parsing [tmp/build_extension/tests/ext/sidecar_connection_mode_config.phpt] +2026-04-08T22:05:17.949941Z 01O TEST 524/647 [4/4 concurrent test workers running] PASS Finally block should only be entered once [tmp/build_extension/tests/ext/sandbox-regression/uncaught_exception_with_finally.phpt] +2026-04-08T22:05:17.949944Z 01O TEST 525/647 [4/4 concurrent test workers running] +2026-04-08T22:05:18.450471Z 01O+ PASS Distributed tracing headers propagate with curl_multi_exec() after curl_copy_handle() [tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_multi_exec_copy_handle.phpt] +2026-04-08T22:05:18.450492Z 01O TEST 526/647 [4/4 concurrent test workers running] PASS Send DogStatsD metrics over an Unix Domain Socket [tmp/build_extension/tests/ext/dogstatsd/metrics_over_uds.phpt] +2026-04-08T22:05:18.450500Z 01O TEST 527/647 [4/4 concurrent test workers running] PASS [Prehook Regression] Exception in tracing closure gets logged [tmp/build_extension/tests/ext/sandbox-prehook/exception_error_log.phpt] +2026-04-08T22:05:18.450510Z 01O TEST 528/647 [4/4 concurrent test workers running] PASS _dd.p.ksr rounds rate below 6-decimal precision to 0 [tmp/build_extension/tests/ext/priority_sampling/032-ksr-tag-below-precision-rounds-to-zero.phpt] +2026-04-08T22:05:18.450515Z 01O TEST 529/647 [4/4 concurrent test workers running] PASS Global explicitly set priority sampling must be respected [tmp/build_extension/tests/ext/priority_sampling/manual_global_override.phpt] +2026-04-08T22:05:18.450521Z 01O TEST 530/647 [4/4 concurrent test workers running] PASS DDTrace_trace_id is passed wrong parameters [tmp/build_extension/tests/ext/wrong-parameter-errors/DDTrace_trace_id.phpt] +2026-04-08T22:05:18.450578Z 01O TEST 531/647 [4/4 concurrent test workers running] PASS Functions that return by reference are instrumented [tmp/build_extension/tests/ext/sandbox/return_by_ref.phpt] +2026-04-08T22:05:18.450588Z 01O TEST 532/647 [4/4 concurrent test workers running] PASS Test \DDTrace\set_user with no metadata [tmp/build_extension/tests/ext/set_user_no_metadata.phpt] +2026-04-08T22:05:18.450596Z 01O TEST 533/647 [4/4 concurrent test workers running] PASS Functions that return generators are instrumented [tmp/build_extension/tests/ext/sandbox/generator.phpt] +2026-04-08T22:05:18.450610Z 01O TEST 534/647 [4/4 concurrent test workers running] PASS Distributed tracing headers propagate when curl_multi_init() is called before curl_init() [tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_multi_exec_002.phpt] +2026-04-08T22:05:18.450618Z 01O TEST 535/647 [4/4 concurrent test workers running] PASS Test baggage header interaction with bytes limits configured [tmp/build_extension/tests/ext/distributed_tracing/baggage/distributed_trace_baggage_configured_bytes.phpt] +2026-04-08T22:05:18.450625Z 01O TEST 536/647 [4/4 concurrent test workers running] PASS Distributed tracing headers propagate after curl_copy_handle() [tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_copy_handle.phpt] +2026-04-08T22:05:18.450651Z 01O TEST 537/647 [4/4 concurrent test workers running] PASS DDTrace_set_distributed_tracing_context is passed wrong parameters [tmp/build_extension/tests/ext/wrong-parameter-errors/set_distributed_tracing_context.phpt] +2026-04-08T22:05:18.450661Z 01O TEST 538/647 [4/4 concurrent test workers running] +2026-04-08T22:05:18.951247Z 01O+ PASS dd_trace_send_traces_via_thread is passed wrong parameters [tmp/build_extension/tests/ext/wrong-parameter-errors/dd_trace_send_traces_via_thread.phpt] +2026-04-08T22:05:18.951261Z 01O TEST 539/647 [4/4 concurrent test workers running] PASS DDTrace\trace_function() can trace with internal spans [tmp/build_extension/tests/ext/sandbox/dd_trace_function_complex.phpt] +2026-04-08T22:05:18.951271Z 01O TEST 540/647 [4/4 concurrent test workers running] PASS Priority sampling rules should use the inferred span's service & resource [tmp/build_extension/tests/ext/inferred_proxy/sampling_rules.phpt] +2026-04-08T22:05:18.951280Z 01O TEST 541/647 [4/4 concurrent test workers running] PASS Distributed tracing headers propagate with curl_multi_exec() [tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_multi_exec_001.phpt] +2026-04-08T22:05:18.951286Z 01O TEST 542/647 [4/4 concurrent test workers running] PASS Test \datadog\appsec\v2\track_user_login_success login parameter takes precedence over login value on user object [tmp/build_extension/tests/ext/track_user_login_success_03.phpt] +2026-04-08T22:05:18.951292Z 01O TEST 543/647 [4/4 concurrent test workers running] PASS DDTrace\hook_method prehook does not mess up spans with children [tmp/build_extension/tests/ext/sandbox/hook_method/prehook_span_ids_02.phpt] +2026-04-08T22:05:18.951300Z 01O TEST 544/647 [4/4 concurrent test workers running] PASS Test observing span creation [tmp/build_extension/tests/ext/span_create_observer.phpt] +2026-04-08T22:05:18.951368Z 01O TEST 545/647 [4/4 concurrent test workers running] PASS Test dd_trace_check_memory_under_limit() returning correct values [tmp/build_extension/tests/ext/check_memory_under_limit_high_limit.phpt] +2026-04-08T22:05:18.951375Z 01O TEST 546/647 [4/4 concurrent test workers running] PASS allowNestedHook() [tmp/build_extension/tests/ext/sandbox/install_hook/allow_nested_hook.phpt] +2026-04-08T22:05:18.951383Z 01O TEST 547/647 [4/4 concurrent test workers running] +2026-04-08T22:05:19.451887Z 01O+ PASS Disabling root span removes the root span properly [tmp/build_extension/tests/ext/disabling_root_span_generation_at_runtime.phpt] +2026-04-08T22:05:19.451905Z 01O TEST 548/647 [4/4 concurrent test workers running] PASS DDTrace\hook_function posthook exception is sandboxed (internal) [tmp/build_extension/tests/ext/sandbox/hook_function/posthook_exceptions_03.phpt] +2026-04-08T22:05:19.451913Z 01O TEST 549/647 [4/4 concurrent test workers running] PASS _dd.p.ts is not manipulated when no asm event [tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_asm_standalone_09.phpt] +2026-04-08T22:05:19.451938Z 01O TEST 550/647 [4/4 concurrent test workers running] PASS Verify the right span tags are present when multiple XFF headers are provided. [tmp/build_extension/tests/ext/root_span_http_client_ip_duplicate_ip_headers.phpt] +2026-04-08T22:05:19.451947Z 01O TEST 551/647 [4/4 concurrent test workers running] PASS HTTP server error status configuration parsing test [tmp/build_extension/tests/ext/error_status_configuration/http_error_status_parsing.phpt] +2026-04-08T22:05:19.451956Z 01O TEST 552/647 [4/4 concurrent test workers running] PASS Retrieve the filename where the function/method originated from [tmp/build_extension/tests/ext/sandbox/install_hook/get_source_file.phpt] +2026-04-08T22:05:19.451965Z 01O TEST 553/647 [4/4 concurrent test workers running] PASS [Prehook regression] Trace public static method [tmp/build_extension/tests/ext/sandbox-prehook/trace_static_method.phpt] +2026-04-08T22:05:19.451971Z 01O TEST 554/647 [4/4 concurrent test workers running] +2026-04-08T22:05:19.952705Z 01O+ PASS [Prehook regression] Private and protected methods are called from a tracing closure [tmp/build_extension/tests/ext/sandbox-prehook/access_modifier_method_access_hook.phpt] +2026-04-08T22:05:19.952724Z 01O TEST 555/647 [4/4 concurrent test workers running] PASS Extension is not compiled with STATIC_TLS [tmp/build_extension/tests/ext/extension_no_static_tls.phpt] +2026-04-08T22:05:19.952745Z 01O TEST 556/647 [4/4 concurrent test workers running] PASS Test invalid $_SERVER values are properly ignored [tmp/build_extension/tests/ext/extract_server_values.phpt] +2026-04-08T22:05:19.952749Z 01O TEST 557/647 [4/4 concurrent test workers running] +2026-04-08T22:05:20.453289Z 01O+ PASS Test class scoped file inclusion hooking [tmp/build_extension/tests/ext/sandbox/install_hook/hook_scoped_file.phpt] +2026-04-08T22:05:20.453300Z 01O TEST 558/647 [4/4 concurrent test workers running] PASS Distributed tracing headers propagate existing headers on error: curl_setopt_array() [tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_existing_headers_003.phpt] +2026-04-08T22:05:20.453349Z 01O TEST 559/647 [4/4 concurrent test workers running] PASS [Sandbox] Hook implementations of interface methods on all direct implementors [tmp/build_extension/tests/ext/sandbox/interface_inherit_hook_explicit_reimplement.phpt] +2026-04-08T22:05:20.453360Z 01O TEST 560/647 [4/4 concurrent test workers running] SKIP Ensure proper interoperability with multiple observers installed on observer removal [tmp/build_extension/tests/ext/sandbox/install_hook/remove_executing_hook.phpt] reason: : zend_test may not be loaded twice +2026-04-08T22:05:20.453368Z 01O TEST 561/647 [4/4 concurrent test workers running] +2026-04-08T22:05:20.953431Z 01O+ SKIP Don't dump backtrace when segmentation fault signal is raised and config is default [tmp/build_extension/tests/ext/segfault_backtrace_disabled.phpt] reason: : intentionally causes segfaults +2026-04-08T22:05:20.953452Z 01O TEST 562/647 [4/4 concurrent test workers running] PASS Sampling priority is changed to user keep if no asm upstream and asm standalone enabled. Also apm disabled tag is added [tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_asm_standalone_01.phpt] +2026-04-08T22:05:20.953460Z 01O TEST 563/647 [4/4 concurrent test workers running] PASS An empty container ID is not sent via HTTP headers to the Agent [tmp/build_extension/tests/ext/background-sender/agent_headers_container_id_empty.phpt] +2026-04-08T22:05:20.953485Z 01O TEST 564/647 [4/4 concurrent test workers running] PASS Verify the client ip is added from the peer IP when no XFF header is available. [tmp/build_extension/tests/ext/root_span_http_client_ip.phpt] +2026-04-08T22:05:20.953501Z 01O TEST 565/647 [4/4 concurrent test workers running] PASS Invalid rule json: default sampling rate applies [tmp/build_extension/tests/ext/priority_sampling/invalid-json-rule.phpt] +2026-04-08T22:05:20.953507Z 01O TEST 566/647 [4/4 concurrent test workers running] +2026-04-08T22:05:21.454111Z 01O+ PASS Test \DDTrace\set_user with propagation enabled by default through configuration [tmp/build_extension/tests/ext/set_user_with_propagation_by_default.phpt] +2026-04-08T22:05:21.454126Z 01O TEST 567/647 [4/4 concurrent test workers running] PASS Test baggage span tags specifying keys [tmp/build_extension/tests/ext/distributed_tracing/baggage/baggage_span_tags_keys.phpt] +2026-04-08T22:05:21.454132Z 01O TEST 568/647 [4/4 concurrent test workers running] PASS root span with DD_TRACE_URL_AS_RESOURCE_NAMES_ENABLED [tmp/build_extension/tests/ext/root_span_url_as_resource_names.phpt] +2026-04-08T22:05:21.454142Z 01O TEST 569/647 [4/4 concurrent test workers running] PASS Installing a live debugger span probe [tmp/build_extension/tests/ext/live-debugger/debugger_span_probe.phpt] +2026-04-08T22:05:21.454147Z 01O TEST 570/647 [4/4 concurrent test workers running] SKIP [Prehook regression] Trace public static method [tmp/build_extension/tests/ext/sandbox/preinitialized_tracing_of_method.phpt] reason: : Not a supported scenario anymore +2026-04-08T22:05:21.454153Z 01O TEST 571/647 [4/4 concurrent test workers running] PASS priority_sampling rule with name reject [tmp/build_extension/tests/ext/priority_sampling/006-rule-name-reject.phpt] +2026-04-08T22:05:21.454209Z 01O TEST 572/647 [4/4 concurrent test workers running] PASS Skip previously registered autoloader on match [tmp/build_extension/tests/ext/autoload-php-files/skip_registered_autoloader_match.phpt] +2026-04-08T22:05:21.454221Z 01O TEST 573/647 [4/4 concurrent test workers running] +2026-04-08T22:05:21.954892Z 01O+ SKIP Span metadata is safely converted to strings without errors or exceptions [tmp/build_extension/tests/ext/sandbox/safe_to_string_metadata_ge_php_84.phpt] reason: : test only stable on PHP >= 8.4 +2026-04-08T22:05:21.954906Z 01O TEST 574/647 [4/4 concurrent test workers running] PASS Tracing generic callables via install_hook() [tmp/build_extension/tests/ext/sandbox/install_hook/trace_callable.phpt] +2026-04-08T22:05:21.954912Z 01O TEST 575/647 [4/4 concurrent test workers running] PASS Test autoclosing of spans on abandoned span stacks [tmp/build_extension/tests/ext/span_stack/span_trace_stack_autoclose.phpt] +2026-04-08T22:05:21.954920Z 01O TEST 576/647 [4/4 concurrent test workers running] PASS Execute the default spl_autoload implementation if spl_autoload_register() is called without args [tmp/build_extension/tests/ext/autoload-php-files/default_spl_autoloader.phpt] +2026-04-08T22:05:21.954926Z 01O TEST 577/647 [4/4 concurrent test workers running] PASS Send DogStatsD metrics over a UDP socket [tmp/build_extension/tests/ext/dogstatsd/metrics_over_udp.phpt] +2026-04-08T22:05:21.954934Z 01O TEST 578/647 [4/4 concurrent test workers running] PASS Calling DDTrace\trace_method() overwrites previous tracing functions in unresolved aliases [tmp/build_extension/tests/ext/sandbox/dd_trace_function_alias_overwrite.phpt] +2026-04-08T22:05:21.954949Z 01O TEST 579/647 [4/4 concurrent test workers running] +2026-04-08T22:05:22.457387Z 01O+ PASS DDTrace\hook_method posthook is passed the correct args (variadic) [tmp/build_extension/tests/ext/sandbox/hook_method/posthook_02.phpt] +2026-04-08T22:05:22.457399Z 01O TEST 580/647 [4/4 concurrent test workers running] +2026-04-08T22:05:25.960179Z 01O+ PASS Simple telemetry test [tmp/build_extension/tests/ext/telemetry/simple.phpt] +2026-04-08T22:05:25.960214Z 01O TEST 581/647 [4/4 concurrent test workers running] PASS priority_sampling regression for GH-1828 [tmp/build_extension/tests/ext/priority_sampling/gh-1828.phpt] +2026-04-08T22:05:25.960221Z 01O TEST 582/647 [4/4 concurrent test workers running] PASS [regression] The limiter must reset after a flush [tmp/build_extension/tests/ext/sandbox-regression/dd_trace_tracer_limiter_reset_flush.phpt] +2026-04-08T22:05:25.960242Z 01O TEST 583/647 [4/4 concurrent test workers running] +2026-04-08T22:05:26.460677Z 01O+ PASS overrideException() [tmp/build_extension/tests/ext/sandbox/install_hook/override_exception.phpt] +2026-04-08T22:05:26.460686Z 01O TEST 584/647 [4/4 concurrent test workers running] +2026-04-08T22:05:27.462127Z 01O+ PASS HTTP headers are sent to the Agent from the background sender over an unix domain socket [tmp/build_extension/tests/ext/background-sender/agent_headers_unix_domain_socket.phpt] +2026-04-08T22:05:27.462139Z 01O TEST 585/647 [4/4 concurrent test workers running] +2026-04-08T22:05:27.962461Z 01O+ PASS Gracefully handle out-of-sync spans from traced function [internal][default properties] [tmp/build_extension/tests/ext/sandbox/spans_out_of_sync_02.phpt] +2026-04-08T22:05:27.962534Z 01O TEST 586/647 [4/4 concurrent test workers running] PASS Non regression test for use-after-free segfault in exception replay [tmp/build_extension/tests/ext/live-debugger/exception-replay_non_regression_2989_mysqli.phpt] +2026-04-08T22:05:27.962543Z 01O TEST 587/647 [4/4 concurrent test workers running] PASS Test \datadog\appsec\v2\track_user_login_failure without metadata [tmp/build_extension/tests/ext/track_user_login_failure_02.phpt] +2026-04-08T22:05:27.962550Z 01O TEST 588/647 [4/4 concurrent test workers running] PASS Root span with query params whitelist [tmp/build_extension/tests/ext/root_span_url_with_query_params_whitelist.phpt] +2026-04-08T22:05:27.962555Z 01O TEST 589/647 [4/4 concurrent test workers running] PASS If peer.service is already set by the user, honor it [tmp/build_extension/tests/ext/peer_service_honor_user_value.phpt] +2026-04-08T22:05:27.962561Z 01O TEST 590/647 [4/4 concurrent test workers running] PASS Short running single fork [tmp/build_extension/tests/ext/pcntl/pcntl_fork_short_running_single.phpt] +2026-04-08T22:05:27.962568Z 01O TEST 591/647 [4/4 concurrent test workers running] PASS priority_sampling with manual.keep [tmp/build_extension/tests/ext/priority_sampling/019-manual.keep.phpt] +2026-04-08T22:05:27.962573Z 01O TEST 592/647 [4/4 concurrent test workers running] PASS Test \DDTrace\set_user with metadata [tmp/build_extension/tests/ext/set_user_with_metadata.phpt] +2026-04-08T22:05:27.962577Z 01O TEST 593/647 [4/4 concurrent test workers running] +2026-04-08T22:05:28.463233Z 01O+ PASS DDTrace\hook_method prehook exception is sandboxed (debug) [tmp/build_extension/tests/ext/sandbox/hook_method/prehook_exceptions_02.phpt] +2026-04-08T22:05:28.463246Z 01O TEST 594/647 [4/4 concurrent test workers running] PASS Check the library config files [tmp/build_extension/tests/ext/library_config/local_config_does_not_overload_env.phpt] +2026-04-08T22:05:28.463256Z 01O TEST 595/647 [4/4 concurrent test workers running] PASS Basic Git Metadata Injection from env var (Repository URL & Commit Sha) [tmp/build_extension/tests/ext/integrations/source_code/git_metadata_injection_from_env.phpt] +2026-04-08T22:05:28.463267Z 01O TEST 596/647 [4/4 concurrent test workers running] PASS Test baggage header behavior when configured by itself [tmp/build_extension/tests/ext/distributed_tracing/baggage/distributed_trace_baggage_alone.phpt] +2026-04-08T22:05:28.463272Z 01O TEST 597/647 [4/4 concurrent test workers running] PASS Properly set _dd.base_service when service name is manually changed [tmp/build_extension/tests/ext/base_service.phpt] +2026-04-08T22:05:28.463279Z 01O TEST 598/647 [4/4 concurrent test workers running] PASS Test \datadog\appsec\v2\track_user_login_success no user id or metadata given [tmp/build_extension/tests/ext/track_user_login_success_07.phpt] +2026-04-08T22:05:28.463286Z 01O TEST 599/647 [4/4 concurrent test workers running] +2026-04-08T22:05:28.963493Z 01O+ PASS Basic Git Metadata Injection from invalid .git files (Repository URL & Commit Sha) [tmp/build_extension/tests/ext/integrations/source_code/002/git_metadata_injection_from_invalid_files.phpt] +2026-04-08T22:05:28.963559Z 01O TEST 600/647 [4/4 concurrent test workers running] PASS dd_trace_serialize_msgpack() error conditions [tmp/build_extension/tests/ext/dd_trace_serialize_msgpack_error.phpt] +2026-04-08T22:05:28.963569Z 01O TEST 601/647 [4/4 concurrent test workers running] PASS Overriding function return value via install_hook() [tmp/build_extension/tests/ext/sandbox/install_hook/replace_hook_retval.phpt] +2026-04-08T22:05:28.963579Z 01O TEST 602/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Trace public static method [tmp/build_extension/tests/ext/sandbox-regression/trace_static_method.phpt] +2026-04-08T22:05:28.963583Z 01O TEST 603/647 [4/4 concurrent test workers running] PASS Span creation with distributed context [tmp/build_extension/tests/ext/inferred_proxy/distributed_tracing.phpt] +2026-04-08T22:05:28.963588Z 01O TEST 604/647 [4/4 concurrent test workers running] +2026-04-08T22:05:29.464178Z 01O+ PASS Setting custom distributed header information with invalid propagated tags [tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_span_link_from_headers_invalid_tags.phpt] +2026-04-08T22:05:29.464186Z 01O TEST 605/647 [4/4 concurrent test workers running] PASS dd_trace_function() is aliased to DDTrace\trace_function() [tmp/build_extension/tests/ext/sandbox/dd_trace_function_alias.phpt] +2026-04-08T22:05:29.464192Z 01O TEST 606/647 [4/4 concurrent test workers running] PASS Clone DDTrace\SpanData [tmp/build_extension/tests/ext/sandbox/span_clone.phpt] +2026-04-08T22:05:29.464200Z 01O TEST 607/647 [4/4 concurrent test workers running] PASS [Prehook regression] Trace variadic functions and methods [tmp/build_extension/tests/ext/sandbox-prehook/variable_length_parameter_list.phpt] +2026-04-08T22:05:29.464204Z 01O TEST 608/647 [4/4 concurrent test workers running] +2026-04-08T22:05:29.964773Z 01O+ PASS Exceptions are handled from a generator context [tmp/build_extension/tests/ext/sandbox/generator_with_exception.phpt] +2026-04-08T22:05:29.964787Z 01O TEST 609/647 [4/4 concurrent test workers running] PASS API Gateway span should be created from consuming distributed tracing headers [tmp/build_extension/tests/ext/inferred_proxy/consume_distributed_tracing_headers.phpt] +2026-04-08T22:05:29.964792Z 01O TEST 610/647 [4/4 concurrent test workers running] +2026-04-08T22:05:31.466778Z 01O+ PASS Filesystem integration depends on RASP. If RASP is not enabled, integration is disabled [tmp/build_extension/tests/ext/telemetry/integration_filesystem_01.phpt] +2026-04-08T22:05:31.466798Z 01O TEST 611/647 [4/4 concurrent test workers running] PASS Assess that the log integration is disabled by default [tmp/build_extension/tests/ext/logging_default_value.phpt] +2026-04-08T22:05:31.466805Z 01O TEST 612/647 [4/4 concurrent test workers running] PASS suppressCall() works with JIT [tmp/build_extension/tests/ext/sandbox/install_hook/suppress_call_jit.phpt] +2026-04-08T22:05:31.466814Z 01O TEST 613/647 [4/4 concurrent test workers running] PASS Fatal errors are ignored inside a tracing closure (PHP 7+) [tmp/build_extension/tests/ext/sandbox/fatal_errors_ignored_in_tracing_closure.phpt] +2026-04-08T22:05:31.466884Z 01O TEST 614/647 [4/4 concurrent test workers running] +2026-04-08T22:05:31.967510Z 01O+ PASS URL without host part in referrer [tmp/build_extension/tests/ext/referrer_extraction_03.phpt] +2026-04-08T22:05:31.967523Z 01O TEST 615/647 [4/4 concurrent test workers running] PASS Ensure caching does not bypass the span data write handler [tmp/build_extension/tests/ext/dd_trace_multiple_write.phpt] +2026-04-08T22:05:31.967532Z 01O TEST 616/647 [4/4 concurrent test workers running] PASS DDTrace\trace_function() can trace userland functions with internal spans [tmp/build_extension/tests/ext/sandbox/dd_trace_function_userland.phpt] +2026-04-08T22:05:31.967543Z 01O TEST 617/647 [4/4 concurrent test workers running] PASS Gracefully handle out-of-sync spans in closure itself [user] [tmp/build_extension/tests/ext/sandbox/spans_out_of_sync_05.phpt] +2026-04-08T22:05:31.967549Z 01O TEST 618/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Disable tracing disables all tracing from happening [tmp/build_extension/tests/ext/sandbox-regression/disable_tracing_disables_tracing.phpt] +2026-04-08T22:05:31.967554Z 01O TEST 619/647 [4/4 concurrent test workers running] +2026-04-08T22:05:32.468053Z 01O+ PASS DDTrace\hook_method returns false with diagnostic when no hook is passed [tmp/build_extension/tests/ext/sandbox/hook_method/03.phpt] +2026-04-08T22:05:32.468064Z 01O TEST 620/647 [4/4 concurrent test workers running] +2026-04-08T22:05:32.968878Z 01O+ PASS Report user config telemetry [tmp/build_extension/tests/ext/telemetry/config.phpt] +2026-04-08T22:05:32.968890Z 01O TEST 621/647 [4/4 concurrent test workers running] PASS Using DD_TRACE_LOG_FILE [tmp/build_extension/tests/ext/dd_trace_log_file.phpt] +2026-04-08T22:05:32.968899Z 01O TEST 622/647 [4/4 concurrent test workers running] PASS background sender should reject msgpack array prefix that does not match expected number of traces [tmp/build_extension/tests/ext/dd_trace_send_traces_via_thread_002.phpt] +2026-04-08T22:05:32.968906Z 01O TEST 623/647 [4/4 concurrent test workers running] +2026-04-08T22:05:33.469470Z 01O+ PASS DDTrace\hook_method posthook error is sandboxed (debug) [tmp/build_extension/tests/ext/sandbox/hook_method/posthook_error_02.phpt] +2026-04-08T22:05:33.469484Z 01O TEST 624/647 [4/4 concurrent test workers running] PASS [Prehook Regression] DDTrace\trace_method() can trace with internal spans [tmp/build_extension/tests/ext/sandbox-prehook/dd_trace_method.phpt] +2026-04-08T22:05:33.469493Z 01O TEST 625/647 [4/4 concurrent test workers running] PASS DDTrace\hook_function posthook is called with an exception; args are still good [tmp/build_extension/tests/ext/sandbox/hook_function/posthook_exceptions_01.phpt] +2026-04-08T22:05:33.469504Z 01O TEST 626/647 [4/4 concurrent test workers running] PASS HTTP endpoint resource renaming with DD_TRACE_RESOURCE_RENAMING_ALWAYS_SIMPLIFIED_ENDPOINT=true [tmp/build_extension/tests/ext/http_endpoint_resource_renaming_always_simplified.phpt] +2026-04-08T22:05:33.469518Z 01O TEST 627/647 [4/4 concurrent test workers running] +2026-04-08T22:05:33.970151Z 01O+ PASS Nested exceptions are recorded (GH2498) [tmp/build_extension/tests/ext/nested_exceptions.phpt] +2026-04-08T22:05:33.970219Z 01O TEST 628/647 [4/4 concurrent test workers running] PASS Ensure hooks are not invoked after the tracer has been disabled [tmp/build_extension/tests/ext/sandbox/install_hook/hook_not_invoked_if_tracer_disabled.phpt] +2026-04-08T22:05:33.970227Z 01O TEST 629/647 [4/4 concurrent test workers running] PASS Test try_drop_span() [tmp/build_extension/tests/ext/try_drop_span.phpt] +2026-04-08T22:05:33.970256Z 01O TEST 630/647 [4/4 concurrent test workers running] PASS Functions that return generators with 'yield from' are instrumented [tmp/build_extension/tests/ext/sandbox/generator_yield_from.phpt] +2026-04-08T22:05:33.970272Z 01O TEST 631/647 [4/4 concurrent test workers running] PASS Test creating a new trace [tmp/build_extension/tests/ext/span_stack/start_span_new_trace.phpt] +2026-04-08T22:05:33.970291Z 01O TEST 632/647 [4/4 concurrent test workers running] PASS Sample rate is not changed to 0 after first call during a minute when STANDALONE ASM is enabled and there is asm events [tmp/build_extension/tests/ext/background-sender/agent_sampling-standalone-asm_02.phpt] +2026-04-08T22:05:33.970297Z 01O TEST 633/647 [4/4 concurrent test workers running] +2026-04-08T22:05:34.470780Z 01O+ PASS [Sandbox] Hook implementations of abstract trait methods are not supported [tmp/build_extension/tests/ext/sandbox/abstract_trait_hook.phpt] +2026-04-08T22:05:34.470812Z 01O TEST 634/647 [4/4 concurrent test workers running] PASS Auto-flushing will attach an exception during exception cleanup [tmp/build_extension/tests/ext/sandbox/auto_flush_attach_exception.phpt] +2026-04-08T22:05:34.470819Z 01O TEST 635/647 [4/4 concurrent test workers running] PASS DDTrace\hook_method posthook [tmp/build_extension/tests/ext/sandbox/hook_method/posthook_01.phpt] +2026-04-08T22:05:34.470851Z 01O TEST 636/647 [4/4 concurrent test workers running] PASS Test \DDTrace\set_user with metadata and with usr.id as a distributed tag [tmp/build_extension/tests/ext/set_user_with_propagation_override_default.phpt] +2026-04-08T22:05:34.470868Z 01O TEST 637/647 [4/4 concurrent test workers running] PASS DDTrace\hook_function prehook works with variadic functions [tmp/build_extension/tests/ext/sandbox/hook_function/prehook_variadic.phpt] +2026-04-08T22:05:34.470876Z 01O TEST 638/647 [4/4 concurrent test workers running] PASS _dd.p.ksr uses decimal notation (not scientific) for very small sampling rates [tmp/build_extension/tests/ext/priority_sampling/029-ksr-tag-small-rate-formatting.phpt] +2026-04-08T22:05:34.470885Z 01O TEST 639/647 [4/4 concurrent test workers running] +2026-04-08T22:05:34.470887Z 01O ========DIFF======== +2026-04-08T22:05:34.470891Z 01O 001+  +2026-04-08T22:05:34.470896Z 01O 001- invoked +2026-04-08T22:05:34.470898Z 01O ========DONE======== +2026-04-08T22:05:34.470902Z 01O XFAIL Test hooking fake closures of internal functions [tmp/build_extension/tests/ext/sandbox/hook_function/hook_internal_fake_closure.phpt] XFAIL REASON: Not implemented yet +2026-04-08T22:05:34.470909Z 01O TEST 640/647 [3/4 concurrent test workers running] +2026-04-08T22:05:38.976781Z 01O+ PASS Check the library config files [tmp/build_extension/tests/ext/library_config/fleet_config.phpt] +2026-04-08T22:05:38.976865Z 01O TEST 641/647 [2/4 concurrent test workers running] SKIP background sender survives setuid [tmp/build_extension/tests/ext/background-sender/background_sender_survives_setuid.phpt] reason: leak sanitizer crashes +2026-04-08T22:05:38.976883Z 01O TEST 642/647 [2/4 concurrent test workers running] PASS A call to trace_method from hook_method prehook has non-static closure [tmp/build_extension/tests/ext/sandbox/hook_method/prehook_05.phpt] +2026-04-08T22:05:38.976895Z 01O TEST 643/647 [2/4 concurrent test workers running] +2026-04-08T22:05:39.477443Z 01O+ PASS [Sandbox] Hook implementations of interface methods with multiple parent abstract methods of the same name [tmp/build_extension/tests/ext/sandbox/interface_inherit_hook_multiple.phpt] +2026-04-08T22:05:39.477454Z 01O TEST 644/647 [2/4 concurrent test workers running] PASS API Gateway span should only be created once [tmp/build_extension/tests/ext/inferred_proxy/multiple_traces.phpt] +2026-04-08T22:05:39.477459Z 01O TEST 645/647 [2/4 concurrent test workers running] +2026-04-08T22:05:40.478709Z 01O+ PASS DD_APPSEC_SCA_ENABLED flag is sent to via telemetry with false [tmp/build_extension/tests/ext/appsec/sca_flag_is_sent_03.phpt] +2026-04-08T22:05:40.478729Z 01O TEST 646/647 [1/4 concurrent test workers running] PASS DDTrace\hook_function prehook exception is sandboxed [tmp/build_extension/tests/ext/sandbox/hook_function/prehook_exceptions_01.phpt] +2026-04-08T22:05:40.478736Z 01O TEST 647/647 [1/4 concurrent test workers running] ===================================================================== +2026-04-08T22:05:40.478742Z 01O Number of tests : 647 613 +2026-04-08T22:05:40.478745Z 01O Tests skipped : 34 ( 5.3%) -------- +2026-04-08T22:05:40.478748Z 01O Tests warned : 0 ( 0.0%) ( 0.0%) +2026-04-08T22:05:40.478753Z 01O Tests failed : 3 ( 0.5%) ( 0.5%) +2026-04-08T22:05:40.478755Z 01O Expected fail : 2 ( 0.3%) ( 0.3%) +2026-04-08T22:05:40.478758Z 01O Tests passed : 608 ( 94.0%) ( 99.2%) +2026-04-08T22:05:40.478764Z 01O --------------------------------------------------------------------- +2026-04-08T22:05:40.478767Z 01O Time taken : 101 seconds +2026-04-08T22:05:40.478770Z 01O ===================================================================== +2026-04-08T22:05:40.478775Z 01O +2026-04-08T22:05:40.478778Z 01O ===================================================================== +2026-04-08T22:05:40.478782Z 01O EXPECTED FAILED TEST SUMMARY +2026-04-08T22:05:40.478787Z 01O --------------------------------------------------------------------- +2026-04-08T22:05:40.478790Z 01O Test hooking fake closures of internal functions via install_hook() [tmp/build_extension/tests/ext/sandbox/install_hook/hook_internal_fake_closure.phpt] XFAIL REASON: Not implemented yet +2026-04-08T22:05:40.478809Z 01O Test hooking fake closures of internal functions [tmp/build_extension/tests/ext/sandbox/hook_function/hook_internal_fake_closure.phpt] XFAIL REASON: Not implemented yet +2026-04-08T22:05:40.478839Z 01O ===================================================================== +2026-04-08T22:05:40.478851Z 01O +2026-04-08T22:05:40.478859Z 01O ===================================================================== +2026-04-08T22:05:40.478871Z 01O FAILED TEST SUMMARY +2026-04-08T22:05:40.478881Z 01O --------------------------------------------------------------------- +2026-04-08T22:05:40.478887Z 01O deferred loading doesn't crash if integration loading fails [tmp/build_extension/tests/ext/sandbox/deferred_load_fatal.phpt] +2026-04-08T22:05:40.478898Z 01O Check that sandboxed hooks do not invoke error handlers or set the error code [tmp/build_extension/tests/ext/sandbox/hook_function/hook_does_not_leak_error.phpt] +2026-04-08T22:05:40.478997Z 01O Assert bailouts are gracefully handled within class autoloading [tmp/build_extension/tests/ext/sandbox-regression/class_resolver_bailout_hook.phpt] +2026-04-08T22:05:40.479006Z 01O ===================================================================== +2026-04-08T22:05:40.479017Z 01O make: *** [Makefile:183: test_c_observer] Error 1 +2026-04-08T22:05:40.479019Z 01O +2026-04-08T22:05:40.479071Z 00O section_end:1775685940:step_script +2026-04-08T22:05:40.479073Z 00O+section_start:1775685940:after_script[collapsed=false] +2026-04-08T22:05:40.479507Z 00O+Running after_script +2026-04-08T22:05:40.979596Z 01O Running after script... +2026-04-08T22:05:40.979608Z 01O $ .gitlab/check_test_agent.sh +2026-04-08T22:05:40.979614Z 01O APM Test Agent is running. (HTTP 200) +2026-04-08T22:05:40.979617Z 01O All APM Test Agent Check Traces returned successful! (HTTP 200) +2026-04-08T22:05:40.979621Z 01O APM Test Agent Check Traces Summary Results: +2026-04-08T22:05:40.979627Z 01O {} +2026-04-08T22:05:40.979630Z 01O $ .gitlab/collect_artifacts.sh "tmp/build_extension" +2026-04-08T22:05:40.979634Z 01O $ .gitlab/silent-upload-junit-to-datadog.sh "test.source.file:src/" +2026-04-08T22:06:30.347980Z 01O * View detailed reports on Datadog (they can take a few minutes to become available) +2026-04-08T22:06:30.348760Z 01O * Commit report: +2026-04-08T22:06:30.348880Z 01O * https://app.datadoghq.com/ci/redirect/tests/https%3A%2F%2Fgitlab.ddbuild.io%2FDataDog%2Fapm-reliability%2Fdd-trace-php.git/-/gitlab-runner/-/levi%2Fclang-17-to-19/-/e340959bb2fb46996ed179b27eab9e273fffbacc?env=ci +2026-04-08T22:06:30.348970Z 01O * Test runs report: +2026-04-08T22:06:30.349010Z 01O * https://app.datadoghq.com/ci/test-runs?query=%20%40ci.job.url%3A%22https%3A%2F%2Fgitlab.ddbuild.io%2FDataDog%2Fapm-reliability%2Fdd-trace-php%2F-%2Fjobs%2F1579621450%22 +2026-04-08T22:06:30.349050Z 01O +2026-04-08T22:06:30.349510Z 00O section_end:1775685990:after_script +2026-04-08T22:06:30.349530Z 00O+section_start:1775685990:upload_artifacts_on_failure[collapsed=true] +2026-04-08T22:06:30.360970Z 00O+Uploading artifacts for failed job +2026-04-08T22:06:30.535407Z 01O Uploading artifacts... +2026-04-08T22:06:30.535421Z 01O artifacts/: found 17 matching artifact files and directories +2026-04-08T22:06:33.382170Z 01O Uploading artifacts as "archive" to coordinator... 201 Created id=1579621450 responseStatus=201 Created token=64_mjUGF_ +2026-04-08T22:06:33.382280Z 01O Uploading artifacts... +2026-04-08T22:06:33.538809Z 01O artifacts/tests/php-tests.xml: found 1 matching artifact files and directories +2026-04-08T22:06:33.538821Z 01O Uploading artifacts as "junit" to coordinator... 201 Created id=1579621450 responseStatus=201 Created token=64_mjUGF_ +2026-04-08T22:06:33.538842Z 01O +2026-04-08T22:06:33.538947Z 00O section_end:1775685993:upload_artifacts_on_failure +2026-04-08T22:06:33.538949Z 00O+section_start:1775685993:cleanup_file_variables[collapsed=true] +2026-04-08T22:06:33.539692Z 00O+Cleaning up project directory and file based variables +2026-04-08T22:06:34.395030Z 01O +2026-04-08T22:06:34.395420Z 00O section_end:1775685994:cleanup_file_variables +2026-04-08T22:06:34.395440Z 00O+ +2026-04-08T22:06:34.359018Z 00O ERROR: Job failed: command terminated with exit code 1 +2026-04-08T22:06:34.359024Z 00O  diff --git a/raw2.txt b/raw2.txt new file mode 100644 index 00000000000..2157c69c71e --- /dev/null +++ b/raw2.txt @@ -0,0 +1,1242 @@ +2026-04-08T22:00:58.979619Z 00O Running with gitlab-runner 17.9.3-544784f7 (544784f7) +2026-04-08T22:00:58.979627Z 00O  on gitlab-runner-amd64-shared-6fbbdc57fd-6g7wz _xbvGsbV_, system ID: r_fY7hjOVuHGzO +2026-04-08T22:00:58.979633Z 00O  feature flags: FF_RETRIEVE_POD_WARNING_EVENTS:false +2026-04-08T22:00:58.979653Z 00O section_start:1775685658:prepare_executor[collapsed=true] +2026-04-08T22:00:58.979655Z 00O+Preparing the "kubernetes" executor +2026-04-08T22:00:58.979714Z 00O Using Kubernetes namespace: gitlab-runner +2026-04-08T22:00:58.980083Z 00O Using Kubernetes cluster domain: mudkip-c.us1.ddbuild.io +2026-04-08T22:00:58.980089Z 00O Using Kubernetes executor with image registry.ddbuild.io/images/mirror/datadog/dd-trace-ci:php-8.0_bookworm-7 ... +2026-04-08T22:00:58.980093Z 00O Using attach strategy to execute scripts... +2026-04-08T22:00:59.870520Z 00O section_end:1775685659:prepare_executor +2026-04-08T22:00:59.870590Z 00O+section_start:1775685659:prepare_script[collapsed=true] +2026-04-08T22:00:59.953680Z 00O+Preparing environment +2026-04-08T22:00:59.972740Z 00O Using FF_USE_POD_ACTIVE_DEADLINE_SECONDS, the Pod activeDeadlineSeconds will be set to the job timeout: 1h0m0s... +2026-04-08T22:00:59.101264Z 00O Using service account: dd-trace-php +2026-04-08T22:00:59.422847Z 00E Waiting for pod gitlab-runner/runner-xbvgsbv-project-355-concurrent-3-7xj11su7 to be running, status is Pending +2026-04-08T22:01:02.437470Z 00E Waiting for pod gitlab-runner/runner-xbvgsbv-project-355-concurrent-3-7xj11su7 to be running, status is Pending +2026-04-08T22:01:02.437479Z 00E ContainersNotInitialized: "containers with incomplete status: [emissary init-permissions]" +2026-04-08T22:01:02.437482Z 00E ContainersNotReady: "containers with unready status: [emissary build helper]" +2026-04-08T22:01:02.437484Z 00E ContainersNotReady: "containers with unready status: [emissary build helper]" +2026-04-08T22:01:06.665899Z 01O Running on runner-xbvgsbv-project-355-concurrent-3-7xj11su7 via gitlab-runner-amd64-shared-6fbbdc57fd-6g7wz... +2026-04-08T22:01:06.665909Z 01O +2026-04-08T22:01:06.665939Z 00O section_end:1775685666:prepare_script +2026-04-08T22:01:06.665940Z 00O+section_start:1775685666:get_sources[collapsed=true] +2026-04-08T22:01:06.666740Z 00O+Getting source from Git repository +2026-04-08T22:01:07.166469Z 01O $ if [ -n "${VAULT_ADDR:-}" ]; then # collapsed multi-line command +2026-04-08T22:01:07.166482Z 01O section_start:1775685666:git_cache[collapsed=true] Git cache script +2026-04-08T22:01:07.166495Z 01O {"level":"INFO","ts":"2026-04-08T22:01:06.907514+00:00","caller":"git-cache-s3/main.go:23","msg":"Running git-cache-s3 go application"} +2026-04-08T22:01:07.166501Z 01O {"level":"INFO","ts":"2026-04-08T22:01:06.907607+00:00","caller":"git-cache-s3/main.go:24","msg":"Project name dd-trace-php"} +2026-04-08T22:01:07.166510Z 01O {"level":"INFO","ts":"2026-04-08T22:01:06.922616+00:00","caller":"metric/statsd.go:33","msg":"Creating the statsd instance."} +2026-04-08T22:01:07.166521Z 01O {"level":"INFO","ts":"2026-04-08T22:01:06.924157+00:00","caller":"git-cache-s3/main.go:82","msg":"Experiment is disabled for refreshing the repository cache, skipping refresh"} +2026-04-08T22:01:07.166527Z 01O {"level":"INFO","ts":"2026-04-08T22:01:06.925563+00:00","caller":"git/git.go:44","msg":"Retrieving repository from cache"} +2026-04-08T22:01:14.673935Z 01O {"level":"INFO","ts":"2026-04-08T22:01:14.463906+00:00","caller":"metric/statsd.go:39","msg":"Statsd Client already exists."} +2026-04-08T22:01:14.673978Z 01O {"level":"INFO","ts":"2026-04-08T22:01:14.464097+00:00","caller":"git-cache-s3/main.go:40","msg":"Arrive to the end of the script"} +2026-04-08T22:01:14.673995Z 01O section_end:1775685674:git_cache  +2026-04-08T22:01:14.674019Z 01O Fetching changes... +2026-04-08T22:01:14.674033Z 01O Reinitialized existing Git repository in /go/src/github.com/DataDog/apm-reliability/dd-trace-php/.git/ +2026-04-08T22:01:14.674037Z 01O Created fresh repository. +2026-04-08T22:01:14.674063Z 01O gitretriever: create-ref FAILED (pipeline=106784035 repo=DataDog/apm-reliability/dd-trace-php), falling back to GitLab +2026-04-08T22:01:15.174607Z 01O Checking out e340959b as detached HEAD (ref is levi/clang-17-to-19)... +2026-04-08T22:01:21.681905Z 01O +2026-04-08T22:01:21.681943Z 01O Updating/initializing submodules recursively... +2026-04-08T22:01:21.681950Z 01O Submodule 'appsec/third_party/cpp-base64' (https://github.com/ReneNyffenegger/cpp-base64) registered for path 'appsec/third_party/cpp-base64' +2026-04-08T22:01:21.681976Z 01O Submodule 'appsec/third_party/libddwaf' (https://github.com/DataDog/libddwaf.git) registered for path 'appsec/third_party/libddwaf' +2026-04-08T22:01:21.681992Z 01O Submodule 'appsec/third_party/libddwaf-rust' (https://github.com/DataDog/libddwaf-rust.git) registered for path 'appsec/third_party/libddwaf-rust' +2026-04-08T22:01:21.682000Z 01O Submodule 'appsec/third_party/msgpack-c' (https://github.com/msgpack/msgpack-c.git) registered for path 'appsec/third_party/msgpack-c' +2026-04-08T22:01:21.682034Z 01O Submodule 'libdatadog' (https://github.com/DataDog/libdatadog) registered for path 'libdatadog' +2026-04-08T22:01:21.682059Z 01O Submodule 'tea/benchmarks/google-benchmark' (https://github.com/google/benchmark.git) registered for path 'tea/benchmarks/google-benchmark' +2026-04-08T22:01:21.682068Z 01O Synchronizing submodule url for 'libdatadog' +2026-04-08T22:01:21.682125Z 01O Cloning into '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog'... +2026-04-08T22:01:31.197952Z 01O Submodule path 'libdatadog': checked out '11d4111c934d9af49d8124b8266dbbdda5857cb4' +2026-04-08T22:01:31.197992Z 01O Submodule 'libdd-libunwind-sys/libunwind' (https://github.com/DataDog/libunwind.git) registered for path 'libdatadog/libdd-libunwind-sys/libunwind' +2026-04-08T22:01:31.197999Z 01O Cloning into '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-libunwind-sys/libunwind'... +2026-04-08T22:01:32.214847Z 01O Submodule path 'libdatadog/libdd-libunwind-sys/libunwind': checked out 'cc1d07281b9e034c9e088733aeb4b94ffd91db9e' +2026-04-08T22:01:32.214865Z 01O Updated submodules +2026-04-08T22:01:32.214874Z 01O Synchronizing submodule url for 'libdatadog' +2026-04-08T22:01:32.214896Z 01O Synchronizing submodule url for 'libdatadog/libdd-libunwind-sys/libunwind' +2026-04-08T22:01:32.702581Z 01O Entering 'libdatadog' +2026-04-08T22:01:32.702592Z 01O Entering 'libdatadog/libdd-libunwind-sys/libunwind' +2026-04-08T22:01:32.702597Z 01O Entering 'libdatadog' +2026-04-08T22:01:32.702602Z 01O Entering 'libdatadog/libdd-libunwind-sys/libunwind' +2026-04-08T22:01:33.202861Z 01O $ export clone_after=$(date +%s) # collapsed multi-line command +2026-04-08T22:01:33.202878Z 01O Clone elapsed 26 +2026-04-08T22:01:33.202882Z 01O +2026-04-08T22:01:33.202924Z 00O section_end:1775685693:get_sources +2026-04-08T22:01:33.202925Z 00O+section_start:1775685693:download_artifacts[collapsed=true] +2026-04-08T22:01:33.204356Z 00O+Downloading artifacts +2026-04-08T22:01:33.704060Z 01O Downloading artifacts for Build & Test Tea: [8.0, debug-zts-asan] (1579619409)... +2026-04-08T22:01:34.205826Z 01O Downloading artifacts from coordinator... ok  host=gitlab.ddbuild.io id=1579619409 responseStatus=200 OK token=64_s81vcx +2026-04-08T22:01:34.205842Z 01O +2026-04-08T22:01:34.205902Z 00O section_end:1775685694:download_artifacts +2026-04-08T22:01:34.205904Z 00O+section_start:1775685694:step_script[collapsed=false] +2026-04-08T22:01:34.206816Z 00O+Executing "step_script" stage of the job script +2026-04-08T22:01:34.707076Z 01O $ export build_before=$(date +%s) # collapsed multi-line command +2026-04-08T22:01:34.707090Z 01O Starting pre-build script +2026-04-08T22:01:34.707097Z 01O Keeping environment unchanged +2026-04-08T22:01:34.707100Z 01O Terminating pre-build script +2026-04-08T22:01:34.707104Z 01O $ switch-php "debug-zts-asan" +2026-04-08T22:01:34.707112Z 01O $ mkdir -p tmp/build_zai && cd tmp/build_zai +2026-04-08T22:01:34.707117Z 01O $ CMAKE_PREFIX_PATH=/opt/catch2 Tea_ROOT=../../tmp/tea/debug-zts-asan cmake -DCMAKE_TOOLCHAIN_FILE=../../cmake/asan.cmake -DCMAKE_BUILD_TYPE=Debug -DBUILD_ZAI_TESTING=ON -DPhpConfig_ROOT=$(php-config --prefix) ../../zend_abstract_interface +2026-04-08T22:01:35.206890Z 01O -- The C compiler identification is Clang 19.1.7 +2026-04-08T22:01:35.206901Z 01O -- Detecting C compiler ABI info +2026-04-08T22:01:35.206908Z 01O -- Detecting C compiler ABI info - done +2026-04-08T22:01:35.206915Z 01O -- Check for working C compiler: /usr/bin/cc - skipped +2026-04-08T22:01:35.206918Z 01O -- Detecting C compile features +2026-04-08T22:01:35.206922Z 01O -- Detecting C compile features - done +2026-04-08T22:01:35.206928Z 01O -- The CXX compiler identification is Clang 19.1.7 +2026-04-08T22:01:35.206930Z 01O -- Detecting CXX compiler ABI info +2026-04-08T22:01:35.707410Z 01O -- Detecting CXX compiler ABI info - done +2026-04-08T22:01:35.707421Z 01O -- Check for working CXX compiler: /usr/bin/c++ - skipped +2026-04-08T22:01:35.707427Z 01O -- Detecting CXX compile features +2026-04-08T22:01:35.707435Z 01O -- Detecting CXX compile features - done +2026-04-08T22:01:35.707439Z 01O -- Found PhpConfig: /opt/php/debug-zts-asan/bin/php-config (found version "8.0.30") +2026-04-08T22:01:35.707442Z 01O -- Detected PHP 8 from version id: 80030 +2026-04-08T22:01:35.707497Z 01O -- Performing Test CMAKE_HAVE_LIBC_PTHREAD +2026-04-08T22:01:35.707504Z 01O -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success +2026-04-08T22:01:35.707526Z 01O -- Found Threads: TRUE +2026-04-08T22:01:35.707534Z 01O -- Configuring done +2026-04-08T22:01:36.208055Z 01O -- Generating done +2026-04-08T22:01:36.208072Z 01O -- Build files have been written to: /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_zai +2026-04-08T22:01:36.208078Z 01O $ make -j all +2026-04-08T22:01:36.208112Z 01O [ 1%] Generating version.h +2026-04-08T22:01:36.208119Z 01O Updating version.h +2026-04-08T22:01:36.208128Z 01O [ 2%] Building C object exceptions/CMakeFiles/zai_exceptions.dir/exceptions.c.o +2026-04-08T22:01:36.208136Z 01O [ 3%] Built target update_version_h +2026-04-08T22:01:36.208140Z 01O [ 3%] Building C object zai_string/CMakeFiles/zai_string.dir/string.c.o +2026-04-08T22:01:36.208144Z 01O [ 5%] Building C object json/CMakeFiles/zai_json.dir/json.c.o +2026-04-08T22:01:36.208150Z 01O [ 5%] Built target libdatadog_stamp +2026-04-08T22:01:36.208153Z 01O [ 6%] Building C object sandbox/CMakeFiles/zai_sandbox.dir/call.c.o +2026-04-08T22:01:36.208157Z 01O [ 7%] Building C object sandbox/CMakeFiles/zai_sandbox.dir/php8/sandbox.c.o +2026-04-08T22:01:36.208165Z 01O [ 9%] Building CXX object config/tests/CMakeFiles/second_consumer_ext.dir/ext_second_consumer.cc.o +2026-04-08T22:01:36.208169Z 01O [ 10%] Building C object config/tests/CMakeFiles/second_consumer_ext.dir/__/config.c.o +2026-04-08T22:01:36.208173Z 01O [ 11%] Building C object config/tests/CMakeFiles/second_consumer_ext.dir/__/config_ini.c.o +2026-04-08T22:01:36.208180Z 01O [ 12%] Building C object config/tests/CMakeFiles/second_consumer_ext.dir/__/config_decode.c.o +2026-04-08T22:01:36.208192Z 01O [ 15%] Building C object config/tests/CMakeFiles/second_consumer_ext.dir/__/config_runtime.c.o +2026-04-08T22:01:36.208199Z 01O [ 16%] Building C object config/tests/CMakeFiles/second_consumer_ext.dir/__/config_stable_file.c.o +2026-04-08T22:01:36.208205Z 01O [ 16%] Building C object jit_utils/CMakeFiles/zai_jit_utils.dir/jit_blacklist.c.o +2026-04-08T22:01:36.208208Z 01O [ 18%] Creating directories for 'components_rs_proj' +2026-04-08T22:01:36.208212Z 01O [ 19%] No download step for 'components_rs_proj' +2026-04-08T22:01:36.208217Z 01O [ 20%] No update step for 'components_rs_proj' +2026-04-08T22:01:36.208219Z 01O [ 22%] No patch step for 'components_rs_proj' +2026-04-08T22:01:36.208223Z 01O [ 23%] No configure step for 'components_rs_proj' +2026-04-08T22:01:36.208232Z 01O [ 24%] Performing build step for 'components_rs_proj' +2026-04-08T22:01:36.708779Z 01O warning: profiles for the non root package will be ignored, specify profiles at the workspace root: +2026-04-08T22:01:36.708790Z 01O package: /go/src/github.com/DataDog/apm-reliability/dd-trace-php/profiling/Cargo.toml +2026-04-08T22:01:36.708796Z 01O workspace: /go/src/github.com/DataDog/apm-reliability/dd-trace-php/Cargo.toml +2026-04-08T22:01:36.708805Z 01O warning: /go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-crashtracker-ffi/Cargo.toml: unused manifest key: target.cfg(windows).features +2026-04-08T22:01:36.708809Z 01O [ 25%] Linking C static library libzai_string.a +2026-04-08T22:01:36.708814Z 01O [ 25%] Built target zai_string +2026-04-08T22:01:36.708819Z 01O Updating crates.io index +2026-04-08T22:01:36.708822Z 01O [ 27%] Building C object env/CMakeFiles/zai_env.dir/env.c.o +2026-04-08T22:01:36.708826Z 01O [ 28%] Building C object headers/CMakeFiles/zai_headers.dir/headers.c.o +2026-04-08T22:01:36.708831Z 01O [ 29%] Linking C static library libzai_json.a +2026-04-08T22:01:36.708834Z 01O [ 31%] Linking C static library libzai_sandbox.a +2026-04-08T22:01:36.708838Z 01O [ 32%] Linking C static library libzai_exceptions.a +2026-04-08T22:01:36.708843Z 01O [ 32%] Built target zai_json +2026-04-08T22:01:36.708846Z 01O [ 32%] Built target zai_sandbox +2026-04-08T22:01:36.708850Z 01O [ 33%] Linking C static library libzai_jit_utils.a +2026-04-08T22:01:36.708856Z 01O [ 35%] Building C object uri_normalization/CMakeFiles/zai_uri_normalization.dir/uri_normalization.c.o +2026-04-08T22:01:36.708908Z 01O [ 35%] Built target zai_exceptions +2026-04-08T22:01:37.209476Z 01O [ 35%] Built target zai_jit_utils +2026-04-08T22:01:37.209493Z 01O [ 36%] Linking C static library libzai_env.a +2026-04-08T22:01:37.209501Z 01O [ 37%] Linking C static library libzai_headers.a +2026-04-08T22:01:37.209518Z 01O [ 38%] Building C object hook/CMakeFiles/zai_hook.dir/hook.c.o +2026-04-08T22:01:37.209531Z 01O [ 38%] Built target zai_env +2026-04-08T22:01:37.209537Z 01O [ 40%] Building C object config/CMakeFiles/zai_config.dir/config_decode.c.o +2026-04-08T22:01:37.209565Z 01O [ 41%] Building C object config/CMakeFiles/zai_config.dir/config.c.o +2026-04-08T22:01:37.209577Z 01O [ 42%] Building C object config/CMakeFiles/zai_config.dir/config_ini.c.o +2026-04-08T22:01:37.209584Z 01O [ 44%] Building C object config/CMakeFiles/zai_config.dir/config_stable_file.c.o +2026-04-08T22:01:37.209593Z 01O [ 45%] Building C object config/CMakeFiles/zai_config.dir/config_runtime.c.o +2026-04-08T22:01:37.209596Z 01O [ 45%] Built target zai_headers +2026-04-08T22:01:37.209600Z 01O [ 46%] Linking CXX shared module second_consumer_ext.so +2026-04-08T22:01:37.209606Z 01O [ 46%] Built target second_consumer_ext +2026-04-08T22:01:37.209609Z 01O [ 48%] Linking C static library libzai_uri_normalization.a +2026-04-08T22:01:37.709974Z 01O [ 48%] Built target zai_uri_normalization +2026-04-08T22:01:37.709981Z 01O [ 49%] Linking C static library libzai_hook.a +2026-04-08T22:01:37.709986Z 01O [ 50%] Linking C static library libzai_config.a +2026-04-08T22:01:37.709993Z 01O [ 50%] Built target zai_hook +2026-04-08T22:01:37.709996Z 01O [ 51%] Building C object interceptor/CMakeFiles/zai_interceptor.dir/php8/interceptor.c.o +2026-04-08T22:01:37.710000Z 01O [ 53%] Building C object interceptor/CMakeFiles/zai_interceptor.dir/php8/resolver_pre-8_2.c.o +2026-04-08T22:01:37.710007Z 01O [ 53%] Built target zai_config +2026-04-08T22:01:37.710012Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/interceptor/php8/resolver_pre-8_2.c:251:14: warning: initializing 'zend_op *' (aka 'struct _zend_op *') with an expression of type 'const zend_op *' (aka 'const struct _zend_op *') discards qualifiers [-Wincompatible-pointer-types-discards-qualifiers] +2026-04-08T22:01:37.710018Z 01O 251 | zend_op *orig_opline = EX(opline); +2026-04-08T22:01:37.710030Z 01O | ^ ~~~~~~~~~~ +2026-04-08T22:01:37.710038Z 01O 1 warning generated. +2026-04-08T22:01:37.710044Z 01O [ 54%] Linking C static library libzai_interceptor.a +2026-04-08T22:01:38.210706Z 01O [ 54%] Built target zai_interceptor +2026-04-08T22:01:38.210715Z 01O Downloading crates ... +2026-04-08T22:01:38.210719Z 01O Downloaded anstyle-parse v0.2.6 +2026-04-08T22:01:38.210724Z 01O Downloaded arrayref v0.3.9 +2026-04-08T22:01:38.210727Z 01O Downloaded constcat v0.4.1 +2026-04-08T22:01:38.210730Z 01O Downloaded is_terminal_polyfill v1.70.1 +2026-04-08T22:01:38.210737Z 01O Downloaded toml v0.8.19 +2026-04-08T22:01:38.210739Z 01O Downloaded pin-utils v0.1.0 +2026-04-08T22:01:38.210742Z 01O Downloaded toml_datetime v0.6.8 +2026-04-08T22:01:38.210749Z 01O Downloaded block-buffer v0.10.4 +2026-04-08T22:01:38.210759Z 01O Downloaded fnv v1.0.7 +2026-04-08T22:01:38.210765Z 01O Downloaded http-body-util v0.1.2 +2026-04-08T22:01:38.210788Z 01O Downloaded zwohash v0.1.2 +2026-04-08T22:01:38.210802Z 01O Downloaded matchers v0.2.0 +2026-04-08T22:01:38.210806Z 01O Downloaded sendfd v0.4.3 +2026-04-08T22:01:38.210830Z 01O Downloaded sha2 v0.10.8 +2026-04-08T22:01:38.210834Z 01O Downloaded serde_bytes v0.11.15 +2026-04-08T22:01:38.210838Z 01O Downloaded sys-info v0.9.1 +2026-04-08T22:01:38.210850Z 01O Downloaded serde_core v1.0.228 +2026-04-08T22:01:38.210860Z 01O Downloaded hyper v1.6.0 +2026-04-08T22:01:38.210865Z 01O Downloaded stable_deref_trait v1.2.0 +2026-04-08T22:01:38.210881Z 01O Downloaded signal-hook-registry v1.4.2 +2026-04-08T22:01:38.210892Z 01O Downloaded serde_spanned v0.6.8 +2026-04-08T22:01:38.210951Z 01O Downloaded serde_with_macros v3.12.0 +2026-04-08T22:01:38.210957Z 01O Downloaded sharded-slab v0.1.7 +2026-04-08T22:01:38.210964Z 01O Downloaded tempfile v3.24.0 +2026-04-08T22:01:38.210966Z 01O Downloaded serde v1.0.228 +2026-04-08T22:01:38.210970Z 01O Downloaded symbolic-demangle v12.13.3 +2026-04-08T22:01:38.210975Z 01O Downloaded time v0.3.37 +2026-04-08T22:01:38.711657Z 01O Downloaded simd-json v0.14.3 +2026-04-08T22:01:38.711666Z 01O Downloaded portable-atomic v1.10.0 +2026-04-08T22:01:38.711671Z 01O Downloaded syn v2.0.96 +2026-04-08T22:01:38.711676Z 01O Downloaded mio v1.0.3 +2026-04-08T22:01:38.711678Z 01O Downloaded serde_json v1.0.137 +2026-04-08T22:01:38.711681Z 01O Downloaded regex v1.11.1 +2026-04-08T22:01:38.711686Z 01O Downloaded nix v0.29.0 +2026-04-08T22:01:38.711689Z 01O Downloaded tracing-subscriber v0.3.22 +2026-04-08T22:01:38.711692Z 01O Downloaded zerocopy v0.8.24 +2026-04-08T22:01:38.711697Z 01O Downloaded nix v0.30.1 +2026-04-08T22:01:38.711699Z 01O Downloaded regex-syntax v0.8.5 +2026-04-08T22:01:38.711703Z 01O Downloaded serde_yaml v0.9.34+deprecated +2026-04-08T22:01:38.711719Z 01O Downloaded rustix v0.38.43 +2026-04-08T22:01:38.711726Z 01O Downloaded tracing v0.1.44 +2026-04-08T22:01:38.711730Z 01O Downloaded rustix v1.1.3 +2026-04-08T22:01:38.711739Z 01O Downloaded symbolic-common v12.13.3 +2026-04-08T22:01:38.711742Z 01O Downloaded subtle v2.6.1 +2026-04-08T22:01:38.711745Z 01O Downloaded serde_derive v1.0.228 +2026-04-08T22:01:38.711750Z 01O Downloaded rand v0.8.5 +2026-04-08T22:01:38.711752Z 01O Downloaded memchr v2.7.4 +2026-04-08T22:01:38.711756Z 01O Downloaded serde_derive_internals v0.29.1 +2026-04-08T22:01:38.711760Z 01O Downloaded proc-macro2 v1.0.93 +2026-04-08T22:01:39.211939Z 01O Downloaded regex-automata v0.4.9 +2026-04-08T22:01:39.211952Z 01O Downloaded tokio v1.49.0 +2026-04-08T22:01:39.211958Z 01O Downloaded pin-project v1.1.8 +2026-04-08T22:01:39.211989Z 01O Downloaded num-traits v0.2.19 +2026-04-08T22:01:39.212003Z 01O Downloaded miniz_oxide v0.9.0 +2026-04-08T22:01:39.212010Z 01O Downloaded memmap2 v0.9.5 +2026-04-08T22:01:39.212017Z 01O Downloaded unsafe-libyaml v0.2.11 +2026-04-08T22:01:39.212020Z 01O Downloaded tracing-core v0.1.36 +2026-04-08T22:01:39.212023Z 01O Downloaded strsim v0.11.1 +2026-04-08T22:01:39.212028Z 01O Downloaded thiserror-impl v1.0.69 +2026-04-08T22:01:39.212030Z 01O Downloaded libc v0.2.177 +2026-04-08T22:01:39.212033Z 01O Downloaded socket2 v0.5.10 +2026-04-08T22:01:39.212038Z 01O Downloaded smallvec v1.15.1 +2026-04-08T22:01:39.212041Z 01O Downloaded windows_x86_64_gnu v0.48.5 +2026-04-08T22:01:39.212044Z 01O Downloaded schemars v0.8.21 +2026-04-08T22:01:39.212051Z 01O Downloaded rustls-pki-types v1.14.0 +2026-04-08T22:01:39.212054Z 01O Downloaded rmpv v1.3.0 +2026-04-08T22:01:39.212057Z 01O Downloaded rmp-serde v1.3.0 +2026-04-08T22:01:39.212066Z 01O Downloaded once_cell v1.21.3 +2026-04-08T22:01:39.212068Z 01O Downloaded memory-stats v1.2.0 +2026-04-08T22:01:39.212071Z 01O Downloaded windows-core v0.51.1 +2026-04-08T22:01:39.212076Z 01O Downloaded uuid v1.12.1 +2026-04-08T22:01:39.212078Z 01O Downloaded typenum v1.17.0 +2026-04-08T22:01:39.212082Z 01O Downloaded static_assertions v1.1.0 +2026-04-08T22:01:39.212086Z 01O Downloaded thiserror v1.0.69 +2026-04-08T22:01:39.212089Z 01O Downloaded termcolor v1.4.1 +2026-04-08T22:01:39.212092Z 01O Downloaded shlex v1.3.0 +2026-04-08T22:01:39.212096Z 01O Downloaded ryu v1.0.18 +2026-04-08T22:01:39.212098Z 01O Downloaded rmp v0.8.14 +2026-04-08T22:01:39.212101Z 01O Downloaded rand_core v0.6.4 +2026-04-08T22:01:39.212106Z 01O Downloaded priority-queue v2.1.1 +2026-04-08T22:01:39.212108Z 01O Downloaded ppv-lite86 v0.2.20 +2026-04-08T22:01:39.212112Z 01O Downloaded pin-project-lite v0.2.16 +2026-04-08T22:01:39.212116Z 01O Downloaded pin-project-internal v1.1.8 +2026-04-08T22:01:39.212119Z 01O Downloaded paste v1.0.15 +2026-04-08T22:01:39.212122Z 01O Downloaded os_info v3.14.0 +2026-04-08T22:01:39.212126Z 01O Downloaded num-conv v0.1.0 +2026-04-08T22:01:39.212176Z 01O Downloaded memoffset v0.9.1 +2026-04-08T22:01:39.212181Z 01O Downloaded itertools v0.11.0 +2026-04-08T22:01:39.212193Z 01O Downloaded winnow v0.6.24 +2026-04-08T22:01:39.212203Z 01O Downloaded want v0.3.1 +2026-04-08T22:01:39.212207Z 01O Downloaded value-trait v0.10.1 +2026-04-08T22:01:39.212212Z 01O Downloaded unicode-xid v0.2.6 +2026-04-08T22:01:39.713189Z 01O Downloaded unicode-ident v1.0.14 +2026-04-08T22:01:39.713195Z 01O Downloaded simd-adler32 v0.3.7 +2026-04-08T22:01:39.713199Z 01O Downloaded rustc-demangle v0.1.26 +2026-04-08T22:01:39.713204Z 01O Downloaded ref-cast-impl v1.0.23 +2026-04-08T22:01:39.713206Z 01O Downloaded ref-cast v1.0.23 +2026-04-08T22:01:39.713210Z 01O Downloaded rand_chacha v0.3.1 +2026-04-08T22:01:39.713214Z 01O Downloaded quote v1.0.38 +2026-04-08T22:01:39.713216Z 01O Downloaded prost-derive v0.14.3 +2026-04-08T22:01:39.713220Z 01O Downloaded percent-encoding v2.3.1 +2026-04-08T22:01:39.713225Z 01O Downloaded ring v0.17.14 +2026-04-08T22:01:39.713227Z 01O Downloaded openssl-probe v0.1.5 +2026-04-08T22:01:39.713232Z 01O Downloaded num-derive v0.4.2 +2026-04-08T22:01:39.713237Z 01O Downloaded zerocopy v0.7.35 +2026-04-08T22:01:39.713239Z 01O Downloaded version_check v0.9.5 +2026-04-08T22:01:39.713243Z 01O Downloaded utf8parse v0.2.2 +2026-04-08T22:01:39.713262Z 01O Downloaded gimli v0.32.0 +2026-04-08T22:01:39.713265Z 01O Downloaded cbindgen v0.29.0 +2026-04-08T22:01:39.713268Z 01O Downloaded cbindgen v0.27.0 +2026-04-08T22:01:40.213288Z 01O Downloaded blazesym v0.2.3 +2026-04-08T22:01:40.213297Z 01O Downloaded aws-lc-rs v1.15.4 +2026-04-08T22:01:40.213302Z 01O Downloaded clap_builder v4.5.27 +2026-04-08T22:01:40.213351Z 01O Downloaded chrono v0.4.41 +2026-04-08T22:01:40.213364Z 01O Downloaded aho-corasick v1.1.3 +2026-04-08T22:01:40.213369Z 01O Downloaded serde_with v3.12.0 +2026-04-08T22:01:40.213374Z 01O Downloaded hashbrown v0.16.1 +2026-04-08T22:01:40.213376Z 01O Downloaded hashbrown v0.15.2 +2026-04-08T22:01:40.213380Z 01O Downloaded hashbrown v0.14.5 +2026-04-08T22:01:40.213385Z 01O Downloaded simdutf8 v0.1.5 +2026-04-08T22:01:40.213459Z 01O Downloaded page_size v0.6.0 +2026-04-08T22:01:40.213466Z 01O Downloaded memfd v0.6.4 +2026-04-08T22:01:40.213470Z 01O Downloaded windows-targets v0.48.5 +2026-04-08T22:01:40.213475Z 01O Downloaded indexmap v2.12.1 +2026-04-08T22:01:40.213639Z 01O Downloaded hyper-util v0.1.15 +2026-04-08T22:01:40.213645Z 01O Downloaded http v1.4.0 +2026-04-08T22:01:40.213648Z 01O Downloaded hashbrown v0.12.3 +2026-04-08T22:01:40.213653Z 01O Downloaded futures-util v0.3.31 +2026-04-08T22:01:40.213935Z 01O Downloaded cpp_demangle v0.5.1 +2026-04-08T22:01:40.213939Z 01O Downloaded cc v1.2.55 +2026-04-08T22:01:40.213943Z 01O Downloaded bytes v1.11.1 +2026-04-08T22:01:40.213947Z 01O Downloaded base64 v0.22.1 +2026-04-08T22:01:40.213950Z 01O Downloaded linux-raw-sys v0.4.15 +2026-04-08T22:01:40.213953Z 01O Downloaded socket2 v0.6.2 +2026-04-08T22:01:40.213958Z 01O Downloaded powerfmt v0.2.0 +2026-04-08T22:01:40.213960Z 01O Downloaded tower-service v0.3.3 +2026-04-08T22:01:40.213963Z 01O Downloaded indexmap v1.9.3 +2026-04-08T22:01:40.713687Z 01O Downloaded futures v0.3.31 +2026-04-08T22:01:40.713698Z 01O Downloaded crossbeam-channel v0.5.15 +2026-04-08T22:01:40.713707Z 01O Downloaded cpp_demangle v0.4.4 +2026-04-08T22:01:40.713724Z 01O Downloaded const_format v0.2.34 +2026-04-08T22:01:40.713730Z 01O Downloaded arc-swap v1.7.1 +2026-04-08T22:01:40.713733Z 01O Downloaded linux-raw-sys v0.11.0 +2026-04-08T22:01:40.713738Z 01O Downloaded allocator-api2 v0.2.21 +2026-04-08T22:01:40.713741Z 01O Downloaded slab v0.4.9 +2026-04-08T22:01:40.713744Z 01O Downloaded rustls-native-certs v0.8.1 +2026-04-08T22:01:40.713749Z 01O Downloaded prctl v1.0.0 +2026-04-08T22:01:40.713752Z 01O Downloaded msvc-demangler v0.10.1 +2026-04-08T22:01:40.713755Z 01O Downloaded itertools v0.12.1 +2026-04-08T22:01:40.713760Z 01O Downloaded untrusted v0.9.0 +2026-04-08T22:01:40.713762Z 01O Downloaded toml_edit v0.22.22 +2026-04-08T22:01:40.713807Z 01O Downloaded io-lifetimes v1.0.11 +2026-04-08T22:01:40.713813Z 01O Downloaded iana-time-zone v0.1.61 +2026-04-08T22:01:40.713817Z 01O Downloaded hyper-rustls v0.27.7 +2026-04-08T22:01:40.713826Z 01O Downloaded humantime v2.1.0 +2026-04-08T22:01:40.713828Z 01O Downloaded httparse v1.9.5 +2026-04-08T22:01:40.713832Z 01O Downloaded getrandom v0.3.2 +2026-04-08T22:01:40.713841Z 01O Downloaded getrandom v0.2.15 +2026-04-08T22:01:40.713843Z 01O Downloaded futures-executor v0.3.31 +2026-04-08T22:01:40.713847Z 01O Downloaded futures-channel v0.3.31 +2026-04-08T22:01:40.713852Z 01O Downloaded thread_local v1.1.8 +2026-04-08T22:01:40.713855Z 01O Downloaded fs_extra v1.3.0 +2026-04-08T22:01:40.713858Z 01O Downloaded env_logger v0.10.2 +2026-04-08T22:01:40.713863Z 01O Downloaded either v1.13.0 +2026-04-08T22:01:40.713865Z 01O Downloaded darling v0.20.10 +2026-04-08T22:01:40.713868Z 01O Downloaded crossbeam-utils v0.8.21 +2026-04-08T22:01:40.713873Z 01O Downloaded const_format_proc_macros v0.2.34 +2026-04-08T22:01:40.713875Z 01O Downloaded clap v4.5.27 +2026-04-08T22:01:40.713879Z 01O Downloaded cadence v1.5.0 +2026-04-08T22:01:40.713883Z 01O Downloaded byteorder v1.5.0 +2026-04-08T22:01:40.713885Z 01O Downloaded bitflags v2.8.0 +2026-04-08T22:01:40.713888Z 01O Downloaded bincode v1.3.3 +2026-04-08T22:01:40.713893Z 01O Downloaded anstyle v1.0.10 +2026-04-08T22:01:40.713895Z 01O Downloaded anstream v0.6.18 +2026-04-08T22:01:40.713898Z 01O Downloaded ahash v0.8.12 +2026-04-08T22:01:40.713903Z 01O Downloaded schemars_derive v0.8.21 +2026-04-08T22:01:40.713905Z 01O Downloaded rustls-webpki v0.103.9 +2026-04-08T22:01:40.713924Z 01O Downloaded rustls v0.23.37 +2026-04-08T22:01:40.713939Z 01O Downloaded prost v0.14.3 +2026-04-08T22:01:40.713949Z 01O Downloaded manual_future v0.1.1 +2026-04-08T22:01:40.713959Z 01O Downloaded log v0.4.25 +2026-04-08T22:01:41.214605Z 01O Downloaded jobserver v0.1.32 +2026-04-08T22:01:41.214622Z 01O Downloaded zeroize v1.8.1 +2026-04-08T22:01:41.214626Z 01O Downloaded zerocopy-derive v0.7.35 +2026-04-08T22:01:41.214649Z 01O Downloaded try-lock v0.2.5 +2026-04-08T22:01:41.214661Z 01O Downloaded tracing-log v0.2.0 +2026-04-08T22:01:41.214666Z 01O Downloaded time-core v0.1.2 +2026-04-08T22:01:41.214671Z 01O Downloaded ident_case v1.0.1 +2026-04-08T22:01:41.214673Z 01O Downloaded http-body v1.0.1 +2026-04-08T22:01:41.214677Z 01O Downloaded hex v0.4.3 +2026-04-08T22:01:41.214681Z 01O Downloaded heck v0.5.0 +2026-04-08T22:01:41.214683Z 01O Downloaded heck v0.4.1 +2026-04-08T22:01:41.214687Z 01O Downloaded glibc_version v0.1.2 +2026-04-08T22:01:41.214692Z 01O Downloaded generic-array v0.14.7 +2026-04-08T22:01:41.214699Z 01O Downloaded futures-sink v0.3.31 +2026-04-08T22:01:41.214703Z 01O Downloaded foldhash v0.1.5 +2026-04-08T22:01:41.214725Z 01O Downloaded float-cmp v0.10.0 +2026-04-08T22:01:41.214737Z 01O Downloaded find-msvc-tools v0.1.9 +2026-04-08T22:01:41.214742Z 01O Downloaded fastrand v2.3.0 +2026-04-08T22:01:41.214757Z 01O Downloaded fallible-iterator v0.3.0 +2026-04-08T22:01:41.214767Z 01O Downloaded equivalent v1.0.1 +2026-04-08T22:01:41.214771Z 01O Downloaded digest v0.10.7 +2026-04-08T22:01:41.214783Z 01O Downloaded deranged v0.3.11 +2026-04-08T22:01:41.214791Z 01O Downloaded darling_macro v0.20.10 +2026-04-08T22:01:41.214796Z 01O Downloaded colorchoice v1.0.3 +2026-04-08T22:01:41.214809Z 01O Downloaded cmake v0.1.57 +2026-04-08T22:01:41.214818Z 01O Downloaded clap_lex v0.7.4 +2026-04-08T22:01:41.214822Z 01O Downloaded cfg-if v1.0.1 +2026-04-08T22:01:41.214835Z 01O Downloaded anstyle-query v1.1.2 +2026-04-08T22:01:41.214843Z 01O Downloaded lazy_static v1.4.0 +2026-04-08T22:01:41.214847Z 01O Downloaded itoa v1.0.14 +2026-04-08T22:01:41.214860Z 01O Downloaded tokio-util v0.7.13 +2026-04-08T22:01:41.214868Z 01O Downloaded tokio-rustls v0.26.1 +2026-04-08T22:01:41.214874Z 01O Downloaded is-terminal v0.4.13 +2026-04-08T22:01:41.214885Z 01O Downloaded halfbrown v0.2.5 +2026-04-08T22:01:41.214943Z 01O Downloaded futures-task v0.3.31 +2026-04-08T22:01:41.214948Z 01O Downloaded futures-macro v0.3.31 +2026-04-08T22:01:41.214961Z 01O Downloaded futures-io v0.3.31 +2026-04-08T22:01:41.214970Z 01O Downloaded function_name-proc-macro v0.3.0 +2026-04-08T22:01:41.214974Z 01O Downloaded function_name v0.3.0 +2026-04-08T22:01:41.214986Z 01O Downloaded errno v0.3.10 +2026-04-08T22:01:41.214989Z 01O Downloaded dunce v1.0.5 +2026-04-08T22:01:41.214992Z 01O Downloaded debugid v0.8.0 +2026-04-08T22:01:41.214998Z 01O Downloaded darling_core v0.20.10 +2026-04-08T22:01:41.215000Z 01O Downloaded crypto-common v0.1.6 +2026-04-08T22:01:41.215005Z 01O Downloaded crossbeam-queue v0.3.12 +2026-04-08T22:01:41.215014Z 01O Downloaded const-str v0.5.7 +2026-04-08T22:01:41.215017Z 01O Downloaded cfg_aliases v0.2.1 +2026-04-08T22:01:41.215020Z 01O Downloaded autocfg v1.4.0 +2026-04-08T22:01:41.215024Z 01O Downloaded futures-core v0.3.31 +2026-04-08T22:01:41.215027Z 01O Downloaded anyhow v1.0.98 +2026-04-08T22:01:41.215030Z 01O Downloaded dyn-clone v1.0.17 +2026-04-08T22:01:41.215035Z 01O Downloaded time-macros v0.2.19 +2026-04-08T22:01:41.215037Z 01O Downloaded tokio-macros v2.6.0 +2026-04-08T22:01:41.215040Z 01O Downloaded cpufeatures v0.2.16 +2026-04-08T22:01:41.215045Z 01O Downloaded adler2 v2.0.0 +2026-04-08T22:01:41.215050Z 01O Downloaded aws-lc-sys v0.37.0 +2026-04-08T22:01:41.715446Z 01O Downloaded windows v0.51.1 +2026-04-08T22:01:42.716839Z 01O Compiling proc-macro2 v1.0.93 +2026-04-08T22:01:42.716856Z 01O Compiling unicode-ident v1.0.14 +2026-04-08T22:01:42.716864Z 01O Compiling libc v0.2.177 +2026-04-08T22:01:42.716884Z 01O Compiling memchr v2.7.4 +2026-04-08T22:01:42.716896Z 01O Compiling cfg-if v1.0.1 +2026-04-08T22:01:42.716902Z 01O Compiling autocfg v1.4.0 +2026-04-08T22:01:42.716929Z 01O Compiling once_cell v1.21.3 +2026-04-08T22:01:42.716936Z 01O Compiling itoa v1.0.14 +2026-04-08T22:01:42.716941Z 01O Compiling bitflags v2.8.0 +2026-04-08T22:01:42.716948Z 01O Compiling find-msvc-tools v0.1.9 +2026-04-08T22:01:42.716951Z 01O Compiling shlex v1.3.0 +2026-04-08T22:01:42.716954Z 01O Compiling serde_core v1.0.228 +2026-04-08T22:01:42.716960Z 01O Compiling pin-project-lite v0.2.16 +2026-04-08T22:01:42.716962Z 01O Compiling serde v1.0.228 +2026-04-08T22:01:42.716966Z 01O Compiling bytes v1.11.1 +2026-04-08T22:01:42.716971Z 01O Compiling pin-utils v0.1.0 +2026-04-08T22:01:42.716974Z 01O Compiling equivalent v1.0.1 +2026-04-08T22:01:42.716979Z 01O Compiling anyhow v1.0.98 +2026-04-08T22:01:42.716984Z 01O Compiling hashbrown v0.16.1 +2026-04-08T22:01:42.716986Z 01O Compiling ryu v1.0.18 +2026-04-08T22:01:42.716990Z 01O Compiling cfg_aliases v0.2.1 +2026-04-08T22:01:42.716996Z 01O Compiling regex-syntax v0.8.5 +2026-04-08T22:01:42.717004Z 01O Compiling futures-sink v0.3.31 +2026-04-08T22:01:42.717009Z 01O Compiling dunce v1.0.5 +2026-04-08T22:01:42.717027Z 01O Compiling fs_extra v1.3.0 +2026-04-08T22:01:43.217830Z 01O Compiling httparse v1.9.5 +2026-04-08T22:01:43.217844Z 01O Compiling futures-core v0.3.31 +2026-04-08T22:01:43.217849Z 01O Compiling strsim v0.11.1 +2026-04-08T22:01:43.217866Z 01O Compiling try-lock v0.2.5 +2026-04-08T22:01:43.217877Z 01O Compiling futures-task v0.3.31 +2026-04-08T22:01:43.217884Z 01O Compiling futures-io v0.3.31 +2026-04-08T22:01:43.217901Z 01O Compiling want v0.3.1 +2026-04-08T22:01:43.217917Z 01O Compiling smallvec v1.15.1 +2026-04-08T22:01:43.217923Z 01O Compiling futures-channel v0.3.31 +2026-04-08T22:01:43.217928Z 01O Compiling zeroize v1.8.1 +2026-04-08T22:01:43.718225Z 01O Compiling aws-lc-rs v1.15.4 +2026-04-08T22:01:43.718232Z 01O Compiling thiserror v1.0.69 +2026-04-08T22:01:43.718238Z 01O Compiling tower-service v0.3.3 +2026-04-08T22:01:43.718243Z 01O Compiling getrandom v0.3.2 +2026-04-08T22:01:43.718248Z 01O Compiling rustls-pki-types v1.14.0 +2026-04-08T22:01:43.718252Z 01O Compiling tracing-core v0.1.36 +2026-04-08T22:01:43.718267Z 01O Compiling unicode-xid v0.2.6 +2026-04-08T22:01:44.218927Z 01O Compiling untrusted v0.9.0 +2026-04-08T22:01:44.218936Z 01O Compiling rustls v0.23.37 +2026-04-08T22:01:44.218940Z 01O Compiling slab v0.4.9 +2026-04-08T22:01:44.218979Z 01O Compiling aho-corasick v1.1.3 +2026-04-08T22:01:44.218986Z 01O Compiling num-traits v0.2.19 +2026-04-08T22:01:44.218993Z 01O Compiling memoffset v0.9.1 +2026-04-08T22:01:44.218999Z 01O Compiling fastrand v2.3.0 +2026-04-08T22:01:44.219002Z 01O Compiling http v1.4.0 +2026-04-08T22:01:44.219006Z 01O Compiling utf8parse v0.2.2 +2026-04-08T22:01:44.719427Z 01O Compiling anstyle-parse v0.2.6 +2026-04-08T22:01:44.719435Z 01O Compiling nix v0.29.0 +2026-04-08T22:01:44.719441Z 01O Compiling anstyle-query v1.1.2 +2026-04-08T22:01:44.719448Z 01O Compiling heck v0.5.0 +2026-04-08T22:01:44.719451Z 01O Compiling is_terminal_polyfill v1.70.1 +2026-04-08T22:01:44.719454Z 01O Compiling rustix v1.1.3 +2026-04-08T22:01:44.719460Z 01O Compiling hex v0.4.3 +2026-04-08T22:01:44.719470Z 01O Compiling colorchoice v1.0.3 +2026-04-08T22:01:44.719475Z 01O Compiling static_assertions v1.1.0 +2026-04-08T22:01:45.219831Z 01O Compiling anstyle v1.0.10 +2026-04-08T22:01:45.219839Z 01O Compiling tracing v0.1.44 +2026-04-08T22:01:45.219843Z 01O Compiling indexmap v2.12.1 +2026-04-08T22:01:45.219848Z 01O Compiling subtle v2.6.1 +2026-04-08T22:01:45.219851Z 01O Compiling either v1.13.0 +2026-04-08T22:01:45.219854Z 01O Compiling winnow v0.6.24 +2026-04-08T22:01:45.219860Z 01O Compiling serde_json v1.0.137 +2026-04-08T22:01:45.219862Z 01O Compiling clap_lex v0.7.4 +2026-04-08T22:01:45.219866Z 01O Compiling version_check v0.9.5 +2026-04-08T22:01:45.725950Z 01O Compiling anstream v0.6.18 +2026-04-08T22:01:45.725958Z 01O Compiling linux-raw-sys v0.11.0 +2026-04-08T22:01:45.725962Z 01O Compiling openssl-probe v0.1.5 +2026-04-08T22:01:45.725968Z 01O Compiling http-body v1.0.1 +2026-04-08T22:01:45.725970Z 01O Compiling itertools v0.12.1 +2026-04-08T22:01:45.725974Z 01O Compiling paste v1.0.15 +2026-04-08T22:01:45.725983Z 01O Compiling cbindgen v0.29.0 +2026-04-08T22:01:45.725986Z 01O Compiling rustls-native-certs v0.8.1 +2026-04-08T22:01:46.226440Z 01O Compiling clap_builder v4.5.27 +2026-04-08T22:01:46.226448Z 01O Compiling quote v1.0.38 +2026-04-08T22:01:46.226452Z 01O Compiling byteorder v1.5.0 +2026-04-08T22:01:46.226458Z 01O Compiling cc v1.2.55 +2026-04-08T22:01:46.226461Z 01O Compiling log v0.4.25 +2026-04-08T22:01:46.727863Z 01O Compiling crossbeam-utils v0.8.21 +2026-04-08T22:01:46.727870Z 01O Compiling allocator-api2 v0.2.21 +2026-04-08T22:01:46.727875Z 01O Compiling syn v2.0.96 +2026-04-08T22:01:47.229182Z 01O Compiling libdd-ddsketch v1.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-ddsketch) +2026-04-08T22:01:47.229191Z 01O Compiling typenum v1.17.0 +2026-04-08T22:01:47.229195Z 01O Compiling const_format_proc_macros v0.2.34 +2026-04-08T22:01:47.229202Z 01O Compiling libdd-trace-protobuf v3.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-trace-protobuf) +2026-04-08T22:01:47.730980Z 01O Compiling generic-array v0.14.7 +2026-04-08T22:01:47.730990Z 01O Compiling foldhash v0.1.5 +2026-04-08T22:01:47.730994Z 01O Compiling regex-automata v0.4.9 +2026-04-08T22:01:48.231422Z 01O Compiling rmp v0.8.14 +2026-04-08T22:01:48.231429Z 01O Compiling base64 v0.22.1 +2026-04-08T22:01:48.732122Z 01O Compiling rustix v0.38.43 +2026-04-08T22:01:48.732143Z 01O Compiling hashbrown v0.15.2 +2026-04-08T22:01:48.732147Z 01O Compiling zerocopy v0.8.24 +2026-04-08T22:01:49.233795Z 01O Compiling iana-time-zone v0.1.61 +2026-04-08T22:01:49.233807Z 01O Compiling rmpv v1.3.0 +2026-04-08T22:01:49.734867Z 01O Compiling const_format v0.2.34 +2026-04-08T22:01:49.734882Z 01O Compiling crossbeam-channel v0.5.15 +2026-04-08T22:01:49.734888Z 01O Compiling ahash v0.8.12 +2026-04-08T22:01:50.235835Z 01O Compiling nix v0.30.1 +2026-04-08T22:01:50.235853Z 01O Compiling stable_deref_trait v1.2.0 +2026-04-08T22:01:50.235887Z 01O Compiling fnv v1.0.7 +2026-04-08T22:01:50.235894Z 01O Compiling ident_case v1.0.1 +2026-04-08T22:01:50.235897Z 01O Compiling windows_x86_64_gnu v0.48.5 +2026-04-08T22:01:50.235901Z 01O Compiling linux-raw-sys v0.4.15 +2026-04-08T22:01:50.736772Z 01O Compiling cpp_demangle v0.5.1 +2026-04-08T22:01:50.736780Z 01O Compiling cadence v1.5.0 +2026-04-08T22:01:51.237620Z 01O Compiling cpp_demangle v0.4.4 +2026-04-08T22:01:51.237635Z 01O Compiling cpufeatures v0.2.16 +2026-04-08T22:01:51.237640Z 01O Compiling crypto-common v0.1.6 +2026-04-08T22:01:51.738045Z 01O Compiling block-buffer v0.10.4 +2026-04-08T22:01:51.738058Z 01O Compiling crossbeam-queue v0.3.12 +2026-04-08T22:01:51.738064Z 01O Compiling simd-adler32 v0.3.7 +2026-04-08T22:01:51.738070Z 01O Compiling digest v0.10.7 +2026-04-08T22:01:51.738073Z 01O Compiling constcat v0.4.1 +2026-04-08T22:01:51.738076Z 01O Compiling adler2 v2.0.0 +2026-04-08T22:01:51.738081Z 01O Compiling fallible-iterator v0.3.0 +2026-04-08T22:01:51.738083Z 01O Compiling schemars v0.8.21 +2026-04-08T22:01:51.738087Z 01O Compiling io-lifetimes v1.0.11 +2026-04-08T22:01:52.238803Z 01O Compiling arc-swap v1.7.1 +2026-04-08T22:01:52.238810Z 01O Compiling blazesym v0.2.3 +2026-04-08T22:01:52.238814Z 01O Compiling portable-atomic v1.10.0 +2026-04-08T22:01:52.739568Z 01O Compiling symbolic-demangle v12.13.3 +2026-04-08T22:01:52.739576Z 01O Compiling rustc-demangle v0.1.26 +2026-04-08T22:01:52.739582Z 01O Compiling gimli v0.32.0 +2026-04-08T22:01:52.739589Z 01O Compiling sha2 v0.10.8 +2026-04-08T22:01:52.739592Z 01O Compiling miniz_oxide v0.9.0 +2026-04-08T22:01:53.240682Z 01O Compiling windows-targets v0.48.5 +2026-04-08T22:01:53.240698Z 01O Compiling msvc-demangler v0.10.1 +2026-04-08T22:01:53.741762Z 01O Compiling ref-cast v1.0.23 +2026-04-08T22:01:53.741769Z 01O Compiling dyn-clone v1.0.17 +2026-04-08T22:01:53.741774Z 01O Compiling regex v1.11.1 +2026-04-08T22:01:53.741798Z 01O Compiling percent-encoding v2.3.1 +2026-04-08T22:01:54.243575Z 01O Compiling powerfmt v0.2.0 +2026-04-08T22:01:54.243582Z 01O Compiling windows-core v0.51.1 +2026-04-08T22:01:54.243586Z 01O Compiling float-cmp v0.10.0 +2026-04-08T22:01:54.243591Z 01O Compiling clap v4.5.27 +2026-04-08T22:01:54.243594Z 01O Compiling function_name-proc-macro v0.3.0 +2026-04-08T22:01:54.243598Z 01O Compiling num-conv v0.1.0 +2026-04-08T22:01:54.243602Z 01O Compiling time-core v0.1.2 +2026-04-08T22:01:54.743783Z 01O Compiling glibc_version v0.1.2 +2026-04-08T22:01:54.743790Z 01O Compiling lazy_static v1.4.0 +2026-04-08T22:01:54.743794Z 01O Compiling thread_local v1.1.8 +2026-04-08T22:01:54.743799Z 01O Compiling unsafe-libyaml v0.2.11 +2026-04-08T22:01:54.743801Z 01O Compiling simdutf8 v0.1.5 +2026-04-08T22:01:54.743805Z 01O Compiling sharded-slab v0.1.7 +2026-04-08T22:01:54.743810Z 01O Compiling function_name v0.3.0 +2026-04-08T22:01:54.743813Z 01O Compiling tracing-log v0.2.0 +2026-04-08T22:01:55.244601Z 01O Compiling memfd v0.6.4 +2026-04-08T22:01:55.244619Z 01O Compiling jobserver v0.1.32 +2026-04-08T22:01:55.244627Z 01O Compiling mio v1.0.3 +2026-04-08T22:01:55.244653Z 01O Compiling socket2 v0.6.2 +2026-04-08T22:01:55.244674Z 01O Compiling signal-hook-registry v1.4.2 +2026-04-08T22:01:55.244687Z 01O Compiling socket2 v0.5.10 +2026-04-08T22:01:55.745229Z 01O Compiling getrandom v0.2.15 +2026-04-08T22:01:55.745236Z 01O Compiling tempfile v3.24.0 +2026-04-08T22:01:55.745240Z 01O Compiling rand_core v0.6.4 +2026-04-08T22:01:56.247764Z 01O Compiling darling_core v0.20.10 +2026-04-08T22:01:56.247774Z 01O Compiling memmap2 v0.9.5 +2026-04-08T22:01:56.247779Z 01O Compiling serde_derive_internals v0.29.1 +2026-04-08T22:01:56.247784Z 01O Compiling hashbrown v0.14.5 +2026-04-08T22:01:56.748873Z 01O Compiling page_size v0.6.0 +2026-04-08T22:01:56.748895Z 01O Compiling errno v0.3.10 +2026-04-08T22:01:56.748899Z 01O Compiling matchers v0.2.0 +2026-04-08T22:01:56.748914Z 01O Compiling memory-stats v1.2.0 +2026-04-08T22:01:56.748976Z 01O Compiling cmake v0.1.57 +2026-04-08T22:01:56.748984Z 01O Compiling cc_utils v0.1.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/tools/cc_utils) +2026-04-08T22:01:56.749010Z 01O Compiling tracing-subscriber v0.3.22 +2026-04-08T22:01:56.749023Z 01O Compiling priority-queue v2.1.1 +2026-04-08T22:01:56.749029Z 01O Compiling zwohash v0.1.2 +2026-04-08T22:01:56.749056Z 01O Compiling prctl v1.0.0 +2026-04-08T22:01:56.749062Z 01O Compiling datadog-ipc v0.1.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/datadog-ipc) +2026-04-08T22:01:56.749070Z 01O Compiling datadog-sidecar-ffi v0.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/datadog-sidecar-ffi) +2026-04-08T22:01:57.249817Z 01O Compiling windows v0.51.1 +2026-04-08T22:01:57.249829Z 01O Compiling arrayref v0.3.9 +2026-04-08T22:01:57.249836Z 01O Compiling is-terminal v0.4.13 +2026-04-08T22:01:57.249857Z 01O Compiling humantime v2.1.0 +2026-04-08T22:01:57.249868Z 01O Compiling termcolor v1.4.1 +2026-04-08T22:01:57.249873Z 01O Compiling itertools v0.11.0 +2026-04-08T22:01:57.249895Z 01O Compiling const-str v0.5.7 +2026-04-08T22:01:57.750539Z 01O Compiling env_logger v0.10.2 +2026-04-08T22:01:57.750554Z 01O Compiling aws-lc-sys v0.37.0 +2026-04-08T22:01:57.750561Z 01O Compiling sys-info v0.9.1 +2026-04-08T22:01:57.750580Z 01O Compiling libdd-libunwind-sys v0.1.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-libunwind-sys) +2026-04-08T22:01:57.750589Z 01O Compiling spawn_worker v0.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/spawn_worker) +2026-04-08T22:01:58.251987Z 01O Compiling serde_derive v1.0.228 +2026-04-08T22:01:58.251993Z 01O Compiling futures-macro v0.3.31 +2026-04-08T22:01:58.251999Z 01O Compiling tokio-macros v2.6.0 +2026-04-08T22:01:58.252006Z 01O Compiling thiserror-impl v1.0.69 +2026-04-08T22:01:58.252008Z 01O Compiling pin-project-internal v1.1.8 +2026-04-08T22:01:58.252012Z 01O Compiling prost-derive v0.14.3 +2026-04-08T22:01:58.252017Z 01O Compiling zerocopy-derive v0.7.35 +2026-04-08T22:01:58.753669Z 01O Compiling schemars_derive v0.8.21 +2026-04-08T22:01:58.753677Z 01O Compiling num-derive v0.4.2 +2026-04-08T22:01:58.753682Z 01O Compiling ref-cast-impl v1.0.23 +2026-04-08T22:01:59.254485Z 01O Compiling datadog-ipc-macros v0.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/datadog-ipc-macros) +2026-04-08T22:01:59.254503Z 01O Compiling datadog-sidecar-macros v0.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/datadog-sidecar-macros) +2026-04-08T22:01:59.254510Z 01O Compiling tokio v1.49.0 +2026-04-08T22:01:59.254527Z 01O Compiling futures-util v0.3.31 +2026-04-08T22:01:59.755122Z 01O Compiling zerocopy v0.7.35 +2026-04-08T22:01:59.755134Z 01O Compiling pin-project v1.1.8 +2026-04-08T22:02:00.256833Z 01O Compiling libdd-capabilities v0.1.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-capabilities) +2026-04-08T22:02:00.256849Z 01O Compiling darling_macro v0.20.10 +2026-04-08T22:02:00.256857Z 01O Compiling ppv-lite86 v0.2.20 +2026-04-08T22:02:00.256879Z 01O Compiling prost v0.14.3 +2026-04-08T22:02:00.758056Z 01O Compiling darling v0.20.10 +2026-04-08T22:02:00.758066Z 01O Compiling serde_with_macros v3.12.0 +2026-04-08T22:02:00.758069Z 01O Compiling rand_chacha v0.3.1 +2026-04-08T22:02:01.257981Z 01O Compiling rand v0.8.5 +2026-04-08T22:02:02.259036Z 01O Compiling toml_datetime v0.6.8 +2026-04-08T22:02:02.259054Z 01O Compiling serde_spanned v0.6.8 +2026-04-08T22:02:02.259062Z 01O Compiling uuid v1.12.1 +2026-04-08T22:02:02.259080Z 01O Compiling toml_edit v0.22.22 +2026-04-08T22:02:02.259093Z 01O Compiling serde_bytes v0.11.15 +2026-04-08T22:02:02.259098Z 01O Compiling futures-executor v0.3.31 +2026-04-08T22:02:02.259114Z 01O Compiling http-body-util v0.1.2 +2026-04-08T22:02:02.259119Z 01O Compiling rmp-serde v1.3.0 +2026-04-08T22:02:02.259126Z 01O Compiling libdd-tinybytes v1.1.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-tinybytes) +2026-04-08T22:02:02.259134Z 01O Compiling chrono v0.4.41 +2026-04-08T22:02:02.259136Z 01O Compiling futures v0.3.31 +2026-04-08T22:02:02.759608Z 01O Compiling halfbrown v0.2.5 +2026-04-08T22:02:02.759633Z 01O Compiling os_info v3.14.0 +2026-04-08T22:02:02.759638Z 01O Compiling debugid v0.8.0 +2026-04-08T22:02:02.759643Z 01O Compiling deranged v0.3.11 +2026-04-08T22:02:02.759646Z 01O Compiling manual_future v0.1.1 +2026-04-08T22:02:02.759649Z 01O Compiling serde_with v3.12.0 +2026-04-08T22:02:02.759663Z 01O Compiling bincode v1.3.3 +2026-04-08T22:02:02.759670Z 01O Compiling serde_yaml v0.9.34+deprecated +2026-04-08T22:02:02.759676Z 01O Compiling symbolic-common v12.13.3 +2026-04-08T22:02:02.759683Z 01O Compiling value-trait v0.10.1 +2026-04-08T22:02:03.260325Z 01O Compiling simd-json v0.14.3 +2026-04-08T22:02:03.260343Z 01O Compiling time v0.3.37 +2026-04-08T22:02:04.263683Z 01O Compiling hyper v1.6.0 +2026-04-08T22:02:04.263692Z 01O Compiling toml v0.8.19 +2026-04-08T22:02:04.263698Z 01O Compiling tokio-util v0.7.13 +2026-04-08T22:02:04.263704Z 01O Compiling sendfd v0.4.3 +2026-04-08T22:02:05.264817Z 01O Compiling hyper-util v0.1.15 +2026-04-08T22:02:05.264828Z 01O Compiling libdd-trace-normalization v2.0.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-trace-normalization) +2026-04-08T22:02:05.264835Z 01O Compiling libdd-library-config v1.1.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-library-config) +2026-04-08T22:02:06.265783Z 01O Compiling libdd-common v3.0.2 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-common) +2026-04-08T22:02:07.767813Z 01O Compiling build_common v0.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/build-common) +2026-04-08T22:02:07.767824Z 01O Compiling libdd-crashtracker v1.0.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-crashtracker) +2026-04-08T22:02:08.268460Z 01O Compiling libdd-common-ffi v0.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-common-ffi) +2026-04-08T22:02:08.268478Z 01O Compiling libdd-telemetry-ffi v0.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-telemetry-ffi) +2026-04-08T22:02:08.268487Z 01O Compiling libdd-crashtracker-ffi v0.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-crashtracker-ffi) +2026-04-08T22:02:08.268515Z 01O Compiling datadog-live-debugger-ffi v0.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/datadog-live-debugger-ffi) +2026-04-08T22:02:08.268537Z 01O Compiling libdd-library-config-ffi v0.0.2 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-library-config-ffi) +2026-04-08T22:02:11.271863Z 01O Compiling rustls-webpki v0.103.9 +2026-04-08T22:02:14.775734Z 01O Compiling tokio-rustls v0.26.1 +2026-04-08T22:02:14.775743Z 01O Compiling hyper-rustls v0.27.7 +2026-04-08T22:02:15.777780Z 01O Compiling libdd-telemetry v4.0.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-telemetry) +2026-04-08T22:02:15.777791Z 01O Compiling libdd-capabilities-impl v0.1.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-capabilities-impl) +2026-04-08T22:02:15.777798Z 01O Compiling libdd-dogstatsd-client v2.0.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-dogstatsd-client) +2026-04-08T22:02:15.777862Z 01O Compiling libdd-trace-utils v3.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-trace-utils) +2026-04-08T22:02:17.779288Z 01O Compiling libdd-trace-stats v2.0.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-trace-stats) +2026-04-08T22:02:18.784552Z 01O Compiling libdd-data-pipeline v3.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-data-pipeline) +2026-04-08T22:02:19.783105Z 01O Compiling datadog-live-debugger v0.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/datadog-live-debugger) +2026-04-08T22:02:21.284459Z 01O Compiling datadog-remote-config v0.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/datadog-remote-config) +2026-04-08T22:02:41.317137Z 01O Compiling datadog-sidecar v0.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/datadog-sidecar) +2026-04-08T22:02:57.340080Z 01O Compiling ddtrace-php v0.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/components-rs) +2026-04-08T22:02:59.842715Z 01O Finished `dev` profile [unoptimized + debuginfo] target(s) in 1m 23s +2026-04-08T22:03:00.343129Z 01O [ 55%] No install step for 'components_rs_proj' +2026-04-08T22:03:00.343145Z 01O [ 57%] Completed 'components_rs_proj' +2026-04-08T22:03:00.343152Z 01O [ 57%] Built target components_rs_proj +2026-04-08T22:03:00.343171Z 01O [ 58%] Building CXX object CMakeFiles/catch2_main.dir/catch2_main.cc.o +2026-04-08T22:03:07.853149Z 01O [ 59%] Linking CXX static library libcatch2_main.a +2026-04-08T22:03:07.853178Z 01O [ 59%] Built target catch2_main +2026-04-08T22:03:07.853182Z 01O [ 62%] Building CXX object hook/tests/CMakeFiles/hooks.dir/internal/static.cc.o +2026-04-08T22:03:07.853188Z 01O [ 62%] Building CXX object exceptions/tests/CMakeFiles/exceptions.dir/exceptions.cc.o +2026-04-08T22:03:07.853192Z 01O [ 63%] Building CXX object hook/tests/CMakeFiles/hooks.dir/internal/request.cc.o +2026-04-08T22:03:07.853197Z 01O [ 64%] Building CXX object interceptor/tests/CMakeFiles/interceptor.dir/interceptor.cc.o +2026-04-08T22:03:07.853224Z 01O [ 66%] Building CXX object config/tests/CMakeFiles/config.dir/ext_zai_config.cc.o +2026-04-08T22:03:07.853239Z 01O [ 67%] Building CXX object config/tests/CMakeFiles/config.dir/default.cc.o +2026-04-08T22:03:07.853245Z 01O [ 68%] Building CXX object env/tests/CMakeFiles/env.dir/error.cc.o +2026-04-08T22:03:07.853266Z 01O [ 71%] Building CXX object uri_normalization/tests/CMakeFiles/uri_normalization.dir/uri_normalization.cc.o +2026-04-08T22:03:07.853279Z 01O [ 71%] Building CXX object config/tests/CMakeFiles/config.dir/env.cc.o +2026-04-08T22:03:07.853284Z 01O [ 72%] Building CXX object config/tests/CMakeFiles/config.dir/id.cc.o +2026-04-08T22:03:07.853296Z 01O [ 74%] Building CXX object sandbox/tests/CMakeFiles/sandbox.dir/error.cc.o +2026-04-08T22:03:07.853316Z 01O [ 77%] Building CXX object config/tests/CMakeFiles/config.dir/decode.cc.o +2026-04-08T22:03:07.853321Z 01O [ 77%] Building CXX object sandbox/tests/CMakeFiles/sandbox.dir/exception.cc.o +2026-04-08T22:03:07.853327Z 01O [ 79%] Building CXX object env/tests/CMakeFiles/env.dir/sapi.cc.o +2026-04-08T22:03:07.853330Z 01O [ 79%] Building CXX object headers/tests/CMakeFiles/headers.dir/headers.cc.o +2026-04-08T22:03:07.853334Z 01O [ 80%] Building CXX object sandbox/tests/CMakeFiles/sandbox.dir/sandbox.cc.o +2026-04-08T22:03:07.853339Z 01O [ 83%] Building CXX object json/tests/CMakeFiles/json.dir/json.cc.o +2026-04-08T22:03:07.853342Z 01O [ 83%] Building CXX object env/tests/CMakeFiles/env.dir/host.cc.o +2026-04-08T22:03:07.853348Z 01O [ 84%] Building CXX object zai_string/tests/CMakeFiles/strings.dir/strings.cc.o +2026-04-08T22:03:07.853354Z 01O [ 85%] Building CXX object interceptor/tests/CMakeFiles/interceptor.dir/resolver.cc.o +2026-04-08T22:03:07.853358Z 01O [ 87%] Building CXX object config/tests/CMakeFiles/config.dir/ini.cc.o +2026-04-08T22:03:09.355399Z 01O [ 88%] Linking CXX executable json +2026-04-08T22:03:09.355409Z 01O [ 89%] Linking CXX executable exceptions +2026-04-08T22:03:09.856107Z 01O [ 90%] Linking CXX executable env +2026-04-08T22:03:09.856125Z 01O [ 92%] Linking CXX executable strings +2026-04-08T22:03:09.856132Z 01O [ 93%] Linking CXX executable sandbox +2026-04-08T22:03:09.856150Z 01O [ 94%] Linking CXX executable hooks +2026-04-08T22:03:09.856162Z 01O [ 96%] Linking CXX executable headers +2026-04-08T22:03:09.856168Z 01O [ 96%] Built target json +2026-04-08T22:03:09.856204Z 01O [ 96%] Built target exceptions +2026-04-08T22:03:09.856209Z 01O [ 96%] Built target env +2026-04-08T22:03:09.856215Z 01O [ 96%] Built target strings +2026-04-08T22:03:09.856221Z 01O [ 96%] Built target sandbox +2026-04-08T22:03:09.856224Z 01O [ 96%] Built target headers +2026-04-08T22:03:09.856227Z 01O [ 96%] Built target hooks +2026-04-08T22:03:10.356394Z 01O [ 97%] Linking CXX executable config +2026-04-08T22:03:10.356403Z 01O [ 98%] Linking CXX executable uri_normalization +2026-04-08T22:03:10.356408Z 01O [ 98%] Built target config +2026-04-08T22:03:10.356417Z 01O [100%] Linking CXX executable interceptor +2026-04-08T22:03:10.356420Z 01O [100%] Built target uri_normalization +2026-04-08T22:03:10.856827Z 01O [100%] Built target interceptor +2026-04-08T22:03:10.856845Z 01O $ mkdir -p "${CI_PROJECT_DIR}/artifacts" +2026-04-08T22:03:10.856854Z 01O $ make test ARGS="--output-junit ${CI_PROJECT_DIR}/artifacts/zai-8.0-debug-zts-asan-results.xml --output-on-failure" +2026-04-08T22:03:10.856868Z 01O Running tests... +2026-04-08T22:03:10.856876Z 01O Test project /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_zai +2026-04-08T22:03:10.856933Z 01O Start 1: env/host [non-empty string] +2026-04-08T22:03:10.856964Z 01O 1/205 Test #1: env/host [non-empty string] ................................................................... Passed 0.11 sec +2026-04-08T22:03:10.856969Z 01O Start 2: env/host [empty string] +2026-04-08T22:03:10.856974Z 01O 2/205 Test #2: env/host [empty string] ....................................................................... Passed 0.07 sec +2026-04-08T22:03:10.856981Z 01O Start 3: env/host [not set] +2026-04-08T22:03:10.856983Z 01O 3/205 Test #3: env/host [not set] ............................................................................ Passed 0.06 sec +2026-04-08T22:03:10.856988Z 01O Start 4: env/host [outside request context] +2026-04-08T22:03:10.856993Z 01O 4/205 Test #4: env/host [outside request context] ............................................................ Passed 0.07 sec +2026-04-08T22:03:10.856996Z 01O Start 5: env/error [zero name len (sys)] +2026-04-08T22:03:11.357708Z 01O 5/205 Test #5: env/error [zero name len (sys)] ............................................................... Passed 0.07 sec +2026-04-08T22:03:11.357726Z 01O Start 6: env/sapi [non-empty string] +2026-04-08T22:03:11.357732Z 01O 6/205 Test #6: env/sapi [non-empty string] ................................................................... Passed 0.07 sec +2026-04-08T22:03:11.357769Z 01O Start 7: env/sapi [non-empty string (no host env fallback)] +2026-04-08T22:03:11.357785Z 01O 7/205 Test #7: env/sapi [non-empty string (no host env fallback)] ............................................ Passed 0.07 sec +2026-04-08T22:03:11.357793Z 01O Start 8: env/sapi [fallback to host env when sapi not set] +2026-04-08T22:03:11.357801Z 01O 8/205 Test #8: env/sapi [fallback to host env when sapi not set] ............................................. Passed 0.07 sec +2026-04-08T22:03:11.357804Z 01O Start 9: env/sapi [not set] +2026-04-08T22:03:11.357807Z 01O 9/205 Test #9: env/sapi [not set] ............................................................................ Passed 0.07 sec +2026-04-08T22:03:11.357814Z 01O Start 10: env/sapi [not set (sapi returns null regardless of host env)] +2026-04-08T22:03:11.357817Z 01O 10/205 Test #10: env/sapi [not set (sapi returns null regardless of host env)] ................................. Passed 0.06 sec +2026-04-08T22:03:11.357821Z 01O Start 11: env/sapi [rinit non-empty string] +2026-04-08T22:03:11.357827Z 01O 11/205 Test #11: env/sapi [rinit non-empty string] ............................................................. Passed 0.06 sec +2026-04-08T22:03:11.357831Z 01O Start 12: exceptions [reading message with non-string type returns a non-empty string] +2026-04-08T22:03:11.357837Z 01O 12/205 Test #12: exceptions [reading message with non-string type returns a non-empty string] .................. Passed 0.07 sec +2026-04-08T22:03:11.357872Z 01O Start 13: exceptions [reading message from exception] +2026-04-08T22:03:11.857861Z 01O 13/205 Test #13: exceptions [reading message from exception] ................................................... Passed 0.07 sec +2026-04-08T22:03:11.857872Z 01O Start 14: exceptions [reading message from exception subclass] +2026-04-08T22:03:11.857877Z 01O 14/205 Test #14: exceptions [reading message from exception subclass] .......................................... Passed 0.07 sec +2026-04-08T22:03:11.857887Z 01O Start 15: exceptions [reading message from error] +2026-04-08T22:03:11.857890Z 01O 15/205 Test #15: exceptions [reading message from error] ....................................................... Passed 0.07 sec +2026-04-08T22:03:11.857895Z 01O Start 16: exceptions [reading message from error subclass] +2026-04-08T22:03:11.857901Z 01O 16/205 Test #16: exceptions [reading message from error subclass] .............................................. Passed 0.08 sec +2026-04-08T22:03:11.857954Z 01O Start 17: exceptions [reading trace from exception] +2026-04-08T22:03:11.857960Z 01O 17/205 Test #17: exceptions [reading trace from exception] ..................................................... Passed 0.08 sec +2026-04-08T22:03:11.857984Z 01O Start 18: exceptions [serializing trace with invalid frame] +2026-04-08T22:03:11.858000Z 01O 18/205 Test #18: exceptions [serializing trace with invalid frame] ............................................. Passed 0.07 sec +2026-04-08T22:03:11.858007Z 01O Start 19: exceptions [serializing valid trace] +2026-04-08T22:03:12.358511Z 01O 19/205 Test #19: exceptions [serializing valid trace] .......................................................... Passed 0.08 sec +2026-04-08T22:03:12.358540Z 01O Start 20: exceptions [serializing trace with invalid filename] +2026-04-08T22:03:12.358553Z 01O 20/205 Test #20: exceptions [serializing trace with invalid filename] .......................................... Passed 0.07 sec +2026-04-08T22:03:12.358560Z 01O Start 21: exceptions [serializing trace without line number] +2026-04-08T22:03:12.358563Z 01O 21/205 Test #21: exceptions [serializing trace without line number] ............................................ Passed 0.07 sec +2026-04-08T22:03:12.358569Z 01O Start 22: exceptions [serializing trace with invalid line number] +2026-04-08T22:03:12.358577Z 01O 22/205 Test #22: exceptions [serializing trace with invalid line number] ....................................... Passed 0.07 sec +2026-04-08T22:03:12.358581Z 01O Start 23: exceptions [serializing trace with invalid class, type and function] +2026-04-08T22:03:12.358585Z 01O 23/205 Test #23: exceptions [serializing trace with invalid class, type and function] .......................... Passed 0.07 sec +2026-04-08T22:03:12.358591Z 01O Start 24: config/default [bool] +2026-04-08T22:03:12.358594Z 01O 24/205 Test #24: config/default [bool] ......................................................................... Passed 0.07 sec +2026-04-08T22:03:12.358599Z 01O Start 25: config/default [double] +2026-04-08T22:03:12.358607Z 01O 25/205 Test #25: config/default [double] ....................................................................... Passed 0.07 sec +2026-04-08T22:03:12.358610Z 01O Start 26: config/default [int] +2026-04-08T22:03:12.859292Z 01O 26/205 Test #26: config/default [int] .......................................................................... Passed 0.09 sec +2026-04-08T22:03:12.859321Z 01O Start 27: config/default [map] +2026-04-08T22:03:12.859326Z 01O 27/205 Test #27: config/default [map] .......................................................................... Passed 0.07 sec +2026-04-08T22:03:12.859333Z 01O Start 28: config/default [map (empty)] +2026-04-08T22:03:12.859336Z 01O 28/205 Test #28: config/default [map (empty)] .................................................................. Passed 0.07 sec +2026-04-08T22:03:12.859341Z 01O Start 29: config/default [string] +2026-04-08T22:03:12.859349Z 01O 29/205 Test #29: config/default [string] ....................................................................... Passed 0.07 sec +2026-04-08T22:03:12.859353Z 01O Start 30: config/env [bool] +2026-04-08T22:03:12.859357Z 01O 30/205 Test #30: config/env [bool] ............................................................................. Passed 0.07 sec +2026-04-08T22:03:12.859363Z 01O Start 31: config/env [double] +2026-04-08T22:03:12.859366Z 01O 31/205 Test #31: config/env [double] ........................................................................... Passed 0.07 sec +2026-04-08T22:03:12.859370Z 01O Start 32: config/env [double (decoding error)] +2026-04-08T22:03:12.859376Z 01O 32/205 Test #32: config/env [double (decoding error)] .......................................................... Passed 0.07 sec +2026-04-08T22:03:12.859425Z 01O Start 33: config/env [int] +2026-04-08T22:03:13.360024Z 01O 33/205 Test #33: config/env [int] .............................................................................. Passed 0.07 sec +2026-04-08T22:03:13.360035Z 01O Start 34: config/env [int (decoding error)] +2026-04-08T22:03:13.360040Z 01O 34/205 Test #34: config/env [int (decoding error)] ............................................................. Passed 0.07 sec +2026-04-08T22:03:13.360049Z 01O Start 35: config/env [map] +2026-04-08T22:03:13.360052Z 01O 35/205 Test #35: config/env [map] .............................................................................. Passed 0.07 sec +2026-04-08T22:03:13.360057Z 01O Start 36: config/env [map (empty)] +2026-04-08T22:03:13.360086Z 01O 36/205 Test #36: config/env [map (empty)] ...................................................................... Passed 0.07 sec +2026-04-08T22:03:13.360102Z 01O Start 37: config/env [map (decoding error)] +2026-04-08T22:03:13.360109Z 01O 37/205 Test #37: config/env [map (decoding error)] ............................................................. Passed 0.07 sec +2026-04-08T22:03:13.360130Z 01O Start 38: config/env [string] +2026-04-08T22:03:13.360143Z 01O 38/205 Test #38: config/env [string] ........................................................................... Passed 0.07 sec +2026-04-08T22:03:13.360149Z 01O Start 39: config/env [string (empty)] +2026-04-08T22:03:13.360163Z 01O 39/205 Test #39: config/env [string (empty)] ................................................................... Passed 0.07 sec +2026-04-08T22:03:13.360173Z 01O Start 40: config/env [alias] +2026-04-08T22:03:13.360178Z 01O 40/205 Test #40: config/env [alias] ............................................................................ Passed 0.07 sec +2026-04-08T22:03:13.360189Z 01O Start 41: config/env [sys env change after memoization is not reflected] +2026-04-08T22:03:13.860590Z 01O 41/205 Test #41: config/env [sys env change after memoization is not reflected] ................................ Passed 0.07 sec +2026-04-08T22:03:13.860609Z 01O Start 42: config/id [bool] +2026-04-08T22:03:13.860615Z 01O 42/205 Test #42: config/id [bool] .............................................................................. Passed 0.07 sec +2026-04-08T22:03:13.860638Z 01O Start 43: config/id [alias] +2026-04-08T22:03:13.860653Z 01O 43/205 Test #43: config/id [alias] ............................................................................. Passed 0.07 sec +2026-04-08T22:03:13.860659Z 01O Start 44: config/id [unknown] +2026-04-08T22:03:13.860682Z 01O 44/205 Test #44: config/id [unknown] ........................................................................... Passed 0.07 sec +2026-04-08T22:03:13.860686Z 01O Start 45: config/id [null id] +2026-04-08T22:03:13.860694Z 01O 45/205 Test #45: config/id [null id] ........................................................................... Passed 0.07 sec +2026-04-08T22:03:13.860701Z 01O Start 46: config/decode [bool] +2026-04-08T22:03:13.860704Z 01O 46/205 Test #46: config/decode [bool] .......................................................................... Passed 0.07 sec +2026-04-08T22:03:13.860708Z 01O Start 47: config/decode [double] +2026-04-08T22:03:13.860714Z 01O 47/205 Test #47: config/decode [double] ........................................................................ Passed 0.07 sec +2026-04-08T22:03:13.860718Z 01O Start 48: config/decode [int] +2026-04-08T22:03:14.361381Z 01O 48/205 Test #48: config/decode [int] ........................................................................... Passed 0.07 sec +2026-04-08T22:03:14.361403Z 01O Start 49: config/decode [map] +2026-04-08T22:03:14.361412Z 01O 49/205 Test #49: config/decode [map] ........................................................................... Passed 0.07 sec +2026-04-08T22:03:14.361459Z 01O Start 50: config/decode [set] +2026-04-08T22:03:14.361463Z 01O 50/205 Test #50: config/decode [set] ........................................................................... Passed 0.07 sec +2026-04-08T22:03:14.361467Z 01O Start 51: config/decode [json] +2026-04-08T22:03:14.361475Z 01O 51/205 Test #51: config/decode [json] .......................................................................... Passed 0.07 sec +2026-04-08T22:03:14.361479Z 01O Start 52: config/ini [bool INI: default value] +2026-04-08T22:03:14.361482Z 01O 52/205 Test #52: config/ini [bool INI: default value] .......................................................... Passed 0.07 sec +2026-04-08T22:03:14.361488Z 01O Start 53: config/ini [bool INI: system value] +2026-04-08T22:03:14.361491Z 01O 53/205 Test #53: config/ini [bool INI: system value] ........................................................... Passed 0.07 sec +2026-04-08T22:03:14.361495Z 01O Start 54: config/ini [bool INI: user value] +2026-04-08T22:03:14.361502Z 01O 54/205 Test #54: config/ini [bool INI: user value] ............................................................. Passed 0.07 sec +2026-04-08T22:03:14.361505Z 01O Start 55: config/ini [double INI: default value] +2026-04-08T22:03:14.861939Z 01O 55/205 Test #55: config/ini [double INI: default value] ........................................................ Passed 0.07 sec +2026-04-08T22:03:14.861949Z 01O Start 56: config/ini [double INI: system value] +2026-04-08T22:03:14.861966Z 01O 56/205 Test #56: config/ini [double INI: system value] ......................................................... Passed 0.07 sec +2026-04-08T22:03:14.861974Z 01O Start 57: config/ini [double INI: user value] +2026-04-08T22:03:14.861977Z 01O 57/205 Test #57: config/ini [double INI: user value] ........................................................... Passed 0.07 sec +2026-04-08T22:03:14.861981Z 01O Start 58: config/ini [int INI: default value] +2026-04-08T22:03:14.862004Z 01O 58/205 Test #58: config/ini [int INI: default value] ........................................................... Passed 0.07 sec +2026-04-08T22:03:14.862018Z 01O Start 59: config/ini [int INI: system value] +2026-04-08T22:03:14.862023Z 01O 59/205 Test #59: config/ini [int INI: system value] ............................................................ Passed 0.07 sec +2026-04-08T22:03:14.862048Z 01O Start 60: config/ini [int INI: user value] +2026-04-08T22:03:14.862062Z 01O 60/205 Test #60: config/ini [int INI: user value] .............................................................. Passed 0.07 sec +2026-04-08T22:03:14.862067Z 01O Start 61: config/ini [map INI: default value] +2026-04-08T22:03:14.862081Z 01O 61/205 Test #61: config/ini [map INI: default value] ........................................................... Passed 0.07 sec +2026-04-08T22:03:14.862092Z 01O Start 62: config/ini [map INI: system value] +2026-04-08T22:03:15.362223Z 01O 62/205 Test #62: config/ini [map INI: system value] ............................................................ Passed 0.07 sec +2026-04-08T22:03:15.362243Z 01O Start 63: config/ini [map INI: user value] +2026-04-08T22:03:15.362250Z 01O 63/205 Test #63: config/ini [map INI: user value] .............................................................. Passed 0.07 sec +2026-04-08T22:03:15.362279Z 01O Start 64: config/ini [string INI: default value] +2026-04-08T22:03:15.362296Z 01O 64/205 Test #64: config/ini [string INI: default value] ........................................................ Passed 0.07 sec +2026-04-08T22:03:15.362302Z 01O Start 65: config/ini [string INI: system value] +2026-04-08T22:03:15.362339Z 01O 65/205 Test #65: config/ini [string INI: system value] ......................................................... Passed 0.07 sec +2026-04-08T22:03:15.362396Z 01O Start 66: config/ini [string INI: user value] +2026-04-08T22:03:15.362420Z 01O 66/205 Test #66: config/ini [string INI: user value] ........................................................... Passed 0.07 sec +2026-04-08T22:03:15.362423Z 01O Start 67: config/ini [INI: invalid user value] +2026-04-08T22:03:15.362430Z 01O 67/205 Test #67: config/ini [INI: invalid user value] .......................................................... Passed 0.07 sec +2026-04-08T22:03:15.362438Z 01O Start 68: config/ini [INI: invalid perdir value] +2026-04-08T22:03:15.362442Z 01O 68/205 Test #68: config/ini [INI: invalid perdir value] ........................................................ Passed 0.07 sec +2026-04-08T22:03:15.362446Z 01O Start 69: config/ini [env overrides system INI] +2026-04-08T22:03:15.863007Z 01O 69/205 Test #69: config/ini [env overrides system INI] ......................................................... Passed 0.07 sec +2026-04-08T22:03:15.863026Z 01O Start 70: config/ini [system INI reflected in all aliases] +2026-04-08T22:03:15.863035Z 01O 70/205 Test #70: config/ini [system INI reflected in all aliases] .............................................. Passed 0.07 sec +2026-04-08T22:03:15.863044Z 01O Start 71: config/ini [runtime INI update reflected in all aliases] +2026-04-08T22:03:15.863047Z 01O 71/205 Test #71: config/ini [runtime INI update reflected in all aliases] ...................................... Passed 0.07 sec +2026-04-08T22:03:15.863052Z 01O Start 72: config/ini [env followed by ini_restore] +2026-04-08T22:03:15.863058Z 01O 72/205 Test #72: config/ini [env followed by ini_restore] ...................................................... Passed 0.07 sec +2026-04-08T22:03:15.863062Z 01O Start 73: config/ini [perdir INI setting reflected in all aliases] +2026-04-08T22:03:15.863066Z 01O 73/205 Test #73: config/ini [perdir INI setting reflected in all aliases] ...................................... Passed 0.07 sec +2026-04-08T22:03:15.863076Z 01O Start 74: config/ini [invalid perdir INI setting ignored] +2026-04-08T22:03:15.863080Z 01O 74/205 Test #74: config/ini [invalid perdir INI setting ignored] ............................................... Passed 0.07 sec +2026-04-08T22:03:15.863084Z 01O Start 75: config/ini [change before request startup] +2026-04-08T22:03:15.863090Z 01O 75/205 Test #75: config/ini [change before request startup] .................................................... Passed 0.07 sec +2026-04-08T22:03:15.863095Z 01O Start 76: config/ini [setting perdir INI setting for multiple ZAI config users] +2026-04-08T22:03:15.863100Z 01O 76/205 Test #76: config/ini [setting perdir INI setting for multiple ZAI config users] ......................... Passed 0.07 sec +2026-04-08T22:03:15.863106Z 01O Start 77: config/ini [second consumer extension causes original_on_modify to be set] +2026-04-08T22:03:16.363794Z 01O 77/205 Test #77: config/ini [second consumer extension causes original_on_modify to be set] .................... Passed 0.07 sec +2026-04-08T22:03:16.363813Z 01O Start 78: json [encode] +2026-04-08T22:03:16.363821Z 01O 78/205 Test #78: json [encode] ................................................................................. Passed 0.07 sec +2026-04-08T22:03:16.363842Z 01O Start 79: json [decode] +2026-04-08T22:03:16.363855Z 01O 79/205 Test #79: json [decode] ................................................................................. Passed 0.07 sec +2026-04-08T22:03:16.363861Z 01O Start 80: hook/internal/static [continue] +2026-04-08T22:03:16.363888Z 01O 80/205 Test #80: hook/internal/static [continue] ............................................................... Passed 0.07 sec +2026-04-08T22:03:16.363893Z 01O Start 81: hook/internal/static [stop] +2026-04-08T22:03:16.363947Z 01O 81/205 Test #81: hook/internal/static [stop] ................................................................... Passed 0.07 sec +2026-04-08T22:03:16.363964Z 01O Start 82: hook/internal/static [multiple continue] +2026-04-08T22:03:16.363974Z 01O 82/205 Test #82: hook/internal/static [multiple continue] ...................................................... Passed 0.07 sec +2026-04-08T22:03:16.363980Z 01O Start 83: hook/internal/static [multiple stop] +2026-04-08T22:03:16.363994Z 01O 83/205 Test #83: hook/internal/static [multiple stop] .......................................................... Passed 0.07 sec +2026-04-08T22:03:16.364002Z 01O Start 84: hook/internal/request [continue] +2026-04-08T22:03:16.864428Z 01O 84/205 Test #84: hook/internal/request [continue] .............................................................. Passed 0.07 sec +2026-04-08T22:03:16.864437Z 01O Start 85: hook/internal/request [stop] +2026-04-08T22:03:16.864441Z 01O 85/205 Test #85: hook/internal/request [stop] .................................................................. Passed 0.07 sec +2026-04-08T22:03:16.864448Z 01O Start 86: hook/internal/request [multiple continue] +2026-04-08T22:03:16.864451Z 01O 86/205 Test #86: hook/internal/request [multiple continue] ..................................................... Passed 0.07 sec +2026-04-08T22:03:16.864455Z 01O Start 87: hook/internal/request [multiple stop] +2026-04-08T22:03:16.864460Z 01O 87/205 Test #87: hook/internal/request [multiple stop] ......................................................... Passed 0.07 sec +2026-04-08T22:03:16.864463Z 01O Start 88: hook/internal/request [continue with static] +2026-04-08T22:03:16.864467Z 01O 88/205 Test #88: hook/internal/request [continue with static] .................................................. Passed 0.07 sec +2026-04-08T22:03:16.864491Z 01O Start 89: hook/internal/request [stop with static] +2026-04-08T22:03:16.864505Z 01O 89/205 Test #89: hook/internal/request [stop with static] ...................................................... Passed 0.07 sec +2026-04-08T22:03:16.864511Z 01O Start 90: hook/internal/request [nonexistent removal] +2026-04-08T22:03:16.864540Z 01O 90/205 Test #90: hook/internal/request [nonexistent removal] ................................................... Passed 0.07 sec +2026-04-08T22:03:16.864554Z 01O Start 91: hook/internal/request [resolved removal] +2026-04-08T22:03:17.364829Z 01O 91/205 Test #91: hook/internal/request [resolved removal] ...................................................... Passed 0.07 sec +2026-04-08T22:03:17.364857Z 01O Start 92: hook/internal/request [unresolved removal] +2026-04-08T22:03:17.364862Z 01O 92/205 Test #92: hook/internal/request [unresolved removal] .................................................... Passed 0.07 sec +2026-04-08T22:03:17.364868Z 01O Start 93: hook/internal/request [hook add during begin] +2026-04-08T22:03:17.364882Z 01O 93/205 Test #93: hook/internal/request [hook add during begin] ................................................. Passed 0.07 sec +2026-04-08T22:03:17.364888Z 01O Start 94: interceptor [empty user function intercepting] +2026-04-08T22:03:17.364914Z 01O 94/205 Test #94: interceptor [empty user function intercepting] ................................................ Passed 0.07 sec +2026-04-08T22:03:17.364933Z 01O Start 95: interceptor [function intercepting after initial call] +2026-04-08T22:03:17.364942Z 01O 95/205 Test #95: interceptor [function intercepting after initial call] ........................................ Passed 0.07 sec +2026-04-08T22:03:17.364950Z 01O Start 96: interceptor [user function intercepting returns value] +2026-04-08T22:03:17.364953Z 01O 96/205 Test #96: interceptor [user function intercepting returns value] ........................................ Passed 0.07 sec +2026-04-08T22:03:17.365014Z 01O Start 97: interceptor [user function throws] +2026-04-08T22:03:17.365024Z 01O 97/205 Test #97: interceptor [user function throws] ............................................................ Passed 0.07 sec +2026-04-08T22:03:17.365028Z 01O Start 98: interceptor [user function with caught exception] +2026-04-08T22:03:17.365034Z 01O 98/205 Test #98: interceptor [user function with caught exception] ............................................. Passed 0.07 sec +2026-04-08T22:03:17.365042Z 01O Start 99: interceptor [user function throws despite catch blocks] +2026-04-08T22:03:17.865535Z 01O 99/205 Test #99: interceptor [user function throws despite catch blocks] ....................................... Passed 0.09 sec +2026-04-08T22:03:17.865546Z 01O Start 100: interceptor [user function throws despite finally blocks] +2026-04-08T22:03:17.865551Z 01O 100/205 Test #100: interceptor [user function throws despite finally blocks] ..................................... Passed 0.07 sec +2026-04-08T22:03:17.865557Z 01O Start 101: interceptor [user function with finally-discarded exception] +2026-04-08T22:03:17.865560Z 01O 101/205 Test #101: interceptor [user function with finally-discarded exception] .................................. Passed 0.07 sec +2026-04-08T22:03:17.865564Z 01O Start 102: interceptor [direct internal function intercepting] +2026-04-08T22:03:17.865570Z 01O 102/205 Test #102: interceptor [direct internal function intercepting] ........................................... Passed 0.07 sec +2026-04-08T22:03:17.865573Z 01O Start 103: interceptor [user calls internal function intercepting] +2026-04-08T22:03:17.865577Z 01O 103/205 Test #103: interceptor [user calls internal function intercepting] ....................................... Passed 0.07 sec +2026-04-08T22:03:17.865598Z 01O Start 104: interceptor [internal function throws] +2026-04-08T22:03:17.865612Z 01O 104/205 Test #104: interceptor [internal function throws] ........................................................ Passed 0.07 sec +2026-04-08T22:03:17.865618Z 01O Start 105: interceptor [generator function intercepting from internal call] +2026-04-08T22:03:18.365873Z 01O 105/205 Test #105: interceptor [generator function intercepting from internal call] .............................. Passed 0.07 sec +2026-04-08T22:03:18.365891Z 01O Start 106: interceptor [generator function intercepting from userland call] +2026-04-08T22:03:18.365899Z 01O 106/205 Test #106: interceptor [generator function intercepting from userland call] .............................. Passed 0.07 sec +2026-04-08T22:03:18.365921Z 01O Start 107: interceptor [generator yield intercepting from userland call] +2026-04-08T22:03:18.365936Z 01O 107/205 Test #107: interceptor [generator yield intercepting from userland call] ................................. Passed 0.07 sec +2026-04-08T22:03:18.365942Z 01O Start 108: interceptor [generator sending intercepting from userland call] +2026-04-08T22:03:18.365968Z 01O 108/205 Test #108: interceptor [generator sending intercepting from userland call] ............................... Passed 0.07 sec +2026-04-08T22:03:18.365973Z 01O Start 109: interceptor [generator yield intercepting of yield from array] +2026-04-08T22:03:18.365979Z 01O 109/205 Test #109: interceptor [generator yield intercepting of yield from array] ................................ Passed 0.07 sec +2026-04-08T22:03:18.365988Z 01O Start 110: interceptor [generator yield intercepting of yield from array with thrown in exception] +2026-04-08T22:03:18.365991Z 01O 110/205 Test #110: interceptor [generator yield intercepting of yield from array with thrown in exception] ....... Passed 0.07 sec +2026-04-08T22:03:18.365996Z 01O Start 111: interceptor [generator yield intercepting of yield from iterator] +2026-04-08T22:03:18.366003Z 01O 111/205 Test #111: interceptor [generator yield intercepting of yield from iterator] ............................. Passed 0.07 sec +2026-04-08T22:03:18.366054Z 01O Start 112: interceptor [generator yield intercepting of yield from throwing iterator] +2026-04-08T22:03:18.366060Z 01O 112/205 Test #112: interceptor [generator yield intercepting of yield from throwing iterator] .................... Passed 0.07 sec +2026-04-08T22:03:18.366072Z 01O Start 113: interceptor [generator yield intercepting of simple yield from generator] +2026-04-08T22:03:18.866620Z 01O 113/205 Test #113: interceptor [generator yield intercepting of simple yield from generator] ..................... Passed 0.07 sec +2026-04-08T22:03:18.866631Z 01O Start 114: interceptor [generator yield intercepting of yielded from generator] +2026-04-08T22:03:18.866636Z 01O 114/205 Test #114: interceptor [generator yield intercepting of yielded from generator] .......................... Passed 0.08 sec +2026-04-08T22:03:18.866645Z 01O Start 115: interceptor [generator yield intercepting of yield from multi-generator] +2026-04-08T22:03:18.866649Z 01O 115/205 Test #115: interceptor [generator yield intercepting of yield from multi-generator] ...................... Passed 0.07 sec +2026-04-08T22:03:18.866654Z 01O Start 116: interceptor [generator yield intercepting of nested yield from generator] +2026-04-08T22:03:18.866661Z 01O 116/205 Test #116: interceptor [generator yield intercepting of nested yield from generator] ..................... Passed 0.08 sec +2026-04-08T22:03:18.866665Z 01O Start 117: interceptor [unused generator function intercepting] +2026-04-08T22:03:18.866670Z 01O 117/205 Test #117: interceptor [unused generator function intercepting] .......................................... Passed 0.07 sec +2026-04-08T22:03:18.866676Z 01O Start 118: interceptor [throwing generator intercepting] +2026-04-08T22:03:18.866680Z 01O 118/205 Test #118: interceptor [throwing generator intercepting] ................................................. Passed 0.07 sec +2026-04-08T22:03:18.866685Z 01O Start 119: interceptor [generator with finally intercepting] +2026-04-08T22:03:19.366960Z 01O 119/205 Test #119: interceptor [generator with finally intercepting] ............................................. Passed 0.07 sec +2026-04-08T22:03:19.366971Z 01O Start 120: interceptor [generator with finally and return intercepting] +2026-04-08T22:03:19.366976Z 01O 120/205 Test #120: interceptor [generator with finally and return intercepting] .................................. Passed 0.07 sec +2026-04-08T22:03:19.366992Z 01O Start 121: interceptor [generator with finally and return value intercepting] +2026-04-08T22:03:19.367007Z 01O 121/205 Test #121: interceptor [generator with finally and return value intercepting] ............................ Passed 0.07 sec +2026-04-08T22:03:19.367012Z 01O Start 122: interceptor [bailout in intercepted functions runs end handlers] +2026-04-08T22:03:19.367019Z 01O 122/205 Test #122: interceptor [bailout in intercepted functions runs end handlers] ..............................***Failed 0.33 sec +2026-04-08T22:03:19.367021Z 01O +2026-04-08T22:03:19.367027Z 01O Fatal error: Class Foo contains 4 abstract methods and must therefore be declared abstract or implement the remaining methods (ArrayAccess::offsetExists, ArrayAccess::offsetGet, ArrayAccess::offsetSet, ...) in /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_zai/interceptor/tests/stubs/stub.php on line 70 +2026-04-08T22:03:19.367034Z 01O ================================================================= +2026-04-08T22:03:19.367037Z 01O ==22972==ERROR: AddressSanitizer: stack-use-after-return on address 0x74560d23fa58 at pc 0x7456159c75dd bp 0x7ffdd2a8d800 sp 0x7ffdd2a8d7f8 +2026-04-08T22:03:19.367041Z 01O READ of size 8 at 0x74560d23fa58 thread T0 +2026-04-08T22:03:19.367047Z 01O #0 0x7456159c75dc in zend_observer_fcall_end_all /usr/local/src/php/Zend/zend_observer.c:232:11 +2026-04-08T22:03:19.367054Z 01O #1 0x647a261b9640 in zai_reset_observed_frame_post_bailout /go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/sandbox/call.c:96:9 +2026-04-08T22:03:19.367093Z 01O #2 0x647a261b9717 in zai_sandbox_call /go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/sandbox/call.c:124:9 +2026-04-08T22:03:19.367101Z 01O #3 0x647a25fcaf10 in zai_test_call_global_with_0_params(zai_str_s, _zval_struct*) /go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/sandbox/tests/zai_tests_common.hpp:29:19 +2026-04-08T22:03:19.367109Z 01O #4 0x647a25fc927b in (anonymous namespace)::C_A_T_C_H_T_E_S_T_56::test() /go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/interceptor/tests/interceptor.cc:479:1 +2026-04-08T22:03:19.367112Z 01O #5 0x647a25fd9149 in Catch::TestInvokerAsMethod<(anonymous namespace)::C_A_T_C_H_T_E_S_T_56>::invoke() const /opt/catch2/include/catch2/catch.hpp:969:9 +2026-04-08T22:03:19.367117Z 01O #6 0x647a26024960 in Catch::TestCase::invoke() const /opt/catch2/include/catch2/catch.hpp:14169:15 +2026-04-08T22:03:19.367123Z 01O #7 0x647a260247e0 in Catch::RunContext::invokeActiveTestCase() /opt/catch2/include/catch2/catch.hpp:13025:27 +2026-04-08T22:03:19.367129Z 01O #8 0x647a26020c81 in Catch::RunContext::runCurrentTest(std::__cxx11::basic_string, std::allocator>&, std::__cxx11::basic_string, std::allocator>&) /opt/catch2/include/catch2/catch.hpp:12998:17 +2026-04-08T22:03:19.367135Z 01O #9 0x647a2601f258 in Catch::RunContext::runTest(Catch::TestCase const&) /opt/catch2/include/catch2/catch.hpp:12759:13 +2026-04-08T22:03:19.367141Z 01O #10 0x647a2602a32f in Catch::(anonymous namespace)::TestGroup::execute() /opt/catch2/include/catch2/catch.hpp:13352:45 +2026-04-08T22:03:19.367144Z 01O #11 0x647a26028c4f in Catch::Session::runInternal() /opt/catch2/include/catch2/catch.hpp:13562:39 +2026-04-08T22:03:19.367147Z 01O #12 0x647a2602865b in Catch::Session::run() /opt/catch2/include/catch2/catch.hpp:13518:24 +2026-04-08T22:03:19.367153Z 01O #13 0x647a260980f1 in int Catch::Session::run(int, char const* const*) /opt/catch2/include/catch2/catch.hpp:13236:30 +2026-04-08T22:03:19.367155Z 01O #14 0x647a26058bfc in main /opt/catch2/include/catch2/catch.hpp:17543:29 +2026-04-08T22:03:19.367175Z 01O #15 0x74560fda3249 in __libc_start_call_main csu/../sysdeps/nptl/libc_start_call_main.h:58:16 +2026-04-08T22:03:19.367183Z 01O #16 0x74560fda3304 in __libc_start_main csu/../csu/libc-start.c:360:3 +2026-04-08T22:03:19.367190Z 01O #17 0x647a25f6b6d0 in _start (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_zai/interceptor/tests/interceptor+0xed6d0) (BuildId: d04b0b7c09207b92cc528a833b0b871bd4a1fdbb) +2026-04-08T22:03:19.367197Z 01O +2026-04-08T22:03:19.367200Z 01O Address 0x74560d23fa58 is located in stack of thread T0 at offset 88 in frame +2026-04-08T22:03:19.367205Z 01O #0 0x74561561199f in zend_call_function /usr/local/src/php/Zend/zend_execute_API.c:664 +2026-04-08T22:03:19.367209Z 01O +2026-04-08T22:03:19.367212Z 01O This frame has 6 object(s): +2026-04-08T22:03:19.367216Z 01O [32, 40) 'call' (line 666) +2026-04-08T22:03:19.367226Z 01O [64, 144) 'dummy_execute_data' (line 666) <== Memory access at offset 88 is inside this variable +2026-04-08T22:03:19.367229Z 01O [176, 208) 'fci_cache_local' (line 667) +2026-04-08T22:03:19.367232Z 01O [240, 248) 'error' (line 709) +2026-04-08T22:03:19.367240Z 01O [272, 276) 'arg_num' (line 808) +2026-04-08T22:03:19.367243Z 01O [288, 304) 'cache_slot' (line 814) +2026-04-08T22:03:19.367249Z 01O HINT: this may be a false positive if your program uses some custom stack unwind mechanism, swapcontext or vfork +2026-04-08T22:03:19.367256Z 01O (longjmp and C++ exceptions *are* supported) +2026-04-08T22:03:19.367260Z 01O SUMMARY: AddressSanitizer: stack-use-after-return /usr/local/src/php/Zend/zend_observer.c:232:11 in zend_observer_fcall_end_all +2026-04-08T22:03:19.367295Z 01O Shadow bytes around the buggy address: +2026-04-08T22:03:19.367301Z 01O 0x74560d23f780: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 +2026-04-08T22:03:19.367327Z 01O 0x74560d23f800: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 +2026-04-08T22:03:19.367336Z 01O 0x74560d23f880: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 +2026-04-08T22:03:19.367341Z 01O 0x74560d23f900: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 +2026-04-08T22:03:19.367356Z 01O 0x74560d23f980: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 +2026-04-08T22:03:19.367368Z 01O =>0x74560d23fa00: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5[f5]f5 f5 f5 f5 +2026-04-08T22:03:19.367372Z 01O 0x74560d23fa80: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 +2026-04-08T22:03:19.367387Z 01O 0x74560d23fb00: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 +2026-04-08T22:03:19.367397Z 01O 0x74560d23fb80: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 +2026-04-08T22:03:19.367402Z 01O 0x74560d23fc00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +2026-04-08T22:03:19.367422Z 01O 0x74560d23fc80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +2026-04-08T22:03:19.367432Z 01O Shadow byte legend (one shadow byte represents 8 application bytes): +2026-04-08T22:03:19.367436Z 01O Addressable: 00 +2026-04-08T22:03:19.367448Z 01O Partially addressable: 01 02 03 04 05 06 07 +2026-04-08T22:03:19.367456Z 01O Heap left redzone: fa +2026-04-08T22:03:19.367460Z 01O Freed heap region: fd +2026-04-08T22:03:19.367476Z 01O Stack left redzone: f1 +2026-04-08T22:03:19.367484Z 01O Stack mid redzone: f2 +2026-04-08T22:03:19.367489Z 01O Stack right redzone: f3 +2026-04-08T22:03:19.367501Z 01O Stack after return: f5 +2026-04-08T22:03:19.367510Z 01O Stack use after scope: f8 +2026-04-08T22:03:19.367515Z 01O Global redzone: f9 +2026-04-08T22:03:19.367526Z 01O Global init order: f6 +2026-04-08T22:03:19.367534Z 01O Poisoned by user: f7 +2026-04-08T22:03:19.367538Z 01O Container overflow: fc +2026-04-08T22:03:19.367560Z 01O Array cookie: ac +2026-04-08T22:03:19.367564Z 01O Intra object redzone: bb +2026-04-08T22:03:19.367568Z 01O ASan internal: fe +2026-04-08T22:03:19.367574Z 01O Left alloca redzone: ca +2026-04-08T22:03:19.367577Z 01O Right alloca redzone: cb +2026-04-08T22:03:19.367581Z 01O ==22972==ABORTING +2026-04-08T22:03:19.367586Z 01O +2026-04-08T22:03:19.367589Z 01O Start 123: interceptor [runtime top-level resolving] +2026-04-08T22:03:19.867150Z 01O 123/205 Test #123: interceptor [runtime top-level resolving] ..................................................... Passed 0.07 sec +2026-04-08T22:03:19.867167Z 01O Start 124: interceptor [runtime eval resolving] +2026-04-08T22:03:19.867175Z 01O 124/205 Test #124: interceptor [runtime eval resolving] .......................................................... Passed 0.07 sec +2026-04-08T22:03:19.867198Z 01O Start 125: interceptor [runtime function resolving] +2026-04-08T22:03:19.867212Z 01O 125/205 Test #125: interceptor [runtime function resolving] ...................................................... Passed 0.07 sec +2026-04-08T22:03:19.867218Z 01O Start 126: interceptor [runtime simple class resolving] +2026-04-08T22:03:19.867240Z 01O 126/205 Test #126: interceptor [runtime simple class resolving] .................................................. Passed 0.07 sec +2026-04-08T22:03:19.867253Z 01O Start 127: interceptor [runtime inherited class resolving] +2026-04-08T22:03:19.867260Z 01O 127/205 Test #127: interceptor [runtime inherited class resolving] ............................................... Passed 0.08 sec +2026-04-08T22:03:19.867273Z 01O Start 128: interceptor [runtime inherited delayed class resolving] +2026-04-08T22:03:19.867283Z 01O 128/205 Test #128: interceptor [runtime inherited delayed class resolving] ....................................... Passed 0.08 sec +2026-04-08T22:03:19.867288Z 01O Start 129: interceptor [runtime trait using class resolving] +2026-04-08T22:03:20.367809Z 01O 129/205 Test #129: interceptor [runtime trait using class resolving] ............................................. Passed 0.08 sec +2026-04-08T22:03:20.367831Z 01O Start 130: interceptor [runtime class_alias resolving] +2026-04-08T22:03:20.367839Z 01O 130/205 Test #130: interceptor [runtime class_alias resolving] ................................................... Passed 0.07 sec +2026-04-08T22:03:20.367848Z 01O Start 131: headers [reading defined header value] +2026-04-08T22:03:20.367851Z 01O 131/205 Test #131: headers [reading defined header value] ........................................................ Passed 0.07 sec +2026-04-08T22:03:20.367856Z 01O Start 132: headers [reading defined header value with autoglobals jit off] +2026-04-08T22:03:20.367862Z 01O 132/205 Test #132: headers [reading defined header value with autoglobals jit off] ............................... Passed 0.07 sec +2026-04-08T22:03:20.367865Z 01O Start 133: headers [reading undefined header value] +2026-04-08T22:03:20.367869Z 01O 133/205 Test #133: headers [reading undefined header value] ...................................................... Passed 0.07 sec +2026-04-08T22:03:20.367877Z 01O Start 134: headers [erroneous read_header input] +2026-04-08T22:03:20.367882Z 01O 134/205 Test #134: headers [erroneous read_header input] ......................................................... Passed 0.08 sec +2026-04-08T22:03:20.367886Z 01O Start 135: headers [get SAPI header (RINIT): defined header] +2026-04-08T22:03:20.367893Z 01O 135/205 Test #135: headers [get SAPI header (RINIT): defined header] ............................................. Passed 0.08 sec +2026-04-08T22:03:20.367896Z 01O Start 136: sandbox/error [fatal errors] +2026-04-08T22:03:20.868818Z 01O 136/205 Test #136: sandbox/error [fatal errors] .................................................................. Passed 0.08 sec +2026-04-08T22:03:20.868835Z 01O Start 137: sandbox/error [fatal errors restore to existing error] +2026-04-08T22:03:20.868841Z 01O 137/205 Test #137: sandbox/error [fatal errors restore to existing error] ........................................ Passed 0.08 sec +2026-04-08T22:03:20.868864Z 01O Start 138: sandbox/error [non-fatal errors] +2026-04-08T22:03:20.868878Z 01O 138/205 Test #138: sandbox/error [non-fatal errors] .............................................................. Passed 0.07 sec +2026-04-08T22:03:20.868884Z 01O Start 139: sandbox/error [non-fatal errors restore to existing error] +2026-04-08T22:03:20.868891Z 01O 139/205 Test #139: sandbox/error [non-fatal errors restore to existing error] .................................... Passed 0.07 sec +2026-04-08T22:03:20.868894Z 01O Start 140: sandbox/error [fatal-error (userland)] +2026-04-08T22:03:20.868897Z 01O 140/205 Test #140: sandbox/error [fatal-error (userland)] ........................................................ Passed 0.07 sec +2026-04-08T22:03:20.868904Z 01O Start 141: sandbox/error [non-fatal error (userland)] +2026-04-08T22:03:20.868906Z 01O 141/205 Test #141: sandbox/error [non-fatal error (userland)] .................................................... Passed 0.07 sec +2026-04-08T22:03:20.868910Z 01O Start 142: sandbox/error [throwable non-fatal errors (PHP 7+)] +2026-04-08T22:03:20.868916Z 01O 142/205 Test #142: sandbox/error [throwable non-fatal errors (PHP 7+)] ........................................... Passed 0.07 sec +2026-04-08T22:03:20.868920Z 01O Start 143: sandbox/error [throwable non-fatal errors restore to existing error (PHP 7+)] +2026-04-08T22:03:21.369599Z 01O 143/205 Test #143: sandbox/error [throwable non-fatal errors restore to existing error (PHP 7+)] ................. Passed 0.07 sec +2026-04-08T22:03:21.369609Z 01O Start 144: sandbox/exception [state: throw exception] +2026-04-08T22:03:21.369616Z 01O 144/205 Test #144: sandbox/exception [state: throw exception] .................................................... Passed 0.07 sec +2026-04-08T22:03:21.369664Z 01O Start 145: sandbox/exception [state: existing unhandled exception] +2026-04-08T22:03:21.369667Z 01O 145/205 Test #145: sandbox/exception [state: existing unhandled exception] ....................................... Passed 0.07 sec +2026-04-08T22:03:21.369671Z 01O Start 146: sandbox/exception [state: throw exception (userland)] +2026-04-08T22:03:21.369697Z 01O 146/205 Test #146: sandbox/exception [state: throw exception (userland)] ......................................... Passed 0.07 sec +2026-04-08T22:03:21.369713Z 01O Start 147: sandbox/exception [zend_throw_exception_hook called once] +2026-04-08T22:03:21.369720Z 01O 147/205 Test #147: sandbox/exception [zend_throw_exception_hook called once] ..................................... Passed 0.07 sec +2026-04-08T22:03:21.369742Z 01O Start 148: sandbox/exception [throw exception] +2026-04-08T22:03:21.369755Z 01O 148/205 Test #148: sandbox/exception [throw exception] ........................................................... Passed 0.08 sec +2026-04-08T22:03:21.369763Z 01O Start 149: sandbox/exception [existing unhandled exception] +2026-04-08T22:03:21.369778Z 01O 149/205 Test #149: sandbox/exception [existing unhandled exception] .............................................. Passed 0.07 sec +2026-04-08T22:03:21.369790Z 01O Start 150: sandbox/exception [throw exception (userland)] +2026-04-08T22:03:21.869741Z 01O 150/205 Test #150: sandbox/exception [throw exception (userland)] ................................................ Passed 0.07 sec +2026-04-08T22:03:21.869756Z 01O Start 151: sandbox [sandbox: exception & error] +2026-04-08T22:03:21.869763Z 01O 151/205 Test #151: sandbox [sandbox: exception & error] .......................................................... Passed 0.07 sec +2026-04-08T22:03:21.869771Z 01O Start 152: sandbox [sandbox: existing exception & existing error] +2026-04-08T22:03:21.869777Z 01O 152/205 Test #152: sandbox [sandbox: existing exception & existing error] ........................................ Passed 0.07 sec +2026-04-08T22:03:21.869782Z 01O Start 153: sandbox/bailout [no timeout] +2026-04-08T22:03:21.869788Z 01O 153/205 Test #153: sandbox/bailout [no timeout] .................................................................. Passed 0.07 sec +2026-04-08T22:03:21.869802Z 01O Start 154: sandbox/bailout [timeout] +2026-04-08T22:03:22.870805Z 01O 154/205 Test #154: sandbox/bailout [timeout] ..................................................................... Passed 1.08 sec +2026-04-08T22:03:22.870815Z 01O Start 155: uri_normalization [default replacement test: trivial_path_unmodified] +2026-04-08T22:03:22.870820Z 01O 155/205 Test #155: uri_normalization [default replacement test: trivial_path_unmodified] ......................... Passed 0.07 sec +2026-04-08T22:03:22.870826Z 01O Start 156: uri_normalization [default replacement test: empty] +2026-04-08T22:03:22.870831Z 01O 156/205 Test #156: uri_normalization [default replacement test: empty] ........................................... Passed 0.08 sec +2026-04-08T22:03:22.870835Z 01O Start 157: uri_normalization [default replacement test: root] +2026-04-08T22:03:23.371535Z 01O 157/205 Test #157: uri_normalization [default replacement test: root] ............................................ Passed 0.08 sec +2026-04-08T22:03:23.371546Z 01O Start 158: uri_normalization [default replacement test: slash_added] +2026-04-08T22:03:23.371550Z 01O 158/205 Test #158: uri_normalization [default replacement test: slash_added] ..................................... Passed 0.08 sec +2026-04-08T22:03:23.371559Z 01O Start 159: uri_normalization [default replacement test: only_digits] +2026-04-08T22:03:23.371562Z 01O 159/205 Test #159: uri_normalization [default replacement test: only_digits] ..................................... Passed 0.08 sec +2026-04-08T22:03:23.371619Z 01O Start 160: uri_normalization [default replacement test: only_digits_with_trailing_slash] +2026-04-08T22:03:23.371628Z 01O 160/205 Test #160: uri_normalization [default replacement test: only_digits_with_trailing_slash] ................. Passed 0.08 sec +2026-04-08T22:03:23.371648Z 01O Start 161: uri_normalization [default replacement test: query_string_removal] +2026-04-08T22:03:23.371656Z 01O 161/205 Test #161: uri_normalization [default replacement test: query_string_removal] ............................ Passed 0.07 sec +2026-04-08T22:03:23.371661Z 01O Start 162: uri_normalization [default replacement test: starts_with_digits] +2026-04-08T22:03:23.371668Z 01O 162/205 Test #162: uri_normalization [default replacement test: starts_with_digits] .............................. Passed 0.07 sec +2026-04-08T22:03:23.371671Z 01O Start 163: uri_normalization [default replacement test: ends_with_digits] +2026-04-08T22:03:23.871724Z 01O 163/205 Test #163: uri_normalization [default replacement test: ends_with_digits] ................................ Passed 0.07 sec +2026-04-08T22:03:23.871733Z 01O Start 164: uri_normalization [default replacement test: has_digits] +2026-04-08T22:03:23.871741Z 01O 164/205 Test #164: uri_normalization [default replacement test: has_digits] ...................................... Passed 0.08 sec +2026-04-08T22:03:23.871749Z 01O Start 165: uri_normalization [default replacement test: only_hex] +2026-04-08T22:03:23.871753Z 01O 165/205 Test #165: uri_normalization [default replacement test: only_hex] ........................................ Passed 0.07 sec +2026-04-08T22:03:23.871758Z 01O Start 166: uri_normalization [default replacement test: starts_with_hex] +2026-04-08T22:03:23.871765Z 01O 166/205 Test #166: uri_normalization [default replacement test: starts_with_hex] ................................. Passed 0.08 sec +2026-04-08T22:03:23.871776Z 01O Start 167: uri_normalization [default replacement test: ends_with_hex] +2026-04-08T22:03:23.871782Z 01O 167/205 Test #167: uri_normalization [default replacement test: ends_with_hex] ................................... Passed 0.07 sec +2026-04-08T22:03:23.871800Z 01O Start 168: uri_normalization [default replacement test: has_hex] +2026-04-08T22:03:23.871812Z 01O 168/205 Test #168: uri_normalization [default replacement test: has_hex] ......................................... Passed 0.07 sec +2026-04-08T22:03:23.871818Z 01O Start 169: uri_normalization [default replacement test: only_uuid] +2026-04-08T22:03:23.871846Z 01O 169/205 Test #169: uri_normalization [default replacement test: only_uuid] ....................................... Passed 0.08 sec +2026-04-08T22:03:23.871850Z 01O Start 170: uri_normalization [default replacement test: starts_with_uuid] +2026-04-08T22:03:24.372397Z 01O 170/205 Test #170: uri_normalization [default replacement test: starts_with_uuid] ................................ Passed 0.07 sec +2026-04-08T22:03:24.372417Z 01O Start 171: uri_normalization [default replacement test: ends_with_uuid] +2026-04-08T22:03:24.372423Z 01O 171/205 Test #171: uri_normalization [default replacement test: ends_with_uuid] .................................. Passed 0.07 sec +2026-04-08T22:03:24.372429Z 01O Start 172: uri_normalization [default replacement test: has_uuid] +2026-04-08T22:03:24.372432Z 01O 172/205 Test #172: uri_normalization [default replacement test: has_uuid] ........................................ Passed 0.07 sec +2026-04-08T22:03:24.372436Z 01O Start 173: uri_normalization [default replacement test: only_uuid_no_dash] +2026-04-08T22:03:24.372442Z 01O 173/205 Test #173: uri_normalization [default replacement test: only_uuid_no_dash] ............................... Passed 0.07 sec +2026-04-08T22:03:24.372445Z 01O Start 174: uri_normalization [default replacement test: starts_with_uuid_no_dash] +2026-04-08T22:03:24.372449Z 01O 174/205 Test #174: uri_normalization [default replacement test: starts_with_uuid_no_dash] ........................ Passed 0.07 sec +2026-04-08T22:03:24.372498Z 01O Start 175: uri_normalization [default replacement test: ends_with_uuid_no_dash] +2026-04-08T22:03:24.372501Z 01O 175/205 Test #175: uri_normalization [default replacement test: ends_with_uuid_no_dash] .......................... Passed 0.07 sec +2026-04-08T22:03:24.372508Z 01O Start 176: uri_normalization [default replacement test: has_uuid_no_dash] +2026-04-08T22:03:24.372515Z 01O 176/205 Test #176: uri_normalization [default replacement test: has_uuid_no_dash] ................................ Passed 0.07 sec +2026-04-08T22:03:24.372531Z 01O Start 177: uri_normalization [default replacement test: multiple_patterns] +2026-04-08T22:03:24.872891Z 01O 177/205 Test #177: uri_normalization [default replacement test: multiple_patterns] ............................... Passed 0.10 sec +2026-04-08T22:03:24.872910Z 01O Start 178: uri_normalization [default replacement test: hex_case_insensitive] +2026-04-08T22:03:24.872919Z 01O 178/205 Test #178: uri_normalization [default replacement test: hex_case_insensitive] ............................ Passed 0.07 sec +2026-04-08T22:03:24.872937Z 01O Start 179: uri_normalization [default replacement test: uuid_case_insensitive] +2026-04-08T22:03:24.872945Z 01O 179/205 Test #179: uri_normalization [default replacement test: uuid_case_insensitive] ........................... Passed 0.07 sec +2026-04-08T22:03:24.872951Z 01O Start 180: uri_normalization [fragment regex: additive to default fragment regexes] +2026-04-08T22:03:24.872958Z 01O 180/205 Test #180: uri_normalization [fragment regex: additive to default fragment regexes] ...................... Passed 0.07 sec +2026-04-08T22:03:24.872963Z 01O Start 181: uri_normalization [fragment regex: leading and trailing slashes and whitespace are ignored] +2026-04-08T22:03:24.872968Z 01O 181/205 Test #181: uri_normalization [fragment regex: leading and trailing slashes and whitespace are ignored] ... Passed 0.07 sec +2026-04-08T22:03:24.872975Z 01O Start 182: uri_normalization [fragment regex: invalid regex fragments are ignored] +2026-04-08T22:03:24.872980Z 01O 182/205 Test #182: uri_normalization [fragment regex: invalid regex fragments are ignored] ....................... Passed 0.07 sec +2026-04-08T22:03:24.872985Z 01O Start 183: uri_normalization [fragment regex: partial match with trivial PCRE syntax usage] +2026-04-08T22:03:24.872992Z 01O 183/205 Test #183: uri_normalization [fragment regex: partial match with trivial PCRE syntax usage] .............. Passed 0.07 sec +2026-04-08T22:03:24.872996Z 01O Start 184: uri_normalization [pattern mapping: normalizing of single fragment] +2026-04-08T22:03:25.373229Z 01O 184/205 Test #184: uri_normalization [pattern mapping: normalizing of single fragment] ........................... Passed 0.07 sec +2026-04-08T22:03:25.373247Z 01O Start 185: uri_normalization [pattern mapping: pattern may be applied multiple times] +2026-04-08T22:03:25.373263Z 01O 185/205 Test #185: uri_normalization [pattern mapping: pattern may be applied multiple times] .................... Passed 0.07 sec +2026-04-08T22:03:25.373270Z 01O Start 186: uri_normalization [pattern mapping: partial matching] +2026-04-08T22:03:25.373274Z 01O 186/205 Test #186: uri_normalization [pattern mapping: partial matching] ......................................... Passed 0.07 sec +2026-04-08T22:03:25.373278Z 01O Start 187: uri_normalization [pattern mapping: matching is case sensititve] +2026-04-08T22:03:25.373285Z 01O 187/205 Test #187: uri_normalization [pattern mapping: matching is case sensititve] .............................. Passed 0.07 sec +2026-04-08T22:03:25.373291Z 01O Start 188: uri_normalization [pattern mapping & fragment regexes: working with http URLs] +2026-04-08T22:03:25.373298Z 01O 188/205 Test #188: uri_normalization [pattern mapping & fragment regexes: working with http URLs] ................ Passed 0.07 sec +2026-04-08T22:03:25.373363Z 01O Start 189: uri_normalization [pattern mapping & fragment regexes: working with https URLs] +2026-04-08T22:03:25.373374Z 01O 189/205 Test #189: uri_normalization [pattern mapping & fragment regexes: working with https URLs] ............... Passed 0.07 sec +2026-04-08T22:03:25.373383Z 01O Start 190: uri_normalization [pattern mapping & fragment regexes: working with full URLs] +2026-04-08T22:03:25.373391Z 01O 190/205 Test #190: uri_normalization [pattern mapping & fragment regexes: working with full URLs] ................ Passed 0.07 sec +2026-04-08T22:03:25.373396Z 01O Start 191: query_string [block everything: simple] +2026-04-08T22:03:25.873754Z 01O 191/205 Test #191: query_string [block everything: simple] ....................................................... Passed 0.08 sec +2026-04-08T22:03:25.873772Z 01O Start 192: query_string [block everything: repeated values] +2026-04-08T22:03:25.873780Z 01O 192/205 Test #192: query_string [block everything: repeated values] .............................................. Passed 0.07 sec +2026-04-08T22:03:25.873805Z 01O Start 193: query_string [allow everything: simple] +2026-04-08T22:03:25.873819Z 01O 193/205 Test #193: query_string [allow everything: simple] ....................................................... Passed 0.07 sec +2026-04-08T22:03:25.873825Z 01O Start 194: query_string [allow everything: repeated values] +2026-04-08T22:03:25.873847Z 01O 194/205 Test #194: query_string [allow everything: repeated values] .............................................. Passed 0.07 sec +2026-04-08T22:03:25.873859Z 01O Start 195: query_string [whitelist some: one] +2026-04-08T22:03:25.873865Z 01O 195/205 Test #195: query_string [whitelist some: one] ............................................................ Passed 0.07 sec +2026-04-08T22:03:25.873877Z 01O Start 196: query_string [whitelist some: multiple] +2026-04-08T22:03:25.873887Z 01O 196/205 Test #196: query_string [whitelist some: multiple] ....................................................... Passed 0.07 sec +2026-04-08T22:03:25.873892Z 01O Start 197: query_string [whitelist some: repeated values] +2026-04-08T22:03:25.873907Z 01O 197/205 Test #197: query_string [whitelist some: repeated values] ................................................ Passed 0.07 sec +2026-04-08T22:03:25.873916Z 01O Start 198: query_string [obfuscate: simple] +2026-04-08T22:03:26.374541Z 01O 198/205 Test #198: query_string [obfuscate: simple] .............................................................. Passed 0.07 sec +2026-04-08T22:03:26.374552Z 01O Start 199: query_string [obfuscate: lowercase] +2026-04-08T22:03:26.374557Z 01O 199/205 Test #199: query_string [obfuscate: lowercase] ........................................................... Passed 0.08 sec +2026-04-08T22:03:26.374570Z 01O Start 200: query_string [obfuscate: everything] +2026-04-08T22:03:26.374573Z 01O 200/205 Test #200: query_string [obfuscate: everything] .......................................................... Passed 0.08 sec +2026-04-08T22:03:26.374578Z 01O Start 201: query_string [obfuscate: no obfuscation on whitelist] +2026-04-08T22:03:26.374584Z 01O 201/205 Test #201: query_string [obfuscate: no obfuscation on whitelist] ......................................... Passed 0.07 sec +2026-04-08T22:03:26.374590Z 01O Start 202: zai_string/strings [zai_str_eq empty string] +2026-04-08T22:03:26.374594Z 01O 202/205 Test #202: zai_string/strings [zai_str_eq empty string] .................................................. Passed 0.07 sec +2026-04-08T22:03:26.374611Z 01O Start 203: zai_string/strings [zai_str_eq non-empty string] +2026-04-08T22:03:26.374616Z 01O 203/205 Test #203: zai_string/strings [zai_str_eq non-empty string] .............................................. Passed 0.07 sec +2026-04-08T22:03:26.374675Z 01O Start 204: zai_string/strings [zai_string_concat3 empty first and second] +2026-04-08T22:03:26.374682Z 01O 204/205 Test #204: zai_string/strings [zai_string_concat3 empty first and second] ................................ Passed 0.07 sec +2026-04-08T22:03:26.374702Z 01O Start 205: zai_string/strings [zai_string_concat3 all full] +2026-04-08T22:03:26.875145Z 01O 205/205 Test #205: zai_string/strings [zai_string_concat3 all full] .............................................. Passed 0.07 sec +2026-04-08T22:03:26.875180Z 01O +2026-04-08T22:03:26.875188Z 01O 99% tests passed, 1 tests failed out of 205 +2026-04-08T22:03:26.875204Z 01O +2026-04-08T22:03:26.875216Z 01O Total Test time (real) = 15.92 sec +2026-04-08T22:03:26.875220Z 01O +2026-04-08T22:03:26.875242Z 01O The following tests FAILED: +2026-04-08T22:03:26.875255Z 01O 122 - interceptor [bailout in intercepted functions runs end handlers] (Failed) +2026-04-08T22:03:26.875260Z 01O Errors while running CTest +2026-04-08T22:03:26.875284Z 01O make: *** [Makefile:71: test] Error 8 +2026-04-08T22:03:26.875287Z 01O +2026-04-08T22:03:26.875362Z 00O section_end:1775685806:step_script +2026-04-08T22:03:26.875363Z 00O+section_start:1775685806:after_script[collapsed=false] +2026-04-08T22:03:26.875807Z 00O+Running after_script +2026-04-08T22:03:27.375997Z 01O Running after script... +2026-04-08T22:03:27.376008Z 01O $ mkdir -p tmp/artifacts +2026-04-08T22:03:27.376016Z 01O $ cp tmp/build*/Testing/Temporary/LastTest.log tmp/artifacts/LastTest.log +2026-04-08T22:03:27.376022Z 01O $ .gitlab/silent-upload-junit-to-datadog.sh "test.source.file:zend_abstract_interface" +2026-04-08T22:04:38.971467Z 01O * View detailed reports on Datadog (they can take a few minutes to become available) +2026-04-08T22:04:38.971499Z 01O * Commit report: +2026-04-08T22:04:38.971506Z 01O * https://app.datadoghq.com/ci/redirect/tests/https%3A%2F%2Fgitlab.ddbuild.io%2FDataDog%2Fapm-reliability%2Fdd-trace-php.git/-/gitlab-runner/-/levi%2Fclang-17-to-19/-/e340959bb2fb46996ed179b27eab9e273fffbacc?env=ci +2026-04-08T22:04:38.971530Z 01O * Test runs report: +2026-04-08T22:04:38.971546Z 01O * https://app.datadoghq.com/ci/test-runs?query=%20%40ci.job.url%3A%22https%3A%2F%2Fgitlab.ddbuild.io%2FDataDog%2Fapm-reliability%2Fdd-trace-php%2F-%2Fjobs%2F1579619499%22 +2026-04-08T22:04:38.971553Z 01O +2026-04-08T22:04:38.971597Z 00O section_end:1775685878:after_script +2026-04-08T22:04:38.971598Z 00O+section_start:1775685878:upload_artifacts_on_failure[collapsed=true] +2026-04-08T22:04:38.972720Z 00O+Uploading artifacts for failed job +2026-04-08T22:04:39.472271Z 01O Uploading artifacts... +2026-04-08T22:04:39.472283Z 01O tmp/artifacts: found 2 matching artifact files and directories +2026-04-08T22:04:39.472289Z 01O artifacts: found 3 matching artifact files and directories +2026-04-08T22:04:39.972845Z 01O Uploading artifacts as "archive" to coordinator... 201 Created id=1579619499 responseStatus=201 Created token=64_s81vcx +2026-04-08T22:04:39.972856Z 01O Uploading artifacts... +2026-04-08T22:04:39.972860Z 01O artifacts/*-results.xml: found 2 matching artifact files and directories +2026-04-08T22:04:40.473640Z 01O Uploading artifacts as "junit" to coordinator... 201 Created id=1579619499 responseStatus=201 Created token=64_s81vcx +2026-04-08T22:04:40.473647Z 01O +2026-04-08T22:04:40.473686Z 00O section_end:1775685880:upload_artifacts_on_failure +2026-04-08T22:04:40.473688Z 00O+section_start:1775685880:cleanup_file_variables[collapsed=true] +2026-04-08T22:04:40.474438Z 00O+Cleaning up project directory and file based variables +2026-04-08T22:04:40.973841Z 01O +2026-04-08T22:04:40.973880Z 00O section_end:1775685880:cleanup_file_variables +2026-04-08T22:04:40.973882Z 00O+ +2026-04-08T22:04:41.124829Z 00O ERROR: Job failed: command terminated with exit code 1 +2026-04-08T22:04:41.124843Z 00O  diff --git a/tests/asan/suppress_sandbox_observer.txt b/tests/asan/suppress_sandbox_observer.txt deleted file mode 100644 index 7fb9f3b791b..00000000000 --- a/tests/asan/suppress_sandbox_observer.txt +++ /dev/null @@ -1,8 +0,0 @@ -# stack-use-after-return in zai_reset_observed_frame_post_bailout when -# zend_observer_fcall_end_all walks a freed dummy_execute_data frame that -# was stack-allocated inside zend_call_function during a sandboxed call -# that bailed out. PHP 8.2+ avoids this via zai_set_observed_frame(NULL) -# before the sandbox call; 8.0/8.1 use zai_reset_observed_frame_post_bailout -# which does not protect current_observed_frame from the freed frame. -# TODO: Bob to fix properly in zai_reset_observed_frame_post_bailout. -fun:zai_reset_observed_frame_post_bailout From fbfb73e303a38df80e89d98aa8b30d2201cd10ce Mon Sep 17 00:00:00 2001 From: Levi Morrison Date: Wed, 8 Apr 2026 16:46:12 -0600 Subject: [PATCH 29/30] ci: remove accidentally committed scratch files Co-Authored-By: Claude Sonnet 4.6 --- .../worktrees/appsec-gitlab-resource-limits | 1 - .claude/worktrees/fix-appsec-gitlab-limits | 1 - appsec-code-coverage.txt | 1849 ---------------- appsec-limits.diff | 16 - dockerfiles/dev/run_zai_tests_linux.sh | 76 - librust_out.rlib | Bin 4608 -> 0 bytes lint.txt | 1969 ----------------- patch.diff | 14 - plans/opcache.md | 252 --- raw.txt | 1898 ---------------- raw2.txt | 1242 ----------- 11 files changed, 7318 deletions(-) delete mode 160000 .claude/worktrees/appsec-gitlab-resource-limits delete mode 160000 .claude/worktrees/fix-appsec-gitlab-limits delete mode 100644 appsec-code-coverage.txt delete mode 100644 appsec-limits.diff delete mode 100755 dockerfiles/dev/run_zai_tests_linux.sh delete mode 100644 librust_out.rlib delete mode 100644 lint.txt delete mode 100644 patch.diff delete mode 100644 plans/opcache.md delete mode 100644 raw.txt delete mode 100644 raw2.txt diff --git a/.claude/worktrees/appsec-gitlab-resource-limits b/.claude/worktrees/appsec-gitlab-resource-limits deleted file mode 160000 index b222ee09143..00000000000 --- a/.claude/worktrees/appsec-gitlab-resource-limits +++ /dev/null @@ -1 +0,0 @@ -Subproject commit b222ee091439b9ea15ebac4297e2c383a71932c9 diff --git a/.claude/worktrees/fix-appsec-gitlab-limits b/.claude/worktrees/fix-appsec-gitlab-limits deleted file mode 160000 index 14dabf8753f..00000000000 --- a/.claude/worktrees/fix-appsec-gitlab-limits +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 14dabf8753ffcf7d2caceb49ccc06ce5c602ac3a diff --git a/appsec-code-coverage.txt b/appsec-code-coverage.txt deleted file mode 100644 index 6b4cabc3b55..00000000000 --- a/appsec-code-coverage.txt +++ /dev/null @@ -1,1849 +0,0 @@ -2026-04-08T17:56:38.497980Z 00O Running with gitlab-runner 17.9.3-544784f7 (544784f7) -2026-04-08T17:56:38.498060Z 00O  on gitlab-runner-amd64-shared-567d88fc98-7x7g2 _xbvGsbV_, system ID: r_3fMVFOKXDqgi -2026-04-08T17:56:38.498130Z 00O  feature flags: FF_RETRIEVE_POD_WARNING_EVENTS:false -2026-04-08T17:56:38.498360Z 00O section_start:1775670998:prepare_executor[collapsed=true] -2026-04-08T17:56:38.498370Z 00O+Preparing the "kubernetes" executor -2026-04-08T17:56:38.498810Z 00O "CPURequest" overwritten with "3" -2026-04-08T17:56:38.498860Z 00O "MemoryRequest" overwritten with "3Gi" -2026-04-08T17:56:38.498940Z 00O "MemoryLimit" overwritten with "4Gi" -2026-04-08T17:56:38.499150Z 00O Using Kubernetes namespace: gitlab-runner -2026-04-08T17:56:38.503740Z 00O Using Kubernetes cluster domain: mudkip-a.us1.ddbuild.io -2026-04-08T17:56:38.503810Z 00O Using Kubernetes executor with image registry.ddbuild.io/images/mirror/datadog/dd-trace-ci:php-8.3_bookworm-7 ... -2026-04-08T17:56:38.503850Z 00O Using attach strategy to execute scripts... -2026-04-08T17:56:38.157665Z 00O section_end:1775670998:prepare_executor -2026-04-08T17:56:38.157673Z 00O+section_start:1775670998:prepare_script[collapsed=true] -2026-04-08T17:56:38.165053Z 00O+Preparing environment -2026-04-08T17:56:38.167143Z 00O Using FF_USE_POD_ACTIVE_DEADLINE_SECONDS, the Pod activeDeadlineSeconds will be set to the job timeout: 1h0m0s... -2026-04-08T17:56:38.171228Z 00O Using service account: dd-trace-php -2026-04-08T17:56:38.488993Z 00E Waiting for pod gitlab-runner/runner-xbvgsbv-project-355-concurrent-19-bu5nnk8z to be running, status is Pending -2026-04-08T17:56:41.496794Z 00E Waiting for pod gitlab-runner/runner-xbvgsbv-project-355-concurrent-19-bu5nnk8z to be running, status is Pending -2026-04-08T17:56:41.496805Z 00E ContainersNotInitialized: "containers with incomplete status: [init-permissions]" -2026-04-08T17:56:41.496812Z 00E ContainersNotReady: "containers with unready status: [build helper]" -2026-04-08T17:56:41.496814Z 00E ContainersNotReady: "containers with unready status: [build helper]" -2026-04-08T17:56:44.505583Z 00E Waiting for pod gitlab-runner/runner-xbvgsbv-project-355-concurrent-19-bu5nnk8z to be running, status is Pending -2026-04-08T17:56:44.505592Z 00E ContainersNotReady: "containers with unready status: [build helper]" -2026-04-08T17:56:44.505595Z 00E ContainersNotReady: "containers with unready status: [build helper]" -2026-04-08T17:56:47.512636Z 00E Waiting for pod gitlab-runner/runner-xbvgsbv-project-355-concurrent-19-bu5nnk8z to be running, status is Pending -2026-04-08T17:56:47.512646Z 00E ContainersNotReady: "containers with unready status: [build helper]" -2026-04-08T17:56:47.512649Z 00E ContainersNotReady: "containers with unready status: [build helper]" -2026-04-08T17:56:50.524837Z 00E Waiting for pod gitlab-runner/runner-xbvgsbv-project-355-concurrent-19-bu5nnk8z to be running, status is Pending -2026-04-08T17:56:50.524847Z 00E ContainersNotReady: "containers with unready status: [build helper]" -2026-04-08T17:56:50.524850Z 00E ContainersNotReady: "containers with unready status: [build helper]" -2026-04-08T17:56:53.534501Z 00E Waiting for pod gitlab-runner/runner-xbvgsbv-project-355-concurrent-19-bu5nnk8z to be running, status is Pending -2026-04-08T17:56:53.534511Z 00E ContainersNotReady: "containers with unready status: [build helper]" -2026-04-08T17:56:53.534514Z 00E ContainersNotReady: "containers with unready status: [build helper]" -2026-04-08T17:56:56.540968Z 00E Waiting for pod gitlab-runner/runner-xbvgsbv-project-355-concurrent-19-bu5nnk8z to be running, status is Pending -2026-04-08T17:56:56.540978Z 00E ContainersNotReady: "containers with unready status: [build helper]" -2026-04-08T17:56:56.540981Z 00E ContainersNotReady: "containers with unready status: [build helper]" -2026-04-08T17:56:59.553252Z 00E Waiting for pod gitlab-runner/runner-xbvgsbv-project-355-concurrent-19-bu5nnk8z to be running, status is Pending -2026-04-08T17:56:59.553262Z 00E ContainersNotReady: "containers with unready status: [build helper]" -2026-04-08T17:56:59.553264Z 00E ContainersNotReady: "containers with unready status: [build helper]" -2026-04-08T17:57:03.758134Z 01O Running on runner-xbvgsbv-project-355-concurrent-19-bu5nnk8z via gitlab-runner-amd64-shared-567d88fc98-7x7g2... -2026-04-08T17:57:03.758143Z 01O -2026-04-08T17:57:03.758177Z 00O section_end:1775671023:prepare_script -2026-04-08T17:57:03.758178Z 00O+section_start:1775671023:get_sources[collapsed=true] -2026-04-08T17:57:03.758996Z 00O+Getting source from Git repository -2026-04-08T17:57:04.258746Z 01O $ if [ -n "${VAULT_ADDR:-}" ]; then # collapsed multi-line command -2026-04-08T17:57:04.258757Z 01O section_start:1775671024:git_cache[collapsed=true] Git cache script -2026-04-08T17:57:04.258768Z 01O {"level":"INFO","ts":"2026-04-08T17:57:04.080293+00:00","caller":"git-cache-s3/main.go:23","msg":"Running git-cache-s3 go application"} -2026-04-08T17:57:04.258774Z 01O {"level":"INFO","ts":"2026-04-08T17:57:04.080413+00:00","caller":"git-cache-s3/main.go:24","msg":"Project name dd-trace-php"} -2026-04-08T17:57:04.258783Z 01O {"level":"INFO","ts":"2026-04-08T17:57:04.101847+00:00","caller":"metric/statsd.go:33","msg":"Creating the statsd instance."} -2026-04-08T17:57:04.258820Z 01O {"level":"INFO","ts":"2026-04-08T17:57:04.103351+00:00","caller":"git-cache-s3/main.go:82","msg":"Experiment is disabled for refreshing the repository cache, skipping refresh"} -2026-04-08T17:57:04.258843Z 01O {"level":"INFO","ts":"2026-04-08T17:57:04.104702+00:00","caller":"git/git.go:44","msg":"Retrieving repository from cache"} -2026-04-08T17:57:11.767668Z 01O {"level":"INFO","ts":"2026-04-08T17:57:11.279146+00:00","caller":"metric/statsd.go:39","msg":"Statsd Client already exists."} -2026-04-08T17:57:11.767763Z 01O {"level":"INFO","ts":"2026-04-08T17:57:11.279344+00:00","caller":"git-cache-s3/main.go:40","msg":"Arrive to the end of the script"} -2026-04-08T17:57:11.767774Z 01O section_end:1775671031:git_cache  -2026-04-08T17:57:11.767783Z 01O Fetching changes... -2026-04-08T17:57:11.767787Z 01O Reinitialized existing Git repository in /go/src/github.com/DataDog/apm-reliability/dd-trace-php/.git/ -2026-04-08T17:57:11.767794Z 01O Created fresh repository. -2026-04-08T17:57:11.767801Z 01O gitretriever: create-ref FAILED (pipeline=106724455 repo=DataDog/apm-reliability/dd-trace-php), falling back to GitLab -2026-04-08T17:57:12.268460Z 01O Checking out 5a575996 as detached HEAD (ref is levi/clang-17-to-19)... -2026-04-08T17:57:16.273364Z 01O -2026-04-08T17:57:16.273377Z 01O Updating/initializing submodules recursively... -2026-04-08T17:57:16.273383Z 01O Submodule 'appsec/third_party/cpp-base64' (https://github.com/ReneNyffenegger/cpp-base64) registered for path 'appsec/third_party/cpp-base64' -2026-04-08T17:57:16.273391Z 01O Submodule 'appsec/third_party/libddwaf' (https://github.com/DataDog/libddwaf.git) registered for path 'appsec/third_party/libddwaf' -2026-04-08T17:57:16.273396Z 01O Submodule 'appsec/third_party/libddwaf-rust' (https://github.com/DataDog/libddwaf-rust.git) registered for path 'appsec/third_party/libddwaf-rust' -2026-04-08T17:57:16.273402Z 01O Submodule 'appsec/third_party/msgpack-c' (https://github.com/msgpack/msgpack-c.git) registered for path 'appsec/third_party/msgpack-c' -2026-04-08T17:57:16.273410Z 01O Submodule 'libdatadog' (https://github.com/DataDog/libdatadog) registered for path 'libdatadog' -2026-04-08T17:57:16.273423Z 01O Submodule 'tea/benchmarks/google-benchmark' (https://github.com/google/benchmark.git) registered for path 'tea/benchmarks/google-benchmark' -2026-04-08T17:57:16.273428Z 01O Synchronizing submodule url for 'appsec/third_party/cpp-base64' -2026-04-08T17:57:16.273434Z 01O Synchronizing submodule url for 'appsec/third_party/libddwaf' -2026-04-08T17:57:16.273437Z 01O Synchronizing submodule url for 'appsec/third_party/libddwaf-rust' -2026-04-08T17:57:16.273445Z 01O Synchronizing submodule url for 'appsec/third_party/msgpack-c' -2026-04-08T17:57:16.273453Z 01O Synchronizing submodule url for 'libdatadog' -2026-04-08T17:57:16.273457Z 01O Cloning into '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/cpp-base64'... -2026-04-08T17:57:16.774144Z 01O Cloning into '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/libddwaf'... -2026-04-08T17:57:17.775351Z 01O Cloning into '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/libddwaf-rust'... -2026-04-08T17:57:17.775369Z 01O Cloning into '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/msgpack-c'... -2026-04-08T17:57:19.777999Z 01O Cloning into '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog'... -2026-04-08T17:57:27.287834Z 01O Submodule path 'appsec/third_party/cpp-base64': checked out 'c65b936453d7cbf9c585806142cd866b7bc7c0d5' -2026-04-08T17:57:27.287874Z 01O Submodule path 'appsec/third_party/libddwaf': checked out '2f4aa84cd61dc13229d1431779c007bf4ebda89c' -2026-04-08T17:57:27.287880Z 01O Submodule path 'appsec/third_party/libddwaf-rust': checked out '0188747508e2c77968f41835ce51ee62d7df9cd4' -2026-04-08T17:57:27.287907Z 01O Submodule path 'appsec/third_party/msgpack-c': checked out '6e7deb809120881634b3ca895e66b2a946084f34' -2026-04-08T17:57:27.287922Z 01O Submodule 'external/boost/predef' (https://github.com/boostorg/predef.git) registered for path 'appsec/third_party/msgpack-c/external/boost/predef' -2026-04-08T17:57:27.287929Z 01O Submodule 'external/boost/preprocessor' (https://github.com/boostorg/preprocessor.git) registered for path 'appsec/third_party/msgpack-c/external/boost/preprocessor' -2026-04-08T17:57:27.287952Z 01O Cloning into '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/msgpack-c/external/boost/predef'... -2026-04-08T17:57:27.788444Z 01O Cloning into '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/msgpack-c/external/boost/preprocessor'... -2026-04-08T17:57:28.289095Z 01O Submodule path 'appsec/third_party/msgpack-c/external/boost/predef': checked out '560ff5298ead78276872604f1ee6523e63a4fa90' -2026-04-08T17:57:28.289106Z 01O Submodule path 'appsec/third_party/msgpack-c/external/boost/preprocessor': checked out '56090c56b5c78418b6dbe8c3c2ba576395152f83' -2026-04-08T17:57:28.289111Z 01O Submodule path 'libdatadog': checked out '11d4111c934d9af49d8124b8266dbbdda5857cb4' -2026-04-08T17:57:28.289120Z 01O Submodule 'libdd-libunwind-sys/libunwind' (https://github.com/DataDog/libunwind.git) registered for path 'libdatadog/libdd-libunwind-sys/libunwind' -2026-04-08T17:57:28.289125Z 01O Cloning into '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-libunwind-sys/libunwind'... -2026-04-08T17:57:30.291438Z 01O Submodule path 'libdatadog/libdd-libunwind-sys/libunwind': checked out 'cc1d07281b9e034c9e088733aeb4b94ffd91db9e' -2026-04-08T17:57:30.291449Z 01O Updated submodules -2026-04-08T17:57:30.291456Z 01O Synchronizing submodule url for 'appsec/third_party/cpp-base64' -2026-04-08T17:57:30.291464Z 01O Synchronizing submodule url for 'appsec/third_party/libddwaf' -2026-04-08T17:57:30.291467Z 01O Synchronizing submodule url for 'appsec/third_party/libddwaf-rust' -2026-04-08T17:57:30.291471Z 01O Synchronizing submodule url for 'appsec/third_party/msgpack-c' -2026-04-08T17:57:30.291478Z 01O Synchronizing submodule url for 'appsec/third_party/msgpack-c/external/boost/predef' -2026-04-08T17:57:30.291481Z 01O Synchronizing submodule url for 'appsec/third_party/msgpack-c/external/boost/preprocessor' -2026-04-08T17:57:30.291485Z 01O Synchronizing submodule url for 'libdatadog' -2026-04-08T17:57:30.291491Z 01O Synchronizing submodule url for 'libdatadog/libdd-libunwind-sys/libunwind' -2026-04-08T17:57:30.291494Z 01O Entering 'appsec/third_party/cpp-base64' -2026-04-08T17:57:30.291498Z 01O Entering 'appsec/third_party/libddwaf' -2026-04-08T17:57:30.291504Z 01O Entering 'appsec/third_party/libddwaf-rust' -2026-04-08T17:57:30.291507Z 01O Entering 'appsec/third_party/msgpack-c' -2026-04-08T17:57:30.792320Z 01O Entering 'appsec/third_party/msgpack-c/external/boost/predef' -2026-04-08T17:57:30.792332Z 01O Entering 'appsec/third_party/msgpack-c/external/boost/preprocessor' -2026-04-08T17:57:30.792340Z 01O Entering 'libdatadog' -2026-04-08T17:57:30.792348Z 01O Entering 'libdatadog/libdd-libunwind-sys/libunwind' -2026-04-08T17:57:30.792351Z 01O Entering 'appsec/third_party/cpp-base64' -2026-04-08T17:57:30.792355Z 01O Entering 'appsec/third_party/libddwaf' -2026-04-08T17:57:30.792379Z 01O Entering 'appsec/third_party/libddwaf-rust' -2026-04-08T17:57:30.792393Z 01O Entering 'appsec/third_party/msgpack-c' -2026-04-08T17:57:31.292913Z 01O Entering 'appsec/third_party/msgpack-c/external/boost/predef' -2026-04-08T17:57:31.292952Z 01O Entering 'appsec/third_party/msgpack-c/external/boost/preprocessor' -2026-04-08T17:57:31.292958Z 01O Entering 'libdatadog' -2026-04-08T17:57:31.292985Z 01O Entering 'libdatadog/libdd-libunwind-sys/libunwind' -2026-04-08T17:57:31.292999Z 01O $ export clone_after=$(date +%s) # collapsed multi-line command -2026-04-08T17:57:31.293004Z 01O Clone elapsed 27 -2026-04-08T17:57:31.293034Z 01O -2026-04-08T17:57:31.293091Z 00O section_end:1775671051:get_sources -2026-04-08T17:57:31.293094Z 00O+section_start:1775671051:restore_cache[collapsed=true] -2026-04-08T17:57:31.296315Z 00O+Restoring cache -2026-04-08T17:57:31.793460Z 01O Checking cache for appsec boost cache-protected... -2026-04-08T17:57:31.793474Z 01O Downloading cache from https://dd-gitlab-runner-cache-build-stable.s3.dualstack.us-east-1.amazonaws.com/project/355/appsec%20boost%20cache-protected ETag="348cf7df1fee1be7d1935def9b20e14e" -2026-04-08T17:57:45.808258Z 01O Successfully extracted cache -2026-04-08T17:57:45.808296Z 01O -2026-04-08T17:57:45.808340Z 00O section_end:1775671065:restore_cache -2026-04-08T17:57:45.808341Z 00O+section_start:1775671065:step_script[collapsed=false] -2026-04-08T17:57:45.812878Z 00O+Executing "step_script" stage of the job script -2026-04-08T17:57:46.308480Z 01O $ export build_before=$(date +%s) # collapsed multi-line command -2026-04-08T17:57:46.308490Z 01O Starting pre-build script -2026-04-08T17:57:46.308496Z 01O Keeping environment unchanged -2026-04-08T17:57:46.308504Z 01O Terminating pre-build script -2026-04-08T17:57:46.308508Z 01O $ unset DD_SERVICE -2026-04-08T17:57:46.308512Z 01O $ unset DD_ENV -2026-04-08T17:57:46.308515Z 01O $ unset DD_TAGS -2026-04-08T17:57:46.308518Z 01O $ unset DD_TRACE_REMOVE_INTEGRATION_SERVICE_NAMES_ENABLED -2026-04-08T17:57:46.308525Z 01O $ git config --global --add safe.directory "$(pwd)/appsec/third_party/libddwaf" -2026-04-08T17:57:46.308528Z 01O $ sudo apt install -y clang-tidy-19 libc++-19-dev libc++abi-19-dev -2026-04-08T17:57:46.308532Z 01O -2026-04-08T17:57:46.308555Z 01O WARNING: apt does not have a stable CLI interface. Use with caution in scripts. -2026-04-08T17:57:46.308567Z 01O -2026-04-08T17:57:46.308575Z 01O Reading package lists... -2026-04-08T17:57:46.809210Z 01O Building dependency tree... -2026-04-08T17:57:47.309853Z 01O Reading state information... -2026-04-08T17:57:47.309859Z 01O clang-tidy-19 is already the newest version (1:19.1.7-3~deb12u1). -2026-04-08T17:57:47.309884Z 01O The following additional packages will be installed: -2026-04-08T17:57:47.309891Z 01O libc++1-19 libc++abi1-19 libunwind-19 libunwind-19-dev -2026-04-08T17:57:47.309897Z 01O Suggested packages: -2026-04-08T17:57:47.309903Z 01O clang -2026-04-08T17:57:47.309906Z 01O The following NEW packages will be installed: -2026-04-08T17:57:47.309910Z 01O libc++-19-dev libc++1-19 libc++abi-19-dev libc++abi1-19 libunwind-19 -2026-04-08T17:57:47.309933Z 01O libunwind-19-dev -2026-04-08T17:57:47.309936Z 01O 0 upgraded, 6 newly installed, 0 to remove and 0 not upgraded. -2026-04-08T17:57:47.309940Z 01O Need to get 1964 kB of archives. -2026-04-08T17:57:47.309946Z 01O After this operation, 14.8 MB of additional disk space will be used. -2026-04-08T17:57:47.309949Z 01O Get:1 http://deb.debian.org/debian bookworm/main amd64 libunwind-19 amd64 1:19.1.7-3~deb12u1 [63.2 kB] -2026-04-08T17:57:47.309953Z 01O Get:2 http://deb.debian.org/debian bookworm/main amd64 libc++abi1-19 amd64 1:19.1.7-3~deb12u1 [105 kB] -2026-04-08T17:57:47.309959Z 01O Get:3 http://deb.debian.org/debian bookworm/main amd64 libc++1-19 amd64 1:19.1.7-3~deb12u1 [302 kB] -2026-04-08T17:57:47.309962Z 01O Get:4 http://deb.debian.org/debian bookworm/main amd64 libc++abi-19-dev amd64 1:19.1.7-3~deb12u1 [128 kB] -2026-04-08T17:57:47.309966Z 01O Get:5 http://deb.debian.org/debian bookworm/main amd64 libunwind-19-dev amd64 1:19.1.7-3~deb12u1 [81.7 kB] -2026-04-08T17:57:47.309973Z 01O Get:6 http://deb.debian.org/debian bookworm/main amd64 libc++-19-dev amd64 1:19.1.7-3~deb12u1 [1284 kB] -2026-04-08T17:57:47.810231Z 01O debconf: delaying package configuration, since apt-utils is not installed -2026-04-08T17:57:47.810241Z 01O Fetched 1964 kB in 0s (41.9 MB/s) -2026-04-08T17:57:47.810246Z 01O Selecting previously unselected package libunwind-19:amd64. -2026-04-08T17:57:47.810259Z 01O (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 41697 files and directories currently installed.) -2026-04-08T17:57:47.810324Z 01O Preparing to unpack .../0-libunwind-19_1%3a19.1.7-3~deb12u1_amd64.deb ... -2026-04-08T17:57:47.810330Z 01O Unpacking libunwind-19:amd64 (1:19.1.7-3~deb12u1) ... -2026-04-08T17:57:47.810337Z 01O Selecting previously unselected package libc++abi1-19:amd64. -2026-04-08T17:57:47.810340Z 01O Preparing to unpack .../1-libc++abi1-19_1%3a19.1.7-3~deb12u1_amd64.deb ... -2026-04-08T17:57:47.810343Z 01O Unpacking libc++abi1-19:amd64 (1:19.1.7-3~deb12u1) ... -2026-04-08T17:57:47.810349Z 01O Selecting previously unselected package libc++1-19:amd64. -2026-04-08T17:57:47.810351Z 01O Preparing to unpack .../2-libc++1-19_1%3a19.1.7-3~deb12u1_amd64.deb ... -2026-04-08T17:57:47.810355Z 01O Unpacking libc++1-19:amd64 (1:19.1.7-3~deb12u1) ... -2026-04-08T17:57:47.810360Z 01O Selecting previously unselected package libc++abi-19-dev:amd64. -2026-04-08T17:57:47.810363Z 01O Preparing to unpack .../3-libc++abi-19-dev_1%3a19.1.7-3~deb12u1_amd64.deb ... -2026-04-08T17:57:47.810367Z 01O Unpacking libc++abi-19-dev:amd64 (1:19.1.7-3~deb12u1) ... -2026-04-08T17:57:47.810373Z 01O Selecting previously unselected package libunwind-19-dev:amd64. -2026-04-08T17:57:47.810375Z 01O Preparing to unpack .../4-libunwind-19-dev_1%3a19.1.7-3~deb12u1_amd64.deb ... -2026-04-08T17:57:47.810379Z 01O Unpacking libunwind-19-dev:amd64 (1:19.1.7-3~deb12u1) ... -2026-04-08T17:57:47.810401Z 01O Selecting previously unselected package libc++-19-dev:amd64. -2026-04-08T17:57:47.810418Z 01O Preparing to unpack .../5-libc++-19-dev_1%3a19.1.7-3~deb12u1_amd64.deb ... -2026-04-08T17:57:47.810429Z 01O Unpacking libc++-19-dev:amd64 (1:19.1.7-3~deb12u1) ... -2026-04-08T17:57:48.310576Z 01O Setting up libunwind-19:amd64 (1:19.1.7-3~deb12u1) ... -2026-04-08T17:57:48.310586Z 01O Setting up libc++abi1-19:amd64 (1:19.1.7-3~deb12u1) ... -2026-04-08T17:57:48.310591Z 01O Setting up libc++1-19:amd64 (1:19.1.7-3~deb12u1) ... -2026-04-08T17:57:48.310597Z 01O Setting up libunwind-19-dev:amd64 (1:19.1.7-3~deb12u1) ... -2026-04-08T17:57:48.310599Z 01O Setting up libc++abi-19-dev:amd64 (1:19.1.7-3~deb12u1) ... -2026-04-08T17:57:48.310603Z 01O Setting up libc++-19-dev:amd64 (1:19.1.7-3~deb12u1) ... -2026-04-08T17:57:48.310609Z 01O Processing triggers for libc-bin (2.36-9+deb12u13) ... -2026-04-08T17:57:48.310612Z 01O $ mkdir -p appsec/build boost-cache boost-cache -2026-04-08T17:57:48.310616Z 01O $ echo "Installing dependencies" # collapsed multi-line command -2026-04-08T17:57:48.310622Z 01O Installing dependencies -2026-04-08T17:57:48.310625Z 01O % Total % Received % Xferd Average Speed Time Time Time Current -2026-04-08T17:57:48.310629Z 01O Dload Upload Total Spent Left Speed -2026-04-08T17:57:48.310636Z 01O -2026-04-08T17:57:48.310637Z 01O+ 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 -2026-04-08T17:57:48.810979Z 01O+ 21 165M 21 35.3M 0 0 159M 0 0:00:01 --:--:-- 0:00:01 160M 100 165M 100 165M 0 0 198M 0 --:--:-- --:--:-- --:--:-- 198M -2026-04-08T17:57:49.311557Z 01O Archive: vault.zip -2026-04-08T17:57:49.311565Z 01O inflating: LICENSE.txt -2026-04-08T17:57:49.311571Z 01O inflating: vault -2026-04-08T17:57:52.315219Z 01O 'vault' -> '/usr/local/bin/vault' -2026-04-08T17:57:52.315228Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php -2026-04-08T17:57:52.315235Z 01O Hit:1 http://deb.debian.org/debian bookworm InRelease -2026-04-08T17:57:52.315237Z 01O Get:3 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB] -2026-04-08T17:57:52.315242Z 01O Get:4 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB] -2026-04-08T17:57:52.315248Z 01O Get:5 https://packages.microsoft.com/debian/12/prod bookworm InRelease [3618 B] -2026-04-08T17:57:52.315251Z 01O Hit:2 https://apt.llvm.org/bookworm llvm-toolchain-bookworm-19 InRelease -2026-04-08T17:57:52.815879Z 01O Ign:6 http://archive.debian.org/debian-debug bookworm-debug InRelease -2026-04-08T17:57:52.815887Z 01O Get:7 https://packages.microsoft.com/debian/12/prod bookworm/main armhf Packages [18.0 kB] -2026-04-08T17:57:52.815945Z 01O Get:8 https://packages.microsoft.com/debian/12/prod bookworm/main amd64 Packages [168 kB] -2026-04-08T17:57:52.815952Z 01O Get:9 https://packages.microsoft.com/debian/12/prod bookworm/main arm64 Packages [68.7 kB] -2026-04-08T17:57:52.815960Z 01O Err:10 http://archive.debian.org/debian-debug bookworm-debug Release -2026-04-08T17:57:52.815964Z 01O 404 Not Found [IP: 151.101.194.132 80] -2026-04-08T17:57:52.815968Z 01O Reading package lists... -2026-04-08T17:57:53.316671Z 01O E: The repository 'http://archive.debian.org/debian-debug bookworm-debug Release' does not have a Release file. -2026-04-08T17:57:53.316677Z 01O Installing codecov -2026-04-08T17:57:53.817352Z 01O gpg: directory '/home/circleci/.gnupg' created -2026-04-08T17:57:53.817364Z 01O gpg: keybox '/home/circleci/.gnupg/trustedkeys.gpg' created -2026-04-08T17:57:53.817372Z 01O % Total % Received % Xferd Average Speed Time Time Time Current -2026-04-08T17:57:53.817379Z 01O Dload Upload Total Spent Left Speed -2026-04-08T17:57:53.817383Z 01O 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 3187 100 3187 0 0 59431 0 --:--:-- --:--:-- --:--:-- 62490 -2026-04-08T17:57:53.817389Z 01O gpg: /home/circleci/.gnupg/trustdb.gpg: trustdb created -2026-04-08T17:57:53.817396Z 01O gpg: key 806BB28AED779869: public key "Codecov Uploader (Codecov Uploader Verification Key) " imported -2026-04-08T17:57:53.817402Z 01O gpg: Total number processed: 1 -2026-04-08T17:57:53.817406Z 01O gpg: imported: 1 -2026-04-08T17:57:54.317813Z 01O gpgv: can't allocate lock for '/home/circleci/.gnupg/trustedkeys.gpg' -2026-04-08T17:57:54.317827Z 01O gpgv: Signature made Tue Jun 20 15:39:52 2023 UTC -2026-04-08T17:57:54.317834Z 01O gpgv: using RSA key 27034E7FDB850E0BBC2C62FF806BB28AED779869 -2026-04-08T17:57:54.317855Z 01O gpgv: Good signature from "Codecov Uploader (Codecov Uploader Verification Key) " -2026-04-08T17:57:54.818522Z 01O codecov: OK -2026-04-08T17:57:54.818530Z 01O $ cd appsec/build -2026-04-08T17:57:54.818535Z 01O $ cmake .. -DCMAKE_BUILD_TYPE=Debug -DDD_APPSEC_ENABLE_COVERAGE=ON \ # collapsed multi-line command -2026-04-08T17:57:54.818544Z 01O -- The C compiler identification is Clang 19.1.7 -2026-04-08T17:57:54.818548Z 01O -- The CXX compiler identification is Clang 19.1.7 -2026-04-08T17:57:54.818552Z 01O -- Detecting C compiler ABI info -2026-04-08T17:57:54.818557Z 01O -- Detecting C compiler ABI info - done -2026-04-08T17:57:54.818560Z 01O -- Check for working C compiler: /usr/bin/clang-19 - skipped -2026-04-08T17:57:54.818564Z 01O -- Detecting C compile features -2026-04-08T17:57:54.818581Z 01O -- Detecting C compile features - done -2026-04-08T17:57:54.818591Z 01O -- Detecting CXX compiler ABI info -2026-04-08T17:57:55.319290Z 01O -- Detecting CXX compiler ABI info - done -2026-04-08T17:57:55.319303Z 01O -- Check for working CXX compiler: /usr/bin/clang++-19 - skipped -2026-04-08T17:57:55.319308Z 01O -- Detecting CXX compile features -2026-04-08T17:57:55.319316Z 01O -- Detecting CXX compile features - done -2026-04-08T17:57:55.319329Z 01O -- Project version: 1.30.1 -2026-04-08T17:57:55.319334Z 01O -- Build type: Debug -2026-04-08T17:57:57.321497Z 01O -- Has recursive unordered_map : TRUE -2026-04-08T17:57:57.321507Z 01O -- Has memory_resource test macro : TRUE -2026-04-08T17:57:57.321511Z 01O -- Has monotonic_resource : TRUE -2026-04-08T17:57:57.822142Z 01O CMake Warning (dev) at /opt/cmake/3.24.4/share/cmake-3.24/Modules/ExternalProject.cmake:3074 (message): -2026-04-08T17:57:57.822153Z 01O The DOWNLOAD_EXTRACT_TIMESTAMP option was not given and policy CMP0135 is -2026-04-08T17:57:57.822158Z 01O not set. The policy's OLD behavior will be used. When using a URL -2026-04-08T17:57:57.822164Z 01O download, the timestamps of extracted files should preferably be that of -2026-04-08T17:57:57.822218Z 01O the time of extraction, otherwise code that depends on the extracted -2026-04-08T17:57:57.822224Z 01O contents might not be rebuilt if the URL changes. The OLD behavior -2026-04-08T17:57:57.822270Z 01O preserves the timestamps from the archive instead, but this is usually not -2026-04-08T17:57:57.822284Z 01O what you want. Update your project to the NEW behavior or specify the -2026-04-08T17:57:57.822293Z 01O DOWNLOAD_EXTRACT_TIMESTAMP option with a value of true to avoid this -2026-04-08T17:57:57.822302Z 01O robustness issue. -2026-04-08T17:57:57.822310Z 01O Call Stack (most recent call first): -2026-04-08T17:57:57.822316Z 01O /opt/cmake/3.24.4/share/cmake-3.24/Modules/ExternalProject.cmake:4170 (_ep_add_download_command) -2026-04-08T17:57:57.822338Z 01O third_party/libddwaf/third_party/CMakeLists.txt:19 (ExternalProject_Add) -2026-04-08T17:57:57.822346Z 01O This warning is for project developers. Use -Wno-dev to suppress it. -2026-04-08T17:57:57.822350Z 01O -2026-04-08T17:57:57.822357Z 01O CMake Warning (dev) at /opt/cmake/3.24.4/share/cmake-3.24/Modules/ExternalProject.cmake:3074 (message): -2026-04-08T17:57:57.822360Z 01O The DOWNLOAD_EXTRACT_TIMESTAMP option was not given and policy CMP0135 is -2026-04-08T17:57:57.822364Z 01O not set. The policy's OLD behavior will be used. When using a URL -2026-04-08T17:57:57.822370Z 01O download, the timestamps of extracted files should preferably be that of -2026-04-08T17:57:57.822372Z 01O the time of extraction, otherwise code that depends on the extracted -2026-04-08T17:57:57.822377Z 01O contents might not be rebuilt if the URL changes. The OLD behavior -2026-04-08T17:57:57.822382Z 01O preserves the timestamps from the archive instead, but this is usually not -2026-04-08T17:57:57.822384Z 01O what you want. Update your project to the NEW behavior or specify the -2026-04-08T17:57:57.822388Z 01O DOWNLOAD_EXTRACT_TIMESTAMP option with a value of true to avoid this -2026-04-08T17:57:57.822394Z 01O robustness issue. -2026-04-08T17:57:57.822396Z 01O Call Stack (most recent call first): -2026-04-08T17:57:57.822399Z 01O /opt/cmake/3.24.4/share/cmake-3.24/Modules/ExternalProject.cmake:4170 (_ep_add_download_command) -2026-04-08T17:57:57.822405Z 01O third_party/libddwaf/third_party/CMakeLists.txt:55 (ExternalProject_Add) -2026-04-08T17:57:57.822408Z 01O This warning is for project developers. Use -Wno-dev to suppress it. -2026-04-08T17:57:57.822426Z 01O -2026-04-08T17:57:57.822438Z 01O CMake Warning (dev) at /opt/cmake/3.24.4/share/cmake-3.24/Modules/ExternalProject.cmake:3074 (message): -2026-04-08T17:57:57.822448Z 01O The DOWNLOAD_EXTRACT_TIMESTAMP option was not given and policy CMP0135 is -2026-04-08T17:57:57.822454Z 01O not set. The policy's OLD behavior will be used. When using a URL -2026-04-08T17:57:57.822467Z 01O download, the timestamps of extracted files should preferably be that of -2026-04-08T17:57:57.822476Z 01O the time of extraction, otherwise code that depends on the extracted -2026-04-08T17:57:57.822482Z 01O contents might not be rebuilt if the URL changes. The OLD behavior -2026-04-08T17:57:57.822494Z 01O preserves the timestamps from the archive instead, but this is usually not -2026-04-08T17:57:57.822504Z 01O what you want. Update your project to the NEW behavior or specify the -2026-04-08T17:57:57.822510Z 01O DOWNLOAD_EXTRACT_TIMESTAMP option with a value of true to avoid this -2026-04-08T17:57:57.822523Z 01O robustness issue. -2026-04-08T17:57:57.822531Z 01O Call Stack (most recent call first): -2026-04-08T17:57:57.822536Z 01O /opt/cmake/3.24.4/share/cmake-3.24/Modules/ExternalProject.cmake:4170 (_ep_add_download_command) -2026-04-08T17:57:57.822561Z 01O third_party/libddwaf/third_party/CMakeLists.txt:99 (ExternalProject_Add) -2026-04-08T17:57:57.822571Z 01O This warning is for project developers. Use -Wno-dev to suppress it. -2026-04-08T17:57:57.822576Z 01O -2026-04-08T17:57:57.822581Z 01O -- Build id is 2f4aa84cd61dc13229d1431779c007bf4ebda89c -2026-04-08T17:57:58.823117Z 01O -- Performing Test CMAKE_HAVE_LIBC_PTHREAD -2026-04-08T17:57:58.823196Z 01O -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success -2026-04-08T17:57:58.823205Z 01O -- Found Threads: TRUE -2026-04-08T17:58:00.825730Z 01O -- Build spdlog: 1.14.1 -2026-04-08T17:58:00.825743Z 01O -- Build type: Debug -2026-04-08T17:58:01.326397Z 01O -- Looking for sys/types.h -2026-04-08T17:58:01.326413Z 01O -- Looking for sys/types.h - found -2026-04-08T17:58:01.326422Z 01O -- Looking for stdint.h -2026-04-08T17:58:01.826972Z 01O -- Looking for stdint.h - found -2026-04-08T17:58:01.826982Z 01O -- Looking for stddef.h -2026-04-08T17:58:01.826987Z 01O -- Looking for stddef.h - found -2026-04-08T17:58:01.826992Z 01O -- Check size of off64_t -2026-04-08T17:58:01.826994Z 01O -- Check size of off64_t - done -2026-04-08T17:58:01.826998Z 01O -- Looking for fseeko -2026-04-08T17:58:01.827003Z 01O -- Looking for fseeko - found -2026-04-08T17:58:01.827005Z 01O -- Looking for unistd.h -2026-04-08T17:58:02.327703Z 01O -- Looking for unistd.h - found -2026-04-08T17:58:02.327719Z 01O -- Renaming -2026-04-08T17:58:02.327728Z 01O -- /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/zlib-src/zconf.h -2026-04-08T17:58:02.327743Z 01O -- to 'zconf.h.included' because this file is included with zlib -2026-04-08T17:58:02.327754Z 01O -- but CMake generates it automatically in the build directory. -2026-04-08T17:58:03.829533Z 01O -- Found cached Boost build, skipping compilation -2026-04-08T17:58:03.829541Z 01O -- boost_coroutine will be imported from /go/src/github.com/DataDog/apm-reliability/dd-trace-php/boost-cache/e89bdd7afb10/lib/libboost_coroutine.a -2026-04-08T17:58:03.829547Z 01O -- boost_context will be imported from /go/src/github.com/DataDog/apm-reliability/dd-trace-php/boost-cache/e89bdd7afb10/lib/libboost_context.a -2026-04-08T17:58:03.829555Z 01O -- boost_program_options will be imported from /go/src/github.com/DataDog/apm-reliability/dd-trace-php/boost-cache/e89bdd7afb10/lib/libboost_program_options.a -2026-04-08T17:58:03.829559Z 01O -- boost_system will be imported from /go/src/github.com/DataDog/apm-reliability/dd-trace-php/boost-cache/e89bdd7afb10/lib/libboost_system.a -2026-04-08T17:58:03.829564Z 01O -- boost_thread will be imported from /go/src/github.com/DataDog/apm-reliability/dd-trace-php/boost-cache/e89bdd7afb10/lib/libboost_thread.a -2026-04-08T17:58:03.829570Z 01O -- boost_stacktrace_addr2line will be imported from /go/src/github.com/DataDog/apm-reliability/dd-trace-php/boost-cache/e89bdd7afb10/lib/libboost_stacktrace_addr2line.a -2026-04-08T17:58:03.829575Z 01O -- boost_stacktrace_basic will be imported from /go/src/github.com/DataDog/apm-reliability/dd-trace-php/boost-cache/e89bdd7afb10/lib/libboost_stacktrace_basic.a -2026-04-08T17:58:03.829579Z 01O -- Boost components will be available as: -2026-04-08T17:58:03.829584Z 01O -- - boost_coroutine -2026-04-08T17:58:03.829586Z 01O -- - boost_context -2026-04-08T17:58:03.829590Z 01O -- - boost_program_options -2026-04-08T17:58:03.829595Z 01O -- - boost_system -2026-04-08T17:58:03.829597Z 01O -- - boost_thread -2026-04-08T17:58:03.829600Z 01O -- - boost_stacktrace -2026-04-08T17:58:03.829605Z 01O -- Cache configuration: -2026-04-08T17:58:03.829611Z 01O -- BOOST_CACHE_PREFIX: /go/src/github.com/DataDog/apm-reliability/dd-trace-php/boost-cache -2026-04-08T17:58:03.829629Z 01O -- ABI Hash: e89bdd7afb10 -2026-04-08T17:58:03.829642Z 01O -- Cache Hit: TRUE -2026-04-08T17:58:03.829647Z 01O -- -2026-04-08T17:58:03.829652Z 01O -- Found PhpConfig: /usr/local/bin/php-config (found version "8.3.30") -2026-04-08T17:58:03.829658Z 01O -- PHP version: 8.3.30 -2026-04-08T17:58:03.829663Z 01O -- PHP include directories: /opt/php/debug/include/php;/opt/php/debug/include/php/main;/opt/php/debug/include/php/TSRM;/opt/php/debug/include/php/Zend;/opt/php/debug/include/php/ext;/opt/php/debug/include/php/ext/date/lib -2026-04-08T17:58:03.829672Z 01O -- PHP libraries: -lncurses -lpq -lrt -lstdc++ -lrt -lm -ldl -lxml2 -lssl -lcrypto -lsqlite3 -lz -lcurl -lxml2 -lffi -lssl -lcrypto -lz -lpng16 -lwebp -ljpeg -lfreetype -licuio -licui18n -licuuc -licudata -lonig -lsqlite3 -ledit -lxml2 -lxml2 -lsodium -lxml2 -lxml2 -lxml2 -lxslt -lxml2 -lexslt -lxslt -lxml2 -lzip -lz -lssl -lcrypto -2026-04-08T17:58:03.829703Z 01O -- ASAN is disabled -2026-04-08T17:58:03.829708Z 01O -- Looking for ZTS -2026-04-08T17:58:03.829714Z 01O -- Looking for ZTS - not found -2026-04-08T17:58:03.829717Z 01O -- Looking for HAVE_BUNDLED_PCRE -2026-04-08T17:58:03.829720Z 01O -- Looking for HAVE_BUNDLED_PCRE - found -2026-04-08T17:58:03.829725Z 01O -- Using PHP's bundled PCRE2 -2026-04-08T17:58:03.829730Z 01O -- Performing Test COMPILER_HAS_NO_GNU_UNIQUE -2026-04-08T17:58:03.829733Z 01O -- Performing Test COMPILER_HAS_NO_GNU_UNIQUE - Failed -2026-04-08T17:58:03.829739Z 01O -- Linker has flag -Wl,--as-needed -2026-04-08T17:58:03.829742Z 01O -- Performing Test LINKER_SUPPORTS_VERSION_SCRIPT -2026-04-08T17:58:04.330290Z 01O -- Performing Test LINKER_SUPPORTS_VERSION_SCRIPT - Success -2026-04-08T17:58:04.330299Z 01O -- Linker has flag -Wl,--version-script -2026-04-08T17:58:04.330303Z 01O -- Linker has flag -flat_namespace;-undefined suppress -2026-04-08T17:58:04.330309Z 01O CMake Warning at cmake/patchelf.cmake:13 (message): -2026-04-08T17:58:04.330312Z 01O Patchelf not found. Can't build glibc + musl binaries -2026-04-08T17:58:04.330316Z 01O Call Stack (most recent call first): -2026-04-08T17:58:04.330320Z 01O cmake/extension.cmake:88 (patch_away_libc) -2026-04-08T17:58:04.330323Z 01O CMakeLists.txt:58 (include) -2026-04-08T17:58:04.330326Z 01O -2026-04-08T17:58:04.330331Z 01O -2026-04-08T17:58:04.330335Z 01O -- Linker has flag -Wl,--version-script=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/helper.version -2026-04-08T17:58:04.330339Z 01O CMake Warning at cmake/patchelf.cmake:13 (message): -2026-04-08T17:58:04.330362Z 01O Patchelf not found. Can't build glibc + musl binaries -2026-04-08T17:58:04.330379Z 01O Call Stack (most recent call first): -2026-04-08T17:58:04.330397Z 01O cmake/helper.cmake:59 (patch_away_libc) -2026-04-08T17:58:04.330400Z 01O CMakeLists.txt:62 (include) -2026-04-08T17:58:04.330404Z 01O -2026-04-08T17:58:04.330408Z 01O -2026-04-08T17:58:09.335586Z 01O -- Failed to find LLVM FileCheck -2026-04-08T17:58:09.335624Z 01O -- Found Git: /usr/bin/git (found version "2.39.5") -2026-04-08T17:58:09.335629Z 01O -- Google Benchmark version: v1.9.1, normalized to 1.9.1 -2026-04-08T17:58:09.335658Z 01O -- Looking for shm_open in rt -2026-04-08T17:58:09.335671Z 01O -- Looking for shm_open in rt - found -2026-04-08T17:58:09.335681Z 01O -- Performing Test HAVE_CXX_FLAG_WALL -2026-04-08T17:58:09.335689Z 01O -- Performing Test HAVE_CXX_FLAG_WALL - Success -2026-04-08T17:58:09.335692Z 01O -- Performing Test HAVE_CXX_FLAG_WEXTRA -2026-04-08T17:58:09.835630Z 01O -- Performing Test HAVE_CXX_FLAG_WEXTRA - Success -2026-04-08T17:58:09.835640Z 01O -- Performing Test HAVE_CXX_FLAG_WSHADOW -2026-04-08T17:58:09.835644Z 01O -- Performing Test HAVE_CXX_FLAG_WSHADOW - Success -2026-04-08T17:58:09.835650Z 01O -- Performing Test HAVE_CXX_FLAG_WFLOAT_EQUAL -2026-04-08T17:58:09.835653Z 01O -- Performing Test HAVE_CXX_FLAG_WFLOAT_EQUAL - Success -2026-04-08T17:58:09.835657Z 01O -- Performing Test HAVE_CXX_FLAG_WOLD_STYLE_CAST -2026-04-08T17:58:09.835663Z 01O -- Performing Test HAVE_CXX_FLAG_WOLD_STYLE_CAST - Success -2026-04-08T17:58:09.835665Z 01O -- Performing Test HAVE_CXX_FLAG_WCONVERSION -2026-04-08T17:58:10.336272Z 01O -- Performing Test HAVE_CXX_FLAG_WCONVERSION - Success -2026-04-08T17:58:10.336279Z 01O -- Performing Test HAVE_CXX_FLAG_WERROR -2026-04-08T17:58:10.336284Z 01O -- Performing Test HAVE_CXX_FLAG_WERROR - Success -2026-04-08T17:58:10.336291Z 01O -- Performing Test HAVE_CXX_FLAG_WSUGGEST_OVERRIDE -2026-04-08T17:58:10.336293Z 01O -- Performing Test HAVE_CXX_FLAG_WSUGGEST_OVERRIDE - Success -2026-04-08T17:58:10.336297Z 01O -- Performing Test HAVE_CXX_FLAG_PEDANTIC -2026-04-08T17:58:10.336303Z 01O -- Performing Test HAVE_CXX_FLAG_PEDANTIC - Success -2026-04-08T17:58:10.336306Z 01O -- Performing Test HAVE_CXX_FLAG_PEDANTIC_ERRORS -2026-04-08T17:58:10.837101Z 01O -- Performing Test HAVE_CXX_FLAG_PEDANTIC_ERRORS - Success -2026-04-08T17:58:10.837158Z 01O -- Performing Test HAVE_CXX_FLAG_WSHORTEN_64_TO_32 -2026-04-08T17:58:10.837164Z 01O -- Performing Test HAVE_CXX_FLAG_WSHORTEN_64_TO_32 - Success -2026-04-08T17:58:10.837170Z 01O -- Performing Test HAVE_CXX_FLAG_FSTRICT_ALIASING -2026-04-08T17:58:10.837173Z 01O -- Performing Test HAVE_CXX_FLAG_FSTRICT_ALIASING - Success -2026-04-08T17:58:10.837177Z 01O -- Performing Test HAVE_CXX_FLAG_WNO_DEPRECATED_DECLARATIONS -2026-04-08T17:58:10.837186Z 01O -- Performing Test HAVE_CXX_FLAG_WNO_DEPRECATED_DECLARATIONS - Success -2026-04-08T17:58:10.837189Z 01O -- Performing Test HAVE_CXX_FLAG_WNO_DEPRECATED -2026-04-08T17:58:11.337533Z 01O -- Performing Test HAVE_CXX_FLAG_WNO_DEPRECATED - Success -2026-04-08T17:58:11.337567Z 01O -- Performing Test HAVE_CXX_FLAG_WSTRICT_ALIASING -2026-04-08T17:58:11.337571Z 01O -- Performing Test HAVE_CXX_FLAG_WSTRICT_ALIASING - Success -2026-04-08T17:58:11.337577Z 01O -- Performing Test HAVE_CXX_FLAG_WD654 -2026-04-08T17:58:11.337579Z 01O -- Performing Test HAVE_CXX_FLAG_WD654 - Failed -2026-04-08T17:58:11.337583Z 01O -- Performing Test HAVE_CXX_FLAG_WTHREAD_SAFETY -2026-04-08T17:58:11.337599Z 01O -- Performing Test HAVE_CXX_FLAG_WTHREAD_SAFETY - Success -2026-04-08T17:58:11.337604Z 01O -- Enabling additional flags: -DINCLUDE_DIRECTORIES=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/benchmark-src/include -2026-04-08T17:58:11.337609Z 01O -- Compiling and running to test HAVE_THREAD_SAFETY_ATTRIBUTES -2026-04-08T17:58:12.338412Z 01O -- Performing Test HAVE_THREAD_SAFETY_ATTRIBUTES -- success -2026-04-08T17:58:12.338422Z 01O -- Performing Test HAVE_CXX_FLAG_COVERAGE -2026-04-08T17:58:12.839185Z 01O -- Performing Test HAVE_CXX_FLAG_COVERAGE - Success -2026-04-08T17:58:12.839196Z 01O -- Compiling and running to test HAVE_STD_REGEX -2026-04-08T17:58:13.839843Z 01O -- Performing Test HAVE_STD_REGEX -- success -2026-04-08T17:58:13.839853Z 01O -- Compiling and running to test HAVE_GNU_POSIX_REGEX -2026-04-08T17:58:14.340312Z 01O -- Performing Test HAVE_GNU_POSIX_REGEX -- failed to compile -2026-04-08T17:58:14.340324Z 01O -- Compiling and running to test HAVE_POSIX_REGEX -2026-04-08T17:58:15.341875Z 01O -- Performing Test HAVE_POSIX_REGEX -- success -2026-04-08T17:58:15.341885Z 01O -- Compiling and running to test HAVE_STEADY_CLOCK -2026-04-08T17:58:15.842340Z 01O -- Performing Test HAVE_STEADY_CLOCK -- success -2026-04-08T17:58:15.842351Z 01O -- Compiling and running to test HAVE_PTHREAD_AFFINITY -2026-04-08T17:58:15.842356Z 01O -- Performing Test HAVE_PTHREAD_AFFINITY -- success -2026-04-08T17:58:15.842362Z 01O -- Configuring done -2026-04-08T17:58:16.343086Z 01O -- Generating done -2026-04-08T17:58:16.343097Z 01O -- Build files have been written to: /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build -2026-04-08T17:58:16.343104Z 01O $ export PATH=$PATH:$HOME/.cargo/bin # collapsed multi-line command -2026-04-08T17:58:16.343111Z 01O /opt/cmake/3.24.4/bin/cmake -P /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/CMakeFiles/VerifyGlobs.cmake -2026-04-08T17:58:16.343116Z 01O /opt/cmake/3.24.4/bin/cmake -S/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec -B/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build --check-build-system CMakeFiles/Makefile.cmake 0 -2026-04-08T17:58:16.343121Z 01O make -f CMakeFiles/Makefile2 xtest -2026-04-08T17:58:16.343127Z 01O make[1]: Entering directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' -2026-04-08T17:58:16.343134Z 01O /opt/cmake/3.24.4/bin/cmake -P /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/CMakeFiles/VerifyGlobs.cmake -2026-04-08T17:58:16.343140Z 01O /opt/cmake/3.24.4/bin/cmake -S/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec -B/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build --check-build-system CMakeFiles/Makefile.cmake 0 -2026-04-08T17:58:16.343147Z 01O /opt/cmake/3.24.4/bin/cmake -E cmake_progress_start /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/CMakeFiles 15 -2026-04-08T17:58:16.343207Z 01O make -f CMakeFiles/Makefile2 CMakeFiles/xtest.dir/all -2026-04-08T17:58:16.343213Z 01O make[2]: Entering directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' -2026-04-08T17:58:16.343235Z 01O make -f _deps/spdlog-build/CMakeFiles/spdlog.dir/build.make _deps/spdlog-build/CMakeFiles/spdlog.dir/depend -2026-04-08T17:58:16.343248Z 01O make -f CMakeFiles/boost_build.dir/build.make CMakeFiles/boost_build.dir/depend -2026-04-08T17:58:16.343254Z 01O make -f third_party/CMakeFiles/mpack_malloc.dir/build.make third_party/CMakeFiles/mpack_malloc.dir/depend -2026-04-08T17:58:16.343276Z 01O make -f third_party/CMakeFiles/mpack.dir/build.make third_party/CMakeFiles/mpack.dir/depend -2026-04-08T17:58:16.343289Z 01O make[3]: Entering directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' -2026-04-08T17:58:16.343318Z 01O cd /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build && /opt/cmake/3.24.4/bin/cmake -E cmake_depends "Unix Makefiles" /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/CMakeFiles/boost_build.dir/DependInfo.cmake --color= -2026-04-08T17:58:16.343325Z 01O make[3]: Entering directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' -2026-04-08T17:58:16.343336Z 01O cd /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build && /opt/cmake/3.24.4/bin/cmake -E cmake_depends "Unix Makefiles" /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/third_party /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/third_party/CMakeFiles/mpack_malloc.dir/DependInfo.cmake --color= -2026-04-08T17:58:16.343345Z 01O make[3]: Entering directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' -2026-04-08T17:58:16.343355Z 01O cd /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build && /opt/cmake/3.24.4/bin/cmake -E cmake_depends "Unix Makefiles" /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/third_party /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/third_party/CMakeFiles/mpack.dir/DependInfo.cmake --color= -2026-04-08T17:58:16.343362Z 01O make[3]: Entering directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' -2026-04-08T17:58:16.343376Z 01O cd /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build && /opt/cmake/3.24.4/bin/cmake -E cmake_depends "Unix Makefiles" /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/spdlog-src /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/spdlog-build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/spdlog-build/CMakeFiles/spdlog.dir/DependInfo.cmake --color= -2026-04-08T17:58:16.343386Z 01O make[3]: Leaving directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' -2026-04-08T17:58:16.343391Z 01O make[3]: Leaving directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' -2026-04-08T17:58:16.343397Z 01O make -f CMakeFiles/boost_build.dir/build.make CMakeFiles/boost_build.dir/build -2026-04-08T17:58:16.343400Z 01O make[3]: Leaving directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' -2026-04-08T17:58:16.343432Z 01O make[3]: Leaving directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' -2026-04-08T17:58:16.343438Z 01O make -f third_party/CMakeFiles/mpack_malloc.dir/build.make third_party/CMakeFiles/mpack_malloc.dir/build -2026-04-08T17:58:16.343460Z 01O make -f _deps/spdlog-build/CMakeFiles/spdlog.dir/build.make _deps/spdlog-build/CMakeFiles/spdlog.dir/build -2026-04-08T17:58:16.343463Z 01O make -f third_party/CMakeFiles/mpack.dir/build.make third_party/CMakeFiles/mpack.dir/build -2026-04-08T17:58:16.343469Z 01O make[3]: Entering directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' -2026-04-08T17:58:16.343477Z 01O make[3]: Entering directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' -2026-04-08T17:58:16.343481Z 01O make[3]: Entering directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' -2026-04-08T17:58:16.343485Z 01O make[3]: Entering directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' -2026-04-08T17:58:16.343493Z 01O [ 0%] Using cached Boost libraries -2026-04-08T17:58:16.343497Z 01O [ 0%] Building C object third_party/CMakeFiles/mpack_malloc.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/ext/vendor/mpack/mpack.c.o -2026-04-08T17:58:16.343512Z 01O [ 0%] Building CXX object _deps/spdlog-build/CMakeFiles/spdlog.dir/src/spdlog.cpp.o -2026-04-08T17:58:16.343525Z 01O /opt/cmake/3.24.4/bin/cmake -E echo Using\ cached\ Boost\ build -2026-04-08T17:58:16.343531Z 01O [ 0%] Building C object third_party/CMakeFiles/mpack.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/ext/vendor/mpack/mpack.c.o -2026-04-08T17:58:16.343544Z 01O cd /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/spdlog-build && /usr/bin/clang++-19 -DSPDLOG_COMPILED_LIB -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/spdlog-src/include -stdlib=libc++ -g -fPIC -std=c++17 -MD -MT _deps/spdlog-build/CMakeFiles/spdlog.dir/src/spdlog.cpp.o -MF CMakeFiles/spdlog.dir/src/spdlog.cpp.o.d -o CMakeFiles/spdlog.dir/src/spdlog.cpp.o -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/spdlog-src/src/spdlog.cpp -2026-04-08T17:58:16.343567Z 01O cd /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/third_party && /usr/bin/clang-19 -DMPACK_BUFFER_SIZE=131072 -DMPACK_STDIO=0 -DMPACK_WRITE_TRACKING=1 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/../../ext/vendor/mpack -g -std=gnu11 -MD -MT third_party/CMakeFiles/mpack_malloc.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/ext/vendor/mpack/mpack.c.o -MF CMakeFiles/mpack_malloc.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/ext/vendor/mpack/mpack.c.o.d -o CMakeFiles/mpack_malloc.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/ext/vendor/mpack/mpack.c.o -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/ext/vendor/mpack/mpack.c -2026-04-08T17:58:16.343584Z 01O cd /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/third_party && /usr/bin/clang-19 -DMPACK_BUFFER_SIZE=32 -DMPACK_DEBUG=1 -DMPACK_HAS_CONFIG=1 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/../../ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/../src/extension/mpack -isystem /opt/php/debug/include/php -isystem /opt/php/debug/include/php/main -isystem /opt/php/debug/include/php/TSRM -isystem /opt/php/debug/include/php/Zend -isystem /opt/php/debug/include/php/ext -isystem /opt/php/debug/include/php/ext/date/lib -g -fPIC -fvisibility=hidden -std=gnu11 -MD -MT third_party/CMakeFiles/mpack.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/ext/vendor/mpack/mpack.c.o -MF CMakeFiles/mpack.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/ext/vendor/mpack/mpack.c.o.d -o CMakeFiles/mpack.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/ext/vendor/mpack/mpack.c.o -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/ext/vendor/mpack/mpack.c -2026-04-08T17:58:16.343606Z 01O Using cached Boost build -2026-04-08T17:58:16.343612Z 01O make[3]: Leaving directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' -2026-04-08T17:58:16.343618Z 01O [ 0%] Built target boost_build -2026-04-08T17:58:16.343628Z 01O make -f CMakeFiles/libxml2_build.dir/build.make CMakeFiles/libxml2_build.dir/depend -2026-04-08T17:58:16.343634Z 01O make[3]: Entering directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' -2026-04-08T17:58:16.343654Z 01O cd /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build && /opt/cmake/3.24.4/bin/cmake -E cmake_depends "Unix Makefiles" /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/CMakeFiles/libxml2_build.dir/DependInfo.cmake --color= -2026-04-08T17:58:16.343667Z 01O make[3]: Leaving directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' -2026-04-08T17:58:16.343673Z 01O make -f CMakeFiles/libxml2_build.dir/build.make CMakeFiles/libxml2_build.dir/build -2026-04-08T17:58:16.343706Z 01O make[3]: Entering directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' -2026-04-08T17:58:16.343718Z 01O [ 0%] Creating directories for 'libxml2_build' -2026-04-08T17:58:16.343725Z 01O /opt/cmake/3.24.4/bin/cmake -Dcfgdir= -P /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2_build-prefix/tmp/libxml2_build-mkdirs.cmake -2026-04-08T17:58:16.343737Z 01O /opt/cmake/3.24.4/bin/cmake -E touch /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2_build-prefix/src/libxml2_build-stamp/libxml2_build-mkdir -2026-04-08T17:58:16.343747Z 01O [ 0%] No download step for 'libxml2_build' -2026-04-08T17:58:16.343751Z 01O /opt/cmake/3.24.4/bin/cmake -E echo_append -2026-04-08T17:58:16.343764Z 01O /opt/cmake/3.24.4/bin/cmake -E touch /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2_build-prefix/src/libxml2_build-stamp/libxml2_build-download -2026-04-08T17:58:16.343773Z 01O [ 0%] No update step for 'libxml2_build' -2026-04-08T17:58:16.343777Z 01O /opt/cmake/3.24.4/bin/cmake -E echo_append -2026-04-08T17:58:16.343792Z 01O /opt/cmake/3.24.4/bin/cmake -E touch /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2_build-prefix/src/libxml2_build-stamp/libxml2_build-update -2026-04-08T17:58:16.343803Z 01O [ 6%] No patch step for 'libxml2_build' -2026-04-08T17:58:16.343807Z 01O /opt/cmake/3.24.4/bin/cmake -E echo_append -2026-04-08T17:58:16.343820Z 01O /opt/cmake/3.24.4/bin/cmake -E touch /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2_build-prefix/src/libxml2_build-stamp/libxml2_build-patch -2026-04-08T17:58:16.343831Z 01O [ 13%] Performing configure step for 'libxml2_build' -2026-04-08T17:58:16.343844Z 01O cd /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2 && /opt/cmake/3.24.4/bin/cmake -P /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2_build-prefix/src/libxml2_build-stamp/libxml2_build-configure-Debug.cmake -2026-04-08T17:58:16.843814Z 01O make[3]: Leaving directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' -2026-04-08T17:58:16.843827Z 01O [ 13%] Built target mpack_malloc -2026-04-08T17:58:16.843831Z 01O make -f CMakeFiles/zai.dir/build.make CMakeFiles/zai.dir/depend -2026-04-08T17:58:16.843839Z 01O make[3]: Entering directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' -2026-04-08T17:58:16.843851Z 01O cd /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build && /opt/cmake/3.24.4/bin/cmake -E cmake_depends "Unix Makefiles" /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/CMakeFiles/zai.dir/DependInfo.cmake --color= -2026-04-08T17:58:16.843903Z 01O make[3]: Leaving directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' -2026-04-08T17:58:16.843910Z 01O make -f CMakeFiles/zai.dir/build.make CMakeFiles/zai.dir/build -2026-04-08T17:58:16.843923Z 01O make[3]: Entering directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' -2026-04-08T17:58:16.843931Z 01O [ 13%] Building C object CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config.c.o -2026-04-08T17:58:16.843950Z 01O /usr/bin/clang-19 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/../zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/ext_root_includes -isystem /opt/php/debug/include/php -isystem /opt/php/debug/include/php/main -isystem /opt/php/debug/include/php/TSRM -isystem /opt/php/debug/include/php/Zend -isystem /opt/php/debug/include/php/ext -isystem /opt/php/debug/include/php/ext/date/lib -g -fPIC -std=gnu11 -MD -MT CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config.c.o -MF CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config.c.o.d -o CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config.c.o -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config.c -2026-04-08T17:58:16.843959Z 01O make[3]: Leaving directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' -2026-04-08T17:58:16.843962Z 01O [ 13%] Built target mpack -2026-04-08T17:58:16.843967Z 01O make -f CMakeFiles/ddtrace.dir/build.make CMakeFiles/ddtrace.dir/depend -2026-04-08T17:58:16.843971Z 01O make[3]: Entering directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' -2026-04-08T17:58:16.843982Z 01O cd /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build && /opt/cmake/3.24.4/bin/cmake -E cmake_depends "Unix Makefiles" /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/CMakeFiles/ddtrace.dir/DependInfo.cmake --color= -2026-04-08T17:58:16.843992Z 01O make[3]: Leaving directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' -2026-04-08T17:58:16.843994Z 01O make -f CMakeFiles/ddtrace.dir/build.make CMakeFiles/ddtrace.dir/build -2026-04-08T17:58:16.843999Z 01O make[3]: Entering directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' -2026-04-08T17:58:16.844054Z 01O cd /go/src/github.com/DataDog/apm-reliability/dd-trace-php && /opt/cmake/3.24.4/bin/cmake -E env PATH=/opt/php/debug/bin:/go/bin:/rust/cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin PHPRC= make /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/modules/ddtrace.so -2026-04-08T17:58:16.844064Z 01O make[4]: Entering directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php' -2026-04-08T17:58:16.844069Z 01O make[4]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule. -2026-04-08T17:58:16.844080Z 01O [ 13%] Building C object CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config_decode.c.o -2026-04-08T17:58:16.844098Z 01O /usr/bin/clang-19 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/../zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/ext_root_includes -isystem /opt/php/debug/include/php -isystem /opt/php/debug/include/php/main -isystem /opt/php/debug/include/php/TSRM -isystem /opt/php/debug/include/php/Zend -isystem /opt/php/debug/include/php/ext -isystem /opt/php/debug/include/php/ext/date/lib -g -fPIC -std=gnu11 -MD -MT CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config_decode.c.o -MF CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config_decode.c.o.d -o CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config_decode.c.o -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config_decode.c -2026-04-08T17:58:16.844148Z 01O [ 20%] Building C object CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config_ini.c.o -2026-04-08T17:58:16.844167Z 01O /usr/bin/clang-19 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/../zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/ext_root_includes -isystem /opt/php/debug/include/php -isystem /opt/php/debug/include/php/main -isystem /opt/php/debug/include/php/TSRM -isystem /opt/php/debug/include/php/Zend -isystem /opt/php/debug/include/php/ext -isystem /opt/php/debug/include/php/ext/date/lib -g -fPIC -std=gnu11 -MD -MT CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config_ini.c.o -MF CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config_ini.c.o.d -o CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config_ini.c.o -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config_ini.c -2026-04-08T17:58:17.344515Z 01O [ 20%] Building C object CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config_runtime.c.o -2026-04-08T17:58:17.344538Z 01O /usr/bin/clang-19 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/../zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/ext_root_includes -isystem /opt/php/debug/include/php -isystem /opt/php/debug/include/php/main -isystem /opt/php/debug/include/php/TSRM -isystem /opt/php/debug/include/php/Zend -isystem /opt/php/debug/include/php/ext -isystem /opt/php/debug/include/php/ext/date/lib -g -fPIC -std=gnu11 -MD -MT CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config_runtime.c.o -MF CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config_runtime.c.o.d -o CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config_runtime.c.o -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config_runtime.c -2026-04-08T17:58:17.344550Z 01O -- libxml2_build configure command succeeded. See also /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2_build-prefix/src/libxml2_build-stamp/libxml2_build-configure-*.log -2026-04-08T17:58:17.344581Z 01O cd /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2 && /opt/cmake/3.24.4/bin/cmake -E touch /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2_build-prefix/src/libxml2_build-stamp/libxml2_build-configure -2026-04-08T17:58:17.344596Z 01O [ 20%] Performing build step for 'libxml2_build' -2026-04-08T17:58:17.344604Z 01O cd /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2 && /opt/cmake/3.24.4/bin/cmake -Dmake=make -P /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2_build-prefix/src/libxml2_build-stamp/libxml2_build-build-Debug.cmake -2026-04-08T17:58:17.344632Z 01O [ 20%] Building C object CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config_stable_file.c.o -2026-04-08T17:58:17.344708Z 01O /usr/bin/clang-19 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/../zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/ext_root_includes -isystem /opt/php/debug/include/php -isystem /opt/php/debug/include/php/main -isystem /opt/php/debug/include/php/TSRM -isystem /opt/php/debug/include/php/Zend -isystem /opt/php/debug/include/php/ext -isystem /opt/php/debug/include/php/ext/date/lib -g -fPIC -std=gnu11 -MD -MT CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config_stable_file.c.o -MF CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config_stable_file.c.o.d -o CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config_stable_file.c.o -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config_stable_file.c -2026-04-08T17:58:17.845117Z 01O [ 20%] Building C object CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/env/env.c.o -2026-04-08T17:58:17.845138Z 01O /usr/bin/clang-19 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/../zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/ext_root_includes -isystem /opt/php/debug/include/php -isystem /opt/php/debug/include/php/main -isystem /opt/php/debug/include/php/TSRM -isystem /opt/php/debug/include/php/Zend -isystem /opt/php/debug/include/php/ext -isystem /opt/php/debug/include/php/ext/date/lib -g -fPIC -std=gnu11 -MD -MT CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/env/env.c.o -MF CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/env/env.c.o.d -o CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/env/env.c.o -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/env/env.c -2026-04-08T17:58:17.845148Z 01O [ 26%] Building C object CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/json/json.c.o -2026-04-08T17:58:17.845187Z 01O /usr/bin/clang-19 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/../zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/ext_root_includes -isystem /opt/php/debug/include/php -isystem /opt/php/debug/include/php/main -isystem /opt/php/debug/include/php/TSRM -isystem /opt/php/debug/include/php/Zend -isystem /opt/php/debug/include/php/ext -isystem /opt/php/debug/include/php/ext/date/lib -g -fPIC -std=gnu11 -MD -MT CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/json/json.c.o -MF CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/json/json.c.o.d -o CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/json/json.c.o -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/json/json.c -2026-04-08T17:58:17.845212Z 01O [ 26%] Building C object CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/zai_string/string.c.o -2026-04-08T17:58:17.845235Z 01O /usr/bin/clang-19 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/../zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/ext_root_includes -isystem /opt/php/debug/include/php -isystem /opt/php/debug/include/php/main -isystem /opt/php/debug/include/php/TSRM -isystem /opt/php/debug/include/php/Zend -isystem /opt/php/debug/include/php/ext -isystem /opt/php/debug/include/php/ext/date/lib -g -fPIC -std=gnu11 -MD -MT CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/zai_string/string.c.o -MF CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/zai_string/string.c.o.d -o CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/zai_string/string.c.o -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/zai_string/string.c -2026-04-08T17:58:18.347348Z 01O [ 26%] Linking C static library libzai.a -2026-04-08T17:58:18.347366Z 01O /opt/cmake/3.24.4/bin/cmake -P CMakeFiles/zai.dir/cmake_clean_target.cmake -2026-04-08T17:58:18.347372Z 01O /opt/cmake/3.24.4/bin/cmake -E cmake_link_script CMakeFiles/zai.dir/link.txt --verbose=1 -2026-04-08T17:58:18.347392Z 01O /usr/bin/llvm-ar-19 qc libzai.a "CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config.c.o" "CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config_decode.c.o" "CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config_ini.c.o" "CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config_runtime.c.o" "CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/config/config_stable_file.c.o" "CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/env/env.c.o" "CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/json/json.c.o" "CMakeFiles/zai.dir/go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/zai_string/string.c.o" -2026-04-08T17:58:18.347400Z 01O /usr/bin/llvm-ranlib-19 libzai.a -2026-04-08T17:58:18.347404Z 01O make[3]: Leaving directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' -2026-04-08T17:58:18.347411Z 01O [ 26%] Built target zai -2026-04-08T17:58:18.347414Z 01O make -f CMakeFiles/xtest-prepare.dir/build.make CMakeFiles/xtest-prepare.dir/depend -2026-04-08T17:58:18.347419Z 01O make[3]: Entering directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' -2026-04-08T17:58:18.347449Z 01O cd /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build && /opt/cmake/3.24.4/bin/cmake -E cmake_depends "Unix Makefiles" /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/CMakeFiles/xtest-prepare.dir/DependInfo.cmake --color= -2026-04-08T17:58:18.347465Z 01O make[3]: Leaving directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' -2026-04-08T17:58:18.347478Z 01O make -f CMakeFiles/xtest-prepare.dir/build.make CMakeFiles/xtest-prepare.dir/build -2026-04-08T17:58:18.347495Z 01O make[3]: Entering directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' -2026-04-08T17:58:18.347507Z 01O mkdir -p /tmp/appsec-ext-test -2026-04-08T17:58:18.347513Z 01O make[3]: Leaving directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' -2026-04-08T17:58:18.347522Z 01O [ 26%] Built target xtest-prepare -2026-04-08T17:58:18.347526Z 01O [ 33%] Building CXX object _deps/spdlog-build/CMakeFiles/spdlog.dir/src/stdout_sinks.cpp.o -2026-04-08T17:58:18.347539Z 01O cd /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/spdlog-build && /usr/bin/clang++-19 -DSPDLOG_COMPILED_LIB -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/spdlog-src/include -stdlib=libc++ -g -fPIC -std=c++17 -MD -MT _deps/spdlog-build/CMakeFiles/spdlog.dir/src/stdout_sinks.cpp.o -MF CMakeFiles/spdlog.dir/src/stdout_sinks.cpp.o.d -o CMakeFiles/spdlog.dir/src/stdout_sinks.cpp.o -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/spdlog-src/src/stdout_sinks.cpp -2026-04-08T17:58:19.348755Z 01O -- libxml2_build build command succeeded. See also /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2_build-prefix/src/libxml2_build-stamp/libxml2_build-build-*.log -2026-04-08T17:58:19.348774Z 01O cd /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2 && /opt/cmake/3.24.4/bin/cmake -E touch /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2_build-prefix/src/libxml2_build-stamp/libxml2_build-build -2026-04-08T17:58:19.348783Z 01O [ 33%] Performing install step for 'libxml2_build' -2026-04-08T17:58:19.348792Z 01O cd /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2 && /opt/cmake/3.24.4/bin/cmake -Dmake=make -P /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2_build-prefix/src/libxml2_build-stamp/libxml2_build-install-Debug.cmake -2026-04-08T17:58:19.348798Z 01O -- libxml2_build install command succeeded. See also /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2_build-prefix/src/libxml2_build-stamp/libxml2_build-install-*.log -2026-04-08T17:58:19.348809Z 01O cd /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2 && /opt/cmake/3.24.4/bin/cmake -E touch /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2_build-prefix/src/libxml2_build-stamp/libxml2_build-install -2026-04-08T17:58:19.348816Z 01O [ 33%] Completed 'libxml2_build' -2026-04-08T17:58:19.348820Z 01O /opt/cmake/3.24.4/bin/cmake -E make_directory /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/CMakeFiles -2026-04-08T17:58:19.348825Z 01O /opt/cmake/3.24.4/bin/cmake -E touch /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/CMakeFiles/libxml2_build-complete -2026-04-08T17:58:19.348835Z 01O /opt/cmake/3.24.4/bin/cmake -E touch /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2_build-prefix/src/libxml2_build-stamp/libxml2_build-done -2026-04-08T17:58:19.348839Z 01O make[3]: Leaving directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' -2026-04-08T17:58:19.348844Z 01O [ 33%] Built target libxml2_build -2026-04-08T17:58:19.348853Z 01O [ 33%] Building CXX object _deps/spdlog-build/CMakeFiles/spdlog.dir/src/color_sinks.cpp.o -2026-04-08T17:58:19.348862Z 01O cd /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/spdlog-build && /usr/bin/clang++-19 -DSPDLOG_COMPILED_LIB -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/spdlog-src/include -stdlib=libc++ -g -fPIC -std=c++17 -MD -MT _deps/spdlog-build/CMakeFiles/spdlog.dir/src/color_sinks.cpp.o -MF CMakeFiles/spdlog.dir/src/color_sinks.cpp.o.d -o CMakeFiles/spdlog.dir/src/color_sinks.cpp.o -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/spdlog-src/src/color_sinks.cpp -2026-04-08T17:58:19.348879Z 01O [ 33%] Building CXX object _deps/spdlog-build/CMakeFiles/spdlog.dir/src/file_sinks.cpp.o -2026-04-08T17:58:19.348900Z 01O cd /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/spdlog-build && /usr/bin/clang++-19 -DSPDLOG_COMPILED_LIB -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/spdlog-src/include -stdlib=libc++ -g -fPIC -std=c++17 -MD -MT _deps/spdlog-build/CMakeFiles/spdlog.dir/src/file_sinks.cpp.o -MF CMakeFiles/spdlog.dir/src/file_sinks.cpp.o.d -o CMakeFiles/spdlog.dir/src/file_sinks.cpp.o -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/spdlog-src/src/file_sinks.cpp -2026-04-08T17:58:19.849419Z 01O Copying components/atomic_win32_polyfill.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components/atomic_win32_polyfill.h -2026-04-08T17:58:19.849436Z 01O Copying components/container_id/container_id.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components/container_id/container_id.c -2026-04-08T17:58:19.849442Z 01O Copying components/container_id/container_id.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components/container_id/container_id.h -2026-04-08T17:58:19.849496Z 01O Copying components/log/log.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components/log/log.c -2026-04-08T17:58:19.849505Z 01O Copying components/log/log.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components/log/log.h -2026-04-08T17:58:19.849513Z 01O Copying components/pthread_polyfill.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components/pthread_polyfill.h -2026-04-08T17:58:19.849518Z 01O Copying components/sapi/sapi.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components/sapi/sapi.c -2026-04-08T17:58:19.849522Z 01O Copying components/sapi/sapi.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components/sapi/sapi.h -2026-04-08T17:58:19.849544Z 01O Copying components/stack-sample/stack-sample.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components/stack-sample/stack-sample.c -2026-04-08T17:58:19.849558Z 01O Copying components/stack-sample/stack-sample.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components/stack-sample/stack-sample.h -2026-04-08T17:58:19.849568Z 01O Copying components/string_view/string_view.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components/string_view/string_view.c -2026-04-08T17:58:19.849578Z 01O Copying components/string_view/string_view.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components/string_view/string_view.h -2026-04-08T17:58:19.849583Z 01O Copying components-rs/common.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/common.h -2026-04-08T17:58:19.849589Z 01O Copying components-rs/crashtracker.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/crashtracker.h -2026-04-08T17:58:19.849596Z 01O Copying components-rs/ddtrace.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/ddtrace.h -2026-04-08T17:58:19.849600Z 01O Copying components-rs/library-config.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/library-config.h -2026-04-08T17:58:19.849607Z 01O Copying components-rs/live-debugger.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/live-debugger.h -2026-04-08T17:58:19.849615Z 01O Copying components-rs/sidecar.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/sidecar.h -2026-04-08T17:58:19.849619Z 01O Copying components-rs/telemetry.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/telemetry.h -2026-04-08T17:58:19.849639Z 01O Copying ext/agent_info.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/agent_info.c -2026-04-08T17:58:19.849651Z 01O Copying ext/agent_info.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/agent_info.h -2026-04-08T17:58:19.849656Z 01O Copying ext/arrays.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/arrays.c -2026-04-08T17:58:19.849662Z 01O Copying ext/arrays.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/arrays.h -2026-04-08T17:58:19.849668Z 01O Copying ext/asm_event.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/asm_event.c -2026-04-08T17:58:19.849672Z 01O Copying ext/asm_event.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/asm_event.h -2026-04-08T17:58:19.849677Z 01O Copying ext/auto_flush.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/auto_flush.c -2026-04-08T17:58:19.849683Z 01O Copying ext/auto_flush.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/auto_flush.h -2026-04-08T17:58:19.849697Z 01O Copying ext/autoload_php_files.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/autoload_php_files.c -2026-04-08T17:58:19.849703Z 01O Copying ext/autoload_php_files.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/autoload_php_files.h -2026-04-08T17:58:19.849711Z 01O Copying ext/code_origins.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/code_origins.c -2026-04-08T17:58:19.849721Z 01O Copying ext/code_origins.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/code_origins.h -2026-04-08T17:58:19.849727Z 01O Copying ext/collect_backtrace.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/collect_backtrace.c -2026-04-08T17:58:19.849748Z 01O Copying ext/collect_backtrace.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/collect_backtrace.h -2026-04-08T17:58:20.350243Z 01O Copying ext/comms_php.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/comms_php.c -2026-04-08T17:58:20.350254Z 01O Copying ext/comms_php.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/comms_php.h -2026-04-08T17:58:20.350261Z 01O Copying ext/compat_getrandom.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/compat_getrandom.c -2026-04-08T17:58:20.350269Z 01O Copying ext/compat_string.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/compat_string.c -2026-04-08T17:58:20.350274Z 01O Copying ext/compat_string.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/compat_string.h -2026-04-08T17:58:20.350279Z 01O Copying ext/compatibility.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/compatibility.h -2026-04-08T17:58:20.350287Z 01O Copying ext/coms.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/coms.c -2026-04-08T17:58:20.350294Z 01O Copying ext/coms.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/coms.h -2026-04-08T17:58:20.350300Z 01O [ 40%] Building CXX object _deps/spdlog-build/CMakeFiles/spdlog.dir/src/async.cpp.o -2026-04-08T17:58:20.350314Z 01O cd /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/spdlog-build && /usr/bin/clang++-19 -DSPDLOG_COMPILED_LIB -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/spdlog-src/include -stdlib=libc++ -g -fPIC -std=c++17 -MD -MT _deps/spdlog-build/CMakeFiles/spdlog.dir/src/async.cpp.o -MF CMakeFiles/spdlog.dir/src/async.cpp.o.d -o CMakeFiles/spdlog.dir/src/async.cpp.o -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/spdlog-src/src/async.cpp -2026-04-08T17:58:20.350327Z 01O Copying ext/configuration.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/configuration.c -2026-04-08T17:58:20.350334Z 01O Copying ext/configuration.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/configuration.h -2026-04-08T17:58:20.350361Z 01O Copying ext/crashtracking_frames.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/crashtracking_frames.c -2026-04-08T17:58:20.350376Z 01O Copying ext/crashtracking_frames.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/crashtracking_frames.h -2026-04-08T17:58:20.350386Z 01O Copying ext/crashtracking_windows.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/crashtracking_windows.c -2026-04-08T17:58:20.350395Z 01O Copying ext/crashtracking_windows.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/crashtracking_windows.h -2026-04-08T17:58:20.350400Z 01O Copying ext/ddshared.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/ddshared.c -2026-04-08T17:58:20.350405Z 01O Copying ext/ddshared.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/ddshared.h -2026-04-08T17:58:20.350451Z 01O Copying ext/ddtrace.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/ddtrace.c -2026-04-08T17:58:20.350462Z 01O Copying ext/ddtrace.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/ddtrace.h -2026-04-08T17:58:20.350477Z 01O Copying ext/ddtrace_arginfo.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/ddtrace_arginfo.h -2026-04-08T17:58:20.350492Z 01O Copying ext/ddtrace_export.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/ddtrace_export.h -2026-04-08T17:58:20.350502Z 01O Copying ext/ddtrace_string.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/ddtrace_string.h -2026-04-08T17:58:20.350510Z 01O Copying ext/distributed_tracing_headers.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/distributed_tracing_headers.c -2026-04-08T17:58:20.350520Z 01O Copying ext/distributed_tracing_headers.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/distributed_tracing_headers.h -2026-04-08T17:58:20.350525Z 01O Copying ext/dogstatsd.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/dogstatsd.c -2026-04-08T17:58:20.350531Z 01O Copying ext/dogstatsd.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/dogstatsd.h -2026-04-08T17:58:20.350538Z 01O Copying ext/dogstatsd_client.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/dogstatsd_client.c -2026-04-08T17:58:20.350543Z 01O Copying ext/dogstatsd_client.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/dogstatsd_client.h -2026-04-08T17:58:20.350550Z 01O Copying ext/endpoint_guessing.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/endpoint_guessing.c -2026-04-08T17:58:20.350558Z 01O Copying ext/endpoint_guessing.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/endpoint_guessing.h -2026-04-08T17:58:20.350564Z 01O Copying ext/engine_api.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/engine_api.c -2026-04-08T17:58:20.350570Z 01O Copying ext/engine_api.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/engine_api.h -2026-04-08T17:58:20.350605Z 01O Copying ext/engine_hooks.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/engine_hooks.c -2026-04-08T17:58:20.350619Z 01O Copying ext/engine_hooks.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/engine_hooks.h -2026-04-08T17:58:20.350626Z 01O Copying ext/exception_serialize.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/exception_serialize.c -2026-04-08T17:58:20.350636Z 01O Copying ext/exception_serialize.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/exception_serialize.h -2026-04-08T17:58:20.350641Z 01O Copying ext/excluded_modules.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/excluded_modules.c -2026-04-08T17:58:20.350646Z 01O Copying ext/excluded_modules.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/excluded_modules.h -2026-04-08T17:58:20.350654Z 01O Copying ext/git.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/git.c -2026-04-08T17:58:20.851301Z 01O Copying ext/git.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/git.h -2026-04-08T17:58:20.851320Z 01O Copying ext/handlers_api.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_api.c -2026-04-08T17:58:20.851326Z 01O Copying ext/handlers_api.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_api.h -2026-04-08T17:58:20.851377Z 01O Copying ext/handlers_curl.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_curl.c -2026-04-08T17:58:20.851384Z 01O make -f CMakeFiles/extension.dir/build.make CMakeFiles/extension.dir/depend -2026-04-08T17:58:20.851422Z 01O Copying ext/handlers_curl_php7.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_curl_php7.c -2026-04-08T17:58:20.851437Z 01O make[3]: Entering directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' -2026-04-08T17:58:20.851453Z 01O cd /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build && /opt/cmake/3.24.4/bin/cmake -E cmake_depends "Unix Makefiles" /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/CMakeFiles/extension.dir/DependInfo.cmake --color= -2026-04-08T17:58:20.851463Z 01O make[3]: Leaving directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' -2026-04-08T17:58:20.851467Z 01O make -f CMakeFiles/extension.dir/build.make CMakeFiles/extension.dir/build -2026-04-08T17:58:20.851471Z 01O make[3]: Entering directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' -2026-04-08T17:58:20.851482Z 01O [ 40%] Building C object CMakeFiles/extension.dir/src/extension/backtrace.c.o -2026-04-08T17:58:20.851500Z 01O /usr/bin/clang-19 -DMPACK_BUFFER_SIZE=32 -DMPACK_DEBUG=1 -DMPACK_HAS_CONFIG=1 -DRAPIDJSON_HAS_STDSTRING=1 -DTESTING=1 -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -D_GNU_SOURCE -Dextension_EXPORTS -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/../../ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/../src/extension/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/rapidjson-src/include -isystem /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/../zend_abstract_interface -isystem /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/ext_root_includes -isystem /opt/php/debug/include/php -isystem /opt/php/debug/include/php/main -isystem /opt/php/debug/include/php/TSRM -isystem /opt/php/debug/include/php/Zend -isystem /opt/php/debug/include/php/ext -isystem /opt/php/debug/include/php/ext/date/lib -isystem /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2/install/include/libxml2 -g -fPIC -fvisibility=hidden -Wall -Wextra -pedantic -Werror -Wno-nullability-extension -Wno-gnu-zero-variadic-macro-arguments -Wno-gnu-auto-type -Wno-language-extension-token -ftls-model=local-dynamic -fprofile-instr-generate -fcoverage-mapping -mllvm -runtime-counter-relocation=true -std=gnu11 -MD -MT CMakeFiles/extension.dir/src/extension/backtrace.c.o -MF CMakeFiles/extension.dir/src/extension/backtrace.c.o.d -o CMakeFiles/extension.dir/src/extension/backtrace.c.o -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/backtrace.c -2026-04-08T17:58:20.851513Z 01O Copying ext/handlers_exception.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_exception.c -2026-04-08T17:58:20.851519Z 01O Copying ext/handlers_exception.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_exception.h -2026-04-08T17:58:20.851548Z 01O Copying ext/handlers_fiber.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_fiber.c -2026-04-08T17:58:20.851564Z 01O Copying ext/handlers_fiber.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_fiber.h -2026-04-08T17:58:20.851574Z 01O Copying ext/handlers_http.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_http.h -2026-04-08T17:58:20.851609Z 01O Copying ext/handlers_httpstreams.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_httpstreams.c -2026-04-08T17:58:20.851614Z 01O Copying ext/handlers_internal.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_internal.c -2026-04-08T17:58:20.851619Z 01O Copying ext/handlers_internal.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_internal.h -2026-04-08T17:58:20.851626Z 01O Copying ext/handlers_kafka.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_kafka.c -2026-04-08T17:58:20.851638Z 01O Copying ext/handlers_pcntl.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_pcntl.c -2026-04-08T17:58:20.851645Z 01O Copying ext/handlers_signal.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_signal.c -2026-04-08T17:58:20.851652Z 01O Copying ext/hook/uhook.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/hook/uhook.c -2026-04-08T17:58:20.851656Z 01O Copying ext/hook/uhook.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/hook/uhook.h -2026-04-08T17:58:20.851661Z 01O Copying ext/hook/uhook_arginfo.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/hook/uhook_arginfo.h -2026-04-08T17:58:20.851669Z 01O Copying ext/hook/uhook_attributes.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/hook/uhook_attributes.c -2026-04-08T17:58:20.851674Z 01O Copying ext/hook/uhook_attributes_arginfo.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/hook/uhook_attributes_arginfo.h -2026-04-08T17:58:20.851681Z 01O Copying ext/hook/uhook_legacy.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/hook/uhook_legacy.c -2026-04-08T17:58:20.851689Z 01O Copying ext/hook/uhook_otel.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/hook/uhook_otel.c -2026-04-08T17:58:20.851693Z 01O [ 46%] Building C object CMakeFiles/extension.dir/src/extension/commands/client_init.c.o -2026-04-08T17:58:20.851714Z 01O /usr/bin/clang-19 -DMPACK_BUFFER_SIZE=32 -DMPACK_DEBUG=1 -DMPACK_HAS_CONFIG=1 -DRAPIDJSON_HAS_STDSTRING=1 -DTESTING=1 -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -D_GNU_SOURCE -Dextension_EXPORTS -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/../../ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/../src/extension/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/rapidjson-src/include -isystem /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/../zend_abstract_interface -isystem /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/ext_root_includes -isystem /opt/php/debug/include/php -isystem /opt/php/debug/include/php/main -isystem /opt/php/debug/include/php/TSRM -isystem /opt/php/debug/include/php/Zend -isystem /opt/php/debug/include/php/ext -isystem /opt/php/debug/include/php/ext/date/lib -isystem /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2/install/include/libxml2 -g -fPIC -fvisibility=hidden -Wall -Wextra -pedantic -Werror -Wno-nullability-extension -Wno-gnu-zero-variadic-macro-arguments -Wno-gnu-auto-type -Wno-language-extension-token -ftls-model=local-dynamic -fprofile-instr-generate -fcoverage-mapping -mllvm -runtime-counter-relocation=true -std=gnu11 -MD -MT CMakeFiles/extension.dir/src/extension/commands/client_init.c.o -MF CMakeFiles/extension.dir/src/extension/commands/client_init.c.o.d -o CMakeFiles/extension.dir/src/extension/commands/client_init.c.o -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/commands/client_init.c -2026-04-08T17:58:20.851732Z 01O Copying ext/inferred_proxy_headers.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/inferred_proxy_headers.c -2026-04-08T17:58:20.851747Z 01O Copying ext/inferred_proxy_headers.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/inferred_proxy_headers.h -2026-04-08T17:58:20.851755Z 01O Copying ext/integrations/exec_integration.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations/exec_integration.c -2026-04-08T17:58:20.851764Z 01O Copying ext/integrations/exec_integration.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations/exec_integration.h -2026-04-08T17:58:20.851769Z 01O [ 46%] Building CXX object _deps/spdlog-build/CMakeFiles/spdlog.dir/src/cfg.cpp.o -2026-04-08T17:58:20.851780Z 01O cd /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/spdlog-build && /usr/bin/clang++-19 -DSPDLOG_COMPILED_LIB -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/spdlog-src/include -stdlib=libc++ -g -fPIC -std=c++17 -MD -MT _deps/spdlog-build/CMakeFiles/spdlog.dir/src/cfg.cpp.o -MF CMakeFiles/spdlog.dir/src/cfg.cpp.o.d -o CMakeFiles/spdlog.dir/src/cfg.cpp.o -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/spdlog-src/src/cfg.cpp -2026-04-08T17:58:20.851791Z 01O Copying ext/integrations/exec_integration_arginfo.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations/exec_integration_arginfo.h -2026-04-08T17:58:20.851796Z 01O Copying ext/integrations/integrations.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations/integrations.c -2026-04-08T17:58:20.851803Z 01O Copying ext/integrations/integrations.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations/integrations.h -2026-04-08T17:58:20.851820Z 01O Copying ext/ip_extraction.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/ip_extraction.c -2026-04-08T17:58:20.851827Z 01O Copying ext/ip_extraction.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/ip_extraction.h -2026-04-08T17:58:20.851833Z 01O Copying ext/limiter/limiter.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/limiter/limiter.c -2026-04-08T17:58:20.851841Z 01O Copying ext/limiter/limiter.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/limiter/limiter.h -2026-04-08T17:58:20.851847Z 01O Copying ext/live_debugger.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/live_debugger.c -2026-04-08T17:58:20.851853Z 01O Copying ext/live_debugger.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/live_debugger.h -2026-04-08T17:58:21.351775Z 01O Copying ext/logging.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/logging.c -2026-04-08T17:58:21.351790Z 01O Copying ext/logging.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/logging.h -2026-04-08T17:58:21.351798Z 01O Copying ext/macros.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/macros.h -2026-04-08T17:58:21.351819Z 01O Copying ext/memory_limit.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/memory_limit.c -2026-04-08T17:58:21.351838Z 01O [ 46%] Building C object CMakeFiles/extension.dir/src/extension/commands/config_sync.c.o -2026-04-08T17:58:21.351860Z 01O /usr/bin/clang-19 -DMPACK_BUFFER_SIZE=32 -DMPACK_DEBUG=1 -DMPACK_HAS_CONFIG=1 -DRAPIDJSON_HAS_STDSTRING=1 -DTESTING=1 -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -D_GNU_SOURCE -Dextension_EXPORTS -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/../../ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/../src/extension/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/rapidjson-src/include -isystem /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/../zend_abstract_interface -isystem /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/ext_root_includes -isystem /opt/php/debug/include/php -isystem /opt/php/debug/include/php/main -isystem /opt/php/debug/include/php/TSRM -isystem /opt/php/debug/include/php/Zend -isystem /opt/php/debug/include/php/ext -isystem /opt/php/debug/include/php/ext/date/lib -isystem /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2/install/include/libxml2 -g -fPIC -fvisibility=hidden -Wall -Wextra -pedantic -Werror -Wno-nullability-extension -Wno-gnu-zero-variadic-macro-arguments -Wno-gnu-auto-type -Wno-language-extension-token -ftls-model=local-dynamic -fprofile-instr-generate -fcoverage-mapping -mllvm -runtime-counter-relocation=true -std=gnu11 -MD -MT CMakeFiles/extension.dir/src/extension/commands/config_sync.c.o -MF CMakeFiles/extension.dir/src/extension/commands/config_sync.c.o.d -o CMakeFiles/extension.dir/src/extension/commands/config_sync.c.o -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/commands/config_sync.c -2026-04-08T17:58:21.351913Z 01O Copying ext/memory_limit.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/memory_limit.h -2026-04-08T17:58:21.351921Z 01O Copying ext/otel_config.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/otel_config.c -2026-04-08T17:58:21.351929Z 01O Copying ext/otel_config.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/otel_config.h -2026-04-08T17:58:21.351935Z 01O Copying ext/priority_sampling/priority_sampling.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/priority_sampling/priority_sampling.c -2026-04-08T17:58:21.351942Z 01O Copying ext/priority_sampling/priority_sampling.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/priority_sampling/priority_sampling.h -2026-04-08T17:58:21.351954Z 01O Copying ext/process_tags.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/process_tags.c -2026-04-08T17:58:21.351959Z 01O Copying ext/process_tags.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/process_tags.h -2026-04-08T17:58:21.351964Z 01O Copying ext/profiling.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/profiling.c -2026-04-08T17:58:21.351971Z 01O Copying ext/profiling.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/profiling.h -2026-04-08T17:58:21.351975Z 01O Copying ext/random.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/random.c -2026-04-08T17:58:21.351980Z 01O Copying ext/random.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/random.h -2026-04-08T17:58:21.351986Z 01O Copying ext/remote_config.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/remote_config.c -2026-04-08T17:58:21.351994Z 01O Copying ext/remote_config.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/remote_config.h -2026-04-08T17:58:21.351998Z 01O Copying ext/serializer.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/serializer.c -2026-04-08T17:58:21.352003Z 01O Copying ext/serializer.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/serializer.h -2026-04-08T17:58:21.352009Z 01O Copying ext/sidecar.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/sidecar.c -2026-04-08T17:58:21.352015Z 01O Copying ext/sidecar.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/sidecar.h -2026-04-08T17:58:21.352031Z 01O Copying ext/signals.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/signals.c -2026-04-08T17:58:21.352041Z 01O Copying ext/signals.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/signals.h -2026-04-08T17:58:21.352065Z 01O Copying ext/span.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/span.c -2026-04-08T17:58:21.352071Z 01O [ 46%] Building C object CMakeFiles/extension.dir/src/extension/commands/request_exec.c.o -2026-04-08T17:58:21.352094Z 01O /usr/bin/clang-19 -DMPACK_BUFFER_SIZE=32 -DMPACK_DEBUG=1 -DMPACK_HAS_CONFIG=1 -DRAPIDJSON_HAS_STDSTRING=1 -DTESTING=1 -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -D_GNU_SOURCE -Dextension_EXPORTS -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/../../ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/../src/extension/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/rapidjson-src/include -isystem /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/../zend_abstract_interface -isystem /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/ext_root_includes -isystem /opt/php/debug/include/php -isystem /opt/php/debug/include/php/main -isystem /opt/php/debug/include/php/TSRM -isystem /opt/php/debug/include/php/Zend -isystem /opt/php/debug/include/php/ext -isystem /opt/php/debug/include/php/ext/date/lib -isystem /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2/install/include/libxml2 -g -fPIC -fvisibility=hidden -Wall -Wextra -pedantic -Werror -Wno-nullability-extension -Wno-gnu-zero-variadic-macro-arguments -Wno-gnu-auto-type -Wno-language-extension-token -ftls-model=local-dynamic -fprofile-instr-generate -fcoverage-mapping -mllvm -runtime-counter-relocation=true -std=gnu11 -MD -MT CMakeFiles/extension.dir/src/extension/commands/request_exec.c.o -MF CMakeFiles/extension.dir/src/extension/commands/request_exec.c.o.d -o CMakeFiles/extension.dir/src/extension/commands/request_exec.c.o -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/commands/request_exec.c -2026-04-08T17:58:21.352105Z 01O Copying ext/span.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/span.h -2026-04-08T17:58:21.352111Z 01O Copying ext/standalone_limiter.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/standalone_limiter.c -2026-04-08T17:58:21.352117Z 01O Copying ext/standalone_limiter.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/standalone_limiter.h -2026-04-08T17:58:21.352124Z 01O Copying ext/startup_logging.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/startup_logging.c -2026-04-08T17:58:21.352130Z 01O Copying ext/startup_logging.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/startup_logging.h -2026-04-08T17:58:21.352146Z 01O Copying ext/telemetry.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/telemetry.c -2026-04-08T17:58:21.352154Z 01O Copying ext/telemetry.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/telemetry.h -2026-04-08T17:58:21.352160Z 01O Copying ext/threads.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/threads.c -2026-04-08T17:58:21.352166Z 01O Copying ext/threads.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/threads.h -2026-04-08T17:58:21.852495Z 01O Copying ext/trace_source.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/trace_source.c -2026-04-08T17:58:21.852507Z 01O Copying ext/trace_source.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/trace_source.h -2026-04-08T17:58:21.852516Z 01O Copying ext/tracer_tag_propagation/tracer_tag_propagation.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/tracer_tag_propagation/tracer_tag_propagation.c -2026-04-08T17:58:21.852526Z 01O Copying ext/tracer_tag_propagation/tracer_tag_propagation.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/tracer_tag_propagation/tracer_tag_propagation.h -2026-04-08T17:58:21.852584Z 01O Copying ext/uri_normalization.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/uri_normalization.h -2026-04-08T17:58:21.852593Z 01O [ 46%] Building C object CMakeFiles/extension.dir/src/extension/commands/request_init.c.o -2026-04-08T17:58:21.852618Z 01O /usr/bin/clang-19 -DMPACK_BUFFER_SIZE=32 -DMPACK_DEBUG=1 -DMPACK_HAS_CONFIG=1 -DRAPIDJSON_HAS_STDSTRING=1 -DTESTING=1 -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -D_GNU_SOURCE -Dextension_EXPORTS -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/../../ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/../src/extension/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/rapidjson-src/include -isystem /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/../zend_abstract_interface -isystem /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/ext_root_includes -isystem /opt/php/debug/include/php -isystem /opt/php/debug/include/php/main -isystem /opt/php/debug/include/php/TSRM -isystem /opt/php/debug/include/php/Zend -isystem /opt/php/debug/include/php/ext -isystem /opt/php/debug/include/php/ext/date/lib -isystem /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2/install/include/libxml2 -g -fPIC -fvisibility=hidden -Wall -Wextra -pedantic -Werror -Wno-nullability-extension -Wno-gnu-zero-variadic-macro-arguments -Wno-gnu-auto-type -Wno-language-extension-token -ftls-model=local-dynamic -fprofile-instr-generate -fcoverage-mapping -mllvm -runtime-counter-relocation=true -std=gnu11 -MD -MT CMakeFiles/extension.dir/src/extension/commands/request_init.c.o -MF CMakeFiles/extension.dir/src/extension/commands/request_init.c.o.d -o CMakeFiles/extension.dir/src/extension/commands/request_init.c.o -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/commands/request_init.c -2026-04-08T17:58:21.852630Z 01O Copying ext/user_request.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/user_request.c -2026-04-08T17:58:21.852637Z 01O Copying ext/user_request.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/user_request.h -2026-04-08T17:58:21.852645Z 01O Copying ext/vendor/mpack/mpack.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack/mpack.c -2026-04-08T17:58:21.852655Z 01O Copying ext/vendor/mpack/mpack.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack/mpack.h -2026-04-08T17:58:21.852661Z 01O Copying ext/vendor/mt19937/mt19937-64.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937/mt19937-64.c -2026-04-08T17:58:21.852670Z 01O Copying ext/vendor/mt19937/mt19937-64.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937/mt19937-64.h -2026-04-08T17:58:21.852674Z 01O Copying ext/weak_resources.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/weak_resources.c -2026-04-08T17:58:21.852679Z 01O Copying ext/weak_resources.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/weak_resources.h -2026-04-08T17:58:21.852686Z 01O Copying ext/weakrefs.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/weakrefs.c -2026-04-08T17:58:21.852690Z 01O Copying ext/zend_hrtime.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/zend_hrtime.c -2026-04-08T17:58:21.852695Z 01O Copying ext/zend_hrtime.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/zend_hrtime.h -2026-04-08T17:58:21.852703Z 01O Copying src/dogstatsd/client.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd/client.c -2026-04-08T17:58:21.852708Z 01O Copying src/dogstatsd/dogstatsd_client/client.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd/dogstatsd_client/client.h -2026-04-08T17:58:21.852737Z 01O Copying zend_abstract_interface/config/config.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/config.c -2026-04-08T17:58:21.852776Z 01O Copying zend_abstract_interface/config/config.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/config.h -2026-04-08T17:58:21.852790Z 01O Copying zend_abstract_interface/config/config_decode.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/config_decode.c -2026-04-08T17:58:21.852797Z 01O Copying zend_abstract_interface/config/config_decode.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/config_decode.h -2026-04-08T17:58:21.852805Z 01O [ 53%] Building C object CMakeFiles/extension.dir/src/extension/commands/request_shutdown.c.o -2026-04-08T17:58:21.852823Z 01O /usr/bin/clang-19 -DMPACK_BUFFER_SIZE=32 -DMPACK_DEBUG=1 -DMPACK_HAS_CONFIG=1 -DRAPIDJSON_HAS_STDSTRING=1 -DTESTING=1 -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -D_GNU_SOURCE -Dextension_EXPORTS -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/../../ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/../src/extension/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/rapidjson-src/include -isystem /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/../zend_abstract_interface -isystem /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/ext_root_includes -isystem /opt/php/debug/include/php -isystem /opt/php/debug/include/php/main -isystem /opt/php/debug/include/php/TSRM -isystem /opt/php/debug/include/php/Zend -isystem /opt/php/debug/include/php/ext -isystem /opt/php/debug/include/php/ext/date/lib -isystem /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2/install/include/libxml2 -g -fPIC -fvisibility=hidden -Wall -Wextra -pedantic -Werror -Wno-nullability-extension -Wno-gnu-zero-variadic-macro-arguments -Wno-gnu-auto-type -Wno-language-extension-token -ftls-model=local-dynamic -fprofile-instr-generate -fcoverage-mapping -mllvm -runtime-counter-relocation=true -std=gnu11 -MD -MT CMakeFiles/extension.dir/src/extension/commands/request_shutdown.c.o -MF CMakeFiles/extension.dir/src/extension/commands/request_shutdown.c.o.d -o CMakeFiles/extension.dir/src/extension/commands/request_shutdown.c.o -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/commands/request_shutdown.c -2026-04-08T17:58:21.852837Z 01O Copying zend_abstract_interface/config/config_ini.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/config_ini.c -2026-04-08T17:58:21.852845Z 01O Copying zend_abstract_interface/config/config_ini.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/config_ini.h -2026-04-08T17:58:21.852851Z 01O Copying zend_abstract_interface/config/config_runtime.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/config_runtime.c -2026-04-08T17:58:21.852865Z 01O Copying zend_abstract_interface/config/config_stable_file.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/config_stable_file.c -2026-04-08T17:58:21.852877Z 01O Copying zend_abstract_interface/config/config_stable_file.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/config_stable_file.h -2026-04-08T17:58:21.852887Z 01O Copying zend_abstract_interface/config/tests/config_test_helpers.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/tests/config_test_helpers.h -2026-04-08T17:58:22.353271Z 01O Copying zend_abstract_interface/config/tests/ext_zai_config.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/tests/ext_zai_config.h -2026-04-08T17:58:22.353333Z 01O Copying zend_abstract_interface/env/env.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/env/env.c -2026-04-08T17:58:22.353340Z 01O Copying zend_abstract_interface/env/env.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/env/env.h -2026-04-08T17:58:22.353368Z 01O Copying zend_abstract_interface/exceptions/exceptions.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/exceptions/exceptions.c -2026-04-08T17:58:22.353386Z 01O [ 53%] Building CXX object _deps/spdlog-build/CMakeFiles/spdlog.dir/src/bundled_fmtlib_format.cpp.o -2026-04-08T17:58:22.353402Z 01O cd /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/spdlog-build && /usr/bin/clang++-19 -DSPDLOG_COMPILED_LIB -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/spdlog-src/include -stdlib=libc++ -g -fPIC -std=c++17 -MD -MT _deps/spdlog-build/CMakeFiles/spdlog.dir/src/bundled_fmtlib_format.cpp.o -MF CMakeFiles/spdlog.dir/src/bundled_fmtlib_format.cpp.o.d -o CMakeFiles/spdlog.dir/src/bundled_fmtlib_format.cpp.o -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/spdlog-src/src/bundled_fmtlib_format.cpp -2026-04-08T17:58:22.353414Z 01O Copying zend_abstract_interface/exceptions/exceptions.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/exceptions/exceptions.h -2026-04-08T17:58:22.353419Z 01O Copying zend_abstract_interface/headers/headers.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/headers/headers.c -2026-04-08T17:58:22.353425Z 01O Copying zend_abstract_interface/headers/headers.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/headers/headers.h -2026-04-08T17:58:22.353433Z 01O Copying zend_abstract_interface/hook/hook.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/hook/hook.c -2026-04-08T17:58:22.353437Z 01O Copying zend_abstract_interface/hook/hook.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/hook/hook.h -2026-04-08T17:58:22.353441Z 01O [ 53%] Building C object CMakeFiles/extension.dir/src/extension/commands_helpers.c.o -2026-04-08T17:58:22.353464Z 01O /usr/bin/clang-19 -DMPACK_BUFFER_SIZE=32 -DMPACK_DEBUG=1 -DMPACK_HAS_CONFIG=1 -DRAPIDJSON_HAS_STDSTRING=1 -DTESTING=1 -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -D_GNU_SOURCE -Dextension_EXPORTS -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/../../ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/../src/extension/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/rapidjson-src/include -isystem /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/../zend_abstract_interface -isystem /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/ext_root_includes -isystem /opt/php/debug/include/php -isystem /opt/php/debug/include/php/main -isystem /opt/php/debug/include/php/TSRM -isystem /opt/php/debug/include/php/Zend -isystem /opt/php/debug/include/php/ext -isystem /opt/php/debug/include/php/ext/date/lib -isystem /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2/install/include/libxml2 -g -fPIC -fvisibility=hidden -Wall -Wextra -pedantic -Werror -Wno-nullability-extension -Wno-gnu-zero-variadic-macro-arguments -Wno-gnu-auto-type -Wno-language-extension-token -ftls-model=local-dynamic -fprofile-instr-generate -fcoverage-mapping -mllvm -runtime-counter-relocation=true -std=gnu11 -MD -MT CMakeFiles/extension.dir/src/extension/commands_helpers.c.o -MF CMakeFiles/extension.dir/src/extension/commands_helpers.c.o.d -o CMakeFiles/extension.dir/src/extension/commands_helpers.c.o -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/commands_helpers.c -2026-04-08T17:58:22.353508Z 01O Copying zend_abstract_interface/hook/table.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/hook/table.h -2026-04-08T17:58:22.353515Z 01O Copying zend_abstract_interface/interceptor/php7/interceptor.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/interceptor/php7/interceptor.c -2026-04-08T17:58:22.353540Z 01O Copying zend_abstract_interface/interceptor/php7/interceptor.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/interceptor/php7/interceptor.h -2026-04-08T17:58:22.353555Z 01O Copying zend_abstract_interface/interceptor/php7/resolver.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/interceptor/php7/resolver.c -2026-04-08T17:58:22.353568Z 01O Copying zend_abstract_interface/interceptor/php8/interceptor.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/interceptor/php8/interceptor.c -2026-04-08T17:58:22.353589Z 01O Copying zend_abstract_interface/interceptor/php8/interceptor.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/interceptor/php8/interceptor.h -2026-04-08T17:58:22.353600Z 01O Copying zend_abstract_interface/interceptor/php8/resolver.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/interceptor/php8/resolver.c -2026-04-08T17:58:22.353607Z 01O Copying zend_abstract_interface/interceptor/php8/resolver_pre-8_2.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/interceptor/php8/resolver_pre-8_2.c -2026-04-08T17:58:22.353632Z 01O Copying zend_abstract_interface/jit_utils/is_mapped.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/jit_utils/is_mapped.h -2026-04-08T17:58:22.353646Z 01O Copying zend_abstract_interface/jit_utils/jit_blacklist.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/jit_utils/jit_blacklist.c -2026-04-08T17:58:22.353653Z 01O Copying zend_abstract_interface/jit_utils/jit_blacklist.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/jit_utils/jit_blacklist.h -2026-04-08T17:58:22.353662Z 01O Copying zend_abstract_interface/json/json.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/json/json.c -2026-04-08T17:58:22.353666Z 01O Copying zend_abstract_interface/json/json.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/json/json.h -2026-04-08T17:58:22.353671Z 01O Copying zend_abstract_interface/sandbox/call.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/sandbox/call.c -2026-04-08T17:58:22.353681Z 01O Copying zend_abstract_interface/sandbox/php7/sandbox.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/sandbox/php7/sandbox.c -2026-04-08T17:58:22.353685Z 01O Copying zend_abstract_interface/sandbox/php8/sandbox.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/sandbox/php8/sandbox.c -2026-04-08T17:58:22.353691Z 01O Copying zend_abstract_interface/sandbox/sandbox.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/sandbox/sandbox.h -2026-04-08T17:58:22.353704Z 01O Copying zend_abstract_interface/tsrmls_cache.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/tsrmls_cache.h -2026-04-08T17:58:22.353709Z 01O [ 53%] Building C object CMakeFiles/extension.dir/src/extension/configuration.c.o -2026-04-08T17:58:22.353761Z 01O /usr/bin/clang-19 -DMPACK_BUFFER_SIZE=32 -DMPACK_DEBUG=1 -DMPACK_HAS_CONFIG=1 -DRAPIDJSON_HAS_STDSTRING=1 -DTESTING=1 -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -D_GNU_SOURCE -Dextension_EXPORTS -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/../../ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/../src/extension/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/rapidjson-src/include -isystem /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/../zend_abstract_interface -isystem /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/ext_root_includes -isystem /opt/php/debug/include/php -isystem /opt/php/debug/include/php/main -isystem /opt/php/debug/include/php/TSRM -isystem /opt/php/debug/include/php/Zend -isystem /opt/php/debug/include/php/ext -isystem /opt/php/debug/include/php/ext/date/lib -isystem /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2/install/include/libxml2 -g -fPIC -fvisibility=hidden -Wall -Wextra -pedantic -Werror -Wno-nullability-extension -Wno-gnu-zero-variadic-macro-arguments -Wno-gnu-auto-type -Wno-language-extension-token -ftls-model=local-dynamic -fprofile-instr-generate -fcoverage-mapping -mllvm -runtime-counter-relocation=true -std=gnu11 -MD -MT CMakeFiles/extension.dir/src/extension/configuration.c.o -MF CMakeFiles/extension.dir/src/extension/configuration.c.o.d -o CMakeFiles/extension.dir/src/extension/configuration.c.o -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/configuration.c -2026-04-08T17:58:22.353776Z 01O [ 53%] Building C object CMakeFiles/extension.dir/src/extension/ddappsec.c.o -2026-04-08T17:58:22.353818Z 01O /usr/bin/clang-19 -DMPACK_BUFFER_SIZE=32 -DMPACK_DEBUG=1 -DMPACK_HAS_CONFIG=1 -DRAPIDJSON_HAS_STDSTRING=1 -DTESTING=1 -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -D_GNU_SOURCE -Dextension_EXPORTS -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/../../ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/../src/extension/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/rapidjson-src/include -isystem /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/../zend_abstract_interface -isystem /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/ext_root_includes -isystem /opt/php/debug/include/php -isystem /opt/php/debug/include/php/main -isystem /opt/php/debug/include/php/TSRM -isystem /opt/php/debug/include/php/Zend -isystem /opt/php/debug/include/php/ext -isystem /opt/php/debug/include/php/ext/date/lib -isystem /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/libxml2/install/include/libxml2 -g -fPIC -fvisibility=hidden -Wall -Wextra -pedantic -Werror -Wno-nullability-extension -Wno-gnu-zero-variadic-macro-arguments -Wno-gnu-auto-type -Wno-language-extension-token -ftls-model=local-dynamic -fprofile-instr-generate -fcoverage-mapping -mllvm -runtime-counter-relocation=true -std=gnu11 -MD -MT CMakeFiles/extension.dir/src/extension/ddappsec.c.o -MF CMakeFiles/extension.dir/src/extension/ddappsec.c.o.d -o CMakeFiles/extension.dir/src/extension/ddappsec.c.o -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/ddappsec.c -2026-04-08T17:58:22.353832Z 01O Copying zend_abstract_interface/uri_normalization/uri_normalization.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/uri_normalization/uri_normalization.c -2026-04-08T17:58:22.353838Z 01O Copying zend_abstract_interface/uri_normalization/uri_normalization.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/uri_normalization/uri_normalization.h -2026-04-08T17:58:22.353846Z 01O Copying zend_abstract_interface/zai_assert/zai_assert.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/zai_assert/zai_assert.h -2026-04-08T17:58:22.353873Z 01O Copying zend_abstract_interface/zai_string/string.c to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/zai_string/string.c -2026-04-08T17:58:22.853753Z 01O Copying zend_abstract_interface/zai_string/string.h to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/zai_string/string.h -2026-04-08T17:58:22.853765Z 01O Copying Cargo.toml to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/Cargo.toml -2026-04-08T17:58:22.853775Z 01O sed -i -E 's/, "profiling",?//' /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/Cargo.toml -2026-04-08T17:58:22.853799Z 01O Copying Cargo.lock to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/Cargo.lock -2026-04-08T17:58:22.853814Z 01O Copying components-rs/Cargo.toml to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/Cargo.toml -2026-04-08T17:58:22.853822Z 01O sed -i -E 's/"\.\.\/([^"]*)"/"..\/..\/..\/\1"/' /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/Cargo.toml -2026-04-08T17:58:22.853842Z 01O Copying components-rs/bytes.rs to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/bytes.rs -2026-04-08T17:58:22.853855Z 01O Copying components-rs/lib.rs to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/lib.rs -2026-04-08T17:58:22.853862Z 01O Copying components-rs/log.rs to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/log.rs -2026-04-08T17:58:22.853888Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/configuration.c:60:1: error: passing no argument for the '...' parameter of a variadic macro is a C23 extension [-Werror,-Wc23-extensions] -2026-04-08T17:58:22.853901Z 01O 60 | DD_CONFIGURATION -2026-04-08T17:58:22.853905Z 01O | ^ -2026-04-08T17:58:22.853912Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/configuration.h:78:5: note: expanded from macro 'DD_CONFIGURATION' -2026-04-08T17:58:22.853915Z 01O 78 | DD_CONFIGURATION_GENERAL \ -2026-04-08T17:58:22.853919Z 01O | ^ -2026-04-08T17:58:22.853925Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/configuration.h:68:12: note: expanded from macro 'DD_CONFIGURATION_GENERAL' -2026-04-08T17:58:22.853929Z 01O 68 | CALIASES("DD_APPSEC_AUTOMATED_USER_EVENTS_TRACKING"), .parser = dd_parse_user_collection_mode) \ -2026-04-08T17:58:22.853934Z 01O | ^ -2026-04-08T17:58:22.853941Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/configuration.c:55:23: note: expanded from macro 'CALIASES' -2026-04-08T17:58:22.853944Z 01O 55 | #define CALIASES(...) APPLY_N(ELEMENT, ##__VA_ARGS__) -2026-04-08T17:58:22.853947Z 01O | ^ -2026-04-08T17:58:22.853953Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/configuration.c:32:26: note: expanded from macro 'APPLY_N' -2026-04-08T17:58:22.853957Z 01O 32 | (macro, ##__VA_ARGS__) -2026-04-08T17:58:22.853960Z 01O | ^ -2026-04-08T17:58:22.853975Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/configuration.c:23:9: note: macro 'APPLY_1' defined here -2026-04-08T17:58:22.853987Z 01O 23 | #define APPLY_1(macro, arg, ...) macro(arg) -2026-04-08T17:58:22.853994Z 01O | ^ -2026-04-08T17:58:22.854003Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/configuration.c:70:1: error: passing no argument for the '...' parameter of a variadic macro is a C23 extension [-Werror,-Wc23-extensions] -2026-04-08T17:58:22.854006Z 01O 70 | DD_CONFIGURATION -2026-04-08T17:58:22.854009Z 01O | ^ -2026-04-08T17:58:22.854059Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/configuration.h:78:5: note: expanded from macro 'DD_CONFIGURATION' -2026-04-08T17:58:22.854106Z 01O 78 | DD_CONFIGURATION_GENERAL \ -2026-04-08T17:58:22.854111Z 01O | ^ -2026-04-08T17:58:22.854136Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/configuration.h:68:12: note: expanded from macro 'DD_CONFIGURATION_GENERAL' -2026-04-08T17:58:22.854140Z 01O 68 | CALIASES("DD_APPSEC_AUTOMATED_USER_EVENTS_TRACKING"), .parser = dd_parse_user_collection_mode) \ -2026-04-08T17:58:22.854145Z 01O | ^ -2026-04-08T17:58:22.854153Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/configuration.c:68:23: note: expanded from macro 'CALIASES' -2026-04-08T17:58:22.854158Z 01O 68 | #define CALIASES(...) APPLY_N(CALIAS_CHECK_LENGTH, ##__VA_ARGS__) -2026-04-08T17:58:22.854163Z 01O | ^ -2026-04-08T17:58:22.854169Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/configuration.c:32:26: note: expanded from macro 'APPLY_N' -2026-04-08T17:58:22.854172Z 01O 32 | (macro, ##__VA_ARGS__) -2026-04-08T17:58:22.854176Z 01O | ^ -2026-04-08T17:58:22.854182Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/configuration.c:23:9: note: macro 'APPLY_1' defined here -2026-04-08T17:58:22.854185Z 01O 23 | #define APPLY_1(macro, arg, ...) macro(arg) -2026-04-08T17:58:22.854188Z 01O | ^ -2026-04-08T17:58:22.854196Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/configuration.c:102:45: error: passing no argument for the '...' parameter of a variadic macro is a C23 extension [-Werror,-Wc23-extensions] -2026-04-08T17:58:22.854200Z 01O 102 | static zai_config_entry config_entries[] = {DD_CONFIGURATION}; -2026-04-08T17:58:22.854203Z 01O | ^ -2026-04-08T17:58:22.854210Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/configuration.h:78:5: note: expanded from macro 'DD_CONFIGURATION' -2026-04-08T17:58:22.854213Z 01O 78 | DD_CONFIGURATION_GENERAL \ -2026-04-08T17:58:22.854217Z 01O | ^ -2026-04-08T17:58:22.854223Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/configuration.h:68:12: note: expanded from macro 'DD_CONFIGURATION_GENERAL' -2026-04-08T17:58:22.854227Z 01O 68 | CALIASES("DD_APPSEC_AUTOMATED_USER_EVENTS_TRACKING"), .parser = dd_parse_user_collection_mode) \ -2026-04-08T17:58:22.854231Z 01O | ^ -2026-04-08T17:58:22.854236Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/configuration.c:97:36: note: expanded from macro 'CALIASES' -2026-04-08T17:58:22.854240Z 01O 97 | #define CALIASES(...) ((zai_str[]){APPLY_N(CALIAS_EXPAND, ##__VA_ARGS__)}) -2026-04-08T17:58:22.854243Z 01O | ^ -2026-04-08T17:58:22.854249Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/configuration.c:32:26: note: expanded from macro 'APPLY_N' -2026-04-08T17:58:22.854252Z 01O 32 | (macro, ##__VA_ARGS__) -2026-04-08T17:58:22.854256Z 01O | ^ -2026-04-08T17:58:22.854264Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/configuration.c:23:9: note: macro 'APPLY_1' defined here -2026-04-08T17:58:22.854267Z 01O 23 | #define APPLY_1(macro, arg, ...) macro(arg) -2026-04-08T17:58:22.854270Z 01O | ^ -2026-04-08T17:58:22.854278Z 01O Copying components-rs/php_sidecar_mockgen/Cargo.toml to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/php_sidecar_mockgen/Cargo.toml -2026-04-08T17:58:22.854282Z 01O 3 errors generated. -2026-04-08T17:58:22.854287Z 01O sed -i -E 's/"\.\.\/([^"]*)"/"..\/..\/..\/\1"/' /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/php_sidecar_mockgen/Cargo.toml -2026-04-08T17:58:22.854322Z 01O make[3]: *** [CMakeFiles/extension.dir/build.make:174: CMakeFiles/extension.dir/src/extension/configuration.c.o] Error 1 -2026-04-08T17:58:22.854328Z 01O make[3]: *** Waiting for unfinished jobs.... -2026-04-08T17:58:22.854337Z 01O Copying components-rs/php_sidecar_mockgen/src/bin/php_sidecar_mockgen.rs to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/php_sidecar_mockgen/src/bin/php_sidecar_mockgen.rs -2026-04-08T17:58:22.854342Z 01O Copying components-rs/remote_config.rs to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/remote_config.rs -2026-04-08T17:58:22.854347Z 01O Copying components-rs/sidecar.rs to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/sidecar.rs -2026-04-08T17:58:22.854354Z 01O make[3]: Leaving directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' -2026-04-08T17:58:22.854357Z 01O make[2]: *** [CMakeFiles/Makefile2:449: CMakeFiles/extension.dir/all] Error 2 -2026-04-08T17:58:22.854361Z 01O make[2]: *** Waiting for unfinished jobs.... -2026-04-08T17:58:22.854368Z 01O Copying components-rs/telemetry.rs to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/telemetry.rs -2026-04-08T17:58:22.854372Z 01O Copying m4/ax_execinfo.m4 to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/m4/ax_execinfo.m4 -2026-04-08T17:58:22.854377Z 01O Copying m4/polyfill.m4 to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/m4/polyfill.m4 -2026-04-08T17:58:22.854384Z 01O Copying m4/threads.m4 to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/m4/threads.m4 -2026-04-08T17:58:22.854389Z 01O Copying config.m4 to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/config.m4 -2026-04-08T17:58:22.854394Z 01O Copying ddtrace.sym to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ddtrace.sym -2026-04-08T17:58:22.854400Z 01O Copying VERSION to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/VERSION -2026-04-08T17:58:23.354430Z 01O Configuring for: -2026-04-08T17:58:23.354438Z 01O PHP Api Version: 20230831 -2026-04-08T17:58:23.354442Z 01O Zend Module Api No: 20230831 -2026-04-08T17:58:23.354448Z 01O Zend Extension Api No: 420230831 -2026-04-08T17:58:23.855193Z 01O [ 53%] Linking CXX static library libspdlogd.a -2026-04-08T17:58:23.855252Z 01O cd /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/spdlog-build && /opt/cmake/3.24.4/bin/cmake -P CMakeFiles/spdlog.dir/cmake_clean_target.cmake -2026-04-08T17:58:23.855264Z 01O cd /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/_deps/spdlog-build && /opt/cmake/3.24.4/bin/cmake -E cmake_link_script CMakeFiles/spdlog.dir/link.txt --verbose=1 -2026-04-08T17:58:23.855275Z 01O /usr/bin/llvm-ar-19 qc libspdlogd.a CMakeFiles/spdlog.dir/src/spdlog.cpp.o CMakeFiles/spdlog.dir/src/stdout_sinks.cpp.o CMakeFiles/spdlog.dir/src/color_sinks.cpp.o CMakeFiles/spdlog.dir/src/file_sinks.cpp.o CMakeFiles/spdlog.dir/src/async.cpp.o CMakeFiles/spdlog.dir/src/cfg.cpp.o CMakeFiles/spdlog.dir/src/bundled_fmtlib_format.cpp.o -2026-04-08T17:58:23.855280Z 01O /usr/bin/llvm-ranlib-19 libspdlogd.a -2026-04-08T17:58:23.855286Z 01O make[3]: Leaving directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' -2026-04-08T17:58:23.855294Z 01O [ 53%] Built target spdlog -2026-04-08T17:58:23.855300Z 01O checking for grep that handles long lines and -e... /usr/bin/grep -2026-04-08T17:58:23.855428Z 01O checking for egrep... /usr/bin/grep -E -2026-04-08T17:58:23.855448Z 01O checking for a sed that does not truncate output... /usr/bin/sed -2026-04-08T17:58:23.855457Z 01O checking for pkg-config... /usr/bin/pkg-config -2026-04-08T17:58:23.855473Z 01O checking pkg-config is at least version 0.9.0... yes -2026-04-08T17:58:23.855481Z 01O checking for cc... cc -2026-04-08T17:58:23.855524Z 01O checking whether the C compiler works... yes -2026-04-08T17:58:24.355406Z 01O checking for C compiler default output file name... a.out -2026-04-08T17:58:24.355412Z 01O checking for suffix of executables... -2026-04-08T17:58:24.355419Z 01O checking whether we are cross compiling... no -2026-04-08T17:58:24.355421Z 01O checking for suffix of object files... o -2026-04-08T17:58:24.355425Z 01O checking whether the compiler supports GNU C... yes -2026-04-08T17:58:24.355431Z 01O checking whether cc accepts -g... yes -2026-04-08T17:58:24.355433Z 01O checking for cc option to enable C11 features... none needed -2026-04-08T17:58:24.355438Z 01O checking how to run the C preprocessor... cc -E -2026-04-08T17:58:24.856196Z 01O checking for icc... no -2026-04-08T17:58:24.856211Z 01O checking for suncc... no -2026-04-08T17:58:24.856218Z 01O checking for system library directory... lib -2026-04-08T17:58:24.856221Z 01O checking if compiler supports -Wl,-rpath,... yes -2026-04-08T17:58:24.856226Z 01O checking build system type... x86_64-pc-linux-gnu -2026-04-08T17:58:24.856231Z 01O checking host system type... x86_64-pc-linux-gnu -2026-04-08T17:58:24.856236Z 01O checking target system type... x86_64-pc-linux-gnu -2026-04-08T17:58:24.856241Z 01O checking for PHP prefix... /opt/php/debug -2026-04-08T17:58:24.856250Z 01O checking for PHP includes... -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -2026-04-08T17:58:24.856255Z 01O checking for PHP extension directory... /opt/php/debug/lib/php/extensions/debug-non-zts-20230831 -2026-04-08T17:58:24.856259Z 01O checking for PHP installed headers prefix... /opt/php/debug/include/php -2026-04-08T17:58:24.856265Z 01O checking if debug is enabled... yes -2026-04-08T17:58:24.856268Z 01O checking if zts is enabled... no -2026-04-08T17:58:24.856271Z 01O checking for gawk... no -2026-04-08T17:58:24.856276Z 01O checking for nawk... nawk -2026-04-08T17:58:24.856279Z 01O checking if nawk is broken... no -2026-04-08T17:58:24.856283Z 01O checking whether to enable Datadog tracing support... yes, shared -2026-04-08T17:58:24.856312Z 01O checking whether to enable AddressSanitizer for ddtrace... no -2026-04-08T17:58:24.856325Z 01O checking the rust library is located; i.e. to compile without cargo... - -2026-04-08T17:58:24.856331Z 01O checking binary to generate mock_php.c... - -2026-04-08T17:58:24.856342Z 01O checking where cargo is located for rust code compilation... cargo -2026-04-08T17:58:25.359773Z 01O checking whether to compile rust in debug mode... no -2026-04-08T17:58:25.359793Z 01O checking whether to not link the rust library against the extension at compile time... no -2026-04-08T17:58:25.359799Z 01O checking for stdio.h... yes -2026-04-08T17:58:25.359804Z 01O checking for stdlib.h... yes -2026-04-08T17:58:25.359807Z 01O checking for string.h... yes -2026-04-08T17:58:25.359811Z 01O checking for inttypes.h... yes -2026-04-08T17:58:25.359816Z 01O checking for stdint.h... yes -2026-04-08T17:58:25.359818Z 01O checking for strings.h... yes -2026-04-08T17:58:25.359822Z 01O checking for sys/stat.h... yes -2026-04-08T17:58:25.359826Z 01O checking for sys/types.h... yes -2026-04-08T17:58:25.359829Z 01O checking for unistd.h... yes -2026-04-08T17:58:25.359833Z 01O checking size of long... 8 -2026-04-08T17:58:25.858340Z 01O checking for 64-bit platform... yes -2026-04-08T17:58:25.858347Z 01O checking for execinfo.h... yes -2026-04-08T17:58:25.858352Z 01O checking size parameter type for backtrace()... int -2026-04-08T17:58:25.858355Z 01O checking for library containing backtrace... none required -2026-04-08T17:58:25.858359Z 01O checking for backtrace in -lexecinfo... no -2026-04-08T17:58:25.858365Z 01O checking for linux/securebits.h... yes -2026-04-08T17:58:25.858367Z 01O checking for linux/capability.h... yes -2026-04-08T17:58:26.359179Z 01O checking for valgrind/valgrind.h... yes -2026-04-08T17:58:26.359187Z 01O checking for objdir... .libs -2026-04-08T17:58:26.359250Z 01O checking for cargo... cargo -2026-04-08T17:58:26.359263Z 01O checking for automake... automake -2026-04-08T17:58:26.359268Z 01O checking for libtool... no -2026-04-08T17:58:26.359291Z 01O checking for libtoolize... libtoolize -2026-04-08T17:58:26.359304Z 01O checking whether --undefined-version is a valid linker argument... checking for a sed that does not truncate output... /usr/bin/sed -2026-04-08T17:58:26.359317Z 01O checking whether --undefined-version is a valid linker argument... yes -2026-04-08T17:58:26.359333Z 01O checking whether -Wno-microsoft-anon-tag is a valid compiler argument... yes -2026-04-08T17:58:26.359343Z 01O checking for cos in -lm... yes -2026-04-08T17:58:26.859381Z 01O checking for pthreads_cflags... -pthread -2026-04-08T17:58:26.859387Z 01O checking for pthreads_lib... pthread -2026-04-08T17:58:26.859432Z 01O checking for shm_open in -lrt... yes -2026-04-08T17:58:26.859445Z 01O checking for curl_easy_setopt in -lcurl... yes -2026-04-08T17:58:26.859452Z 01O checking for time.h... yes -2026-04-08T17:58:27.360237Z 01O checking for ld used by cc... /usr/bin/ld -2026-04-08T17:58:27.360247Z 01O checking if the linker (/usr/bin/ld) is GNU ld... yes -2026-04-08T17:58:27.360251Z 01O checking for /usr/bin/ld option to reload object files... -r -2026-04-08T17:58:27.360256Z 01O checking for BSD-compatible nm... /usr/bin/nm -B -2026-04-08T17:58:27.360259Z 01O checking whether ln -s works... yes -2026-04-08T17:58:27.360263Z 01O checking how to recognize dependent libraries... pass_all -2026-04-08T17:58:27.360272Z 01O checking for dlfcn.h... yes -2026-04-08T17:58:27.360284Z 01O checking the maximum length of command line arguments... 1572864 -2026-04-08T17:58:27.860591Z 01O checking command to parse /usr/bin/nm -B output from cc object... ok -2026-04-08T17:58:27.860605Z 01O checking for objdir... (cached) .libs -2026-04-08T17:58:27.860611Z 01O checking for ar... ar -2026-04-08T17:58:27.860614Z 01O checking for ranlib... ranlib -2026-04-08T17:58:27.860617Z 01O checking for strip... strip -2026-04-08T17:58:27.860622Z 01O checking if cc supports -fno-rtti -fno-exceptions... yes -2026-04-08T17:58:27.860625Z 01O checking for cc option to produce PIC... -fPIC -2026-04-08T17:58:27.860629Z 01O checking if cc PIC flag -fPIC works... yes -2026-04-08T17:58:27.860639Z 01O checking if cc static flag -static works... yes -2026-04-08T17:58:28.361206Z 01O checking if cc supports -c -o file.o... yes -2026-04-08T17:58:28.361215Z 01O checking whether the cc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes -2026-04-08T17:58:28.361223Z 01O checking whether -lc should be explicitly linked in... no -2026-04-08T17:58:28.361225Z 01O checking dynamic linker characteristics... GNU/Linux ld.so -2026-04-08T17:58:28.361230Z 01O checking how to hardcode library paths into programs... immediate -2026-04-08T17:58:28.361235Z 01O checking whether stripping libraries is possible... yes -2026-04-08T17:58:28.361238Z 01O checking if libtool supports shared libraries... yes -2026-04-08T17:58:28.361242Z 01O checking whether to build shared libraries... yes -2026-04-08T17:58:28.361247Z 01O checking whether to build static libraries... no -2026-04-08T17:58:28.862896Z 01O -2026-04-08T17:58:28.862929Z 01O creating libtool -2026-04-08T17:58:28.862937Z 01O appending configuration tag "CXX" to libtool -2026-04-08T17:58:28.862944Z 01O configure: patching config.h.in -2026-04-08T17:58:28.862955Z 01O configure: creating ./config.status -2026-04-08T17:58:28.862960Z 01O config.status: creating config.h -2026-04-08T17:58:28.862967Z 01O Copying compile_rust.sh to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/compile_rust.sh -2026-04-08T17:58:29.362677Z 01O make[5]: Entering directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension' -2026-04-08T17:58:29.362692Z 01O (cd "/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension"; CARGO_TARGET_DIR=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/target/ SHARED=1 PROFILE="tracer-release" host_os="linux-gnu" DDTRACE_CARGO="cargo" sh ./compile_rust.sh ) -2026-04-08T17:58:29.362762Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components/container_id/container_id.c -o components/container_id/container_id.lo -MMD -MF components/container_id/container_id.dep -MT components/container_id/container_id.lo -2026-04-08T17:58:29.362798Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components/log/log.c -o components/log/log.lo -MMD -MF components/log/log.dep -MT components/log/log.lo -2026-04-08T17:58:29.362834Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components/sapi/sapi.c -o components/sapi/sapi.lo -MMD -MF components/sapi/sapi.dep -MT components/sapi/sapi.lo -2026-04-08T17:58:29.362876Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components/string_view/string_view.c -o components/string_view/string_view.lo -MMD -MF components/string_view/string_view.dep -MT components/string_view/string_view.lo -2026-04-08T17:58:29.362912Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/interceptor/php8/interceptor.c -o zend_abstract_interface/interceptor/php8/interceptor.lo -MMD -MF zend_abstract_interface/interceptor/php8/interceptor.dep -MT zend_abstract_interface/interceptor/php8/interceptor.lo -2026-04-08T17:58:29.362951Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/interceptor/php8/resolver.c -o zend_abstract_interface/interceptor/php8/resolver.lo -MMD -MF zend_abstract_interface/interceptor/php8/resolver.dep -MT zend_abstract_interface/interceptor/php8/resolver.lo -2026-04-08T17:58:29.362989Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/jit_utils/jit_blacklist.c -o zend_abstract_interface/jit_utils/jit_blacklist.lo -MMD -MF zend_abstract_interface/jit_utils/jit_blacklist.dep -MT zend_abstract_interface/jit_utils/jit_blacklist.lo -2026-04-08T17:58:29.363006Z 01O + test -n -2026-04-08T17:58:29.363045Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/sandbox/php8/sandbox.c -o zend_abstract_interface/sandbox/php8/sandbox.lo -MMD -MF zend_abstract_interface/sandbox/php8/sandbox.dep -MT zend_abstract_interface/sandbox/php8/sandbox.lo -2026-04-08T17:58:29.363068Z 01O + test tracer-release = debug -2026-04-08T17:58:29.363073Z 01O + echo --profile tracer-release -2026-04-08T17:58:29.363105Z 01O + cat ../VERSION -2026-04-08T17:58:29.363136Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/config.c -o zend_abstract_interface/config/config.lo -MMD -MF zend_abstract_interface/config/config.dep -MT zend_abstract_interface/config/config.lo -2026-04-08T17:58:29.363209Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/config_decode.c -o zend_abstract_interface/config/config_decode.lo -MMD -MF zend_abstract_interface/config/config_decode.dep -MT zend_abstract_interface/config/config_decode.lo -2026-04-08T17:58:29.363246Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/config_ini.c -o zend_abstract_interface/config/config_ini.lo -MMD -MF zend_abstract_interface/config/config_ini.dep -MT zend_abstract_interface/config/config_ini.lo -2026-04-08T17:58:29.363270Z 01O + SIDECAR_VERSION=1.17.1 RUSTFLAGS= --cfg tokio_unstable --cfg php_shared_build RUSTC_BOOTSTRAP=1 cargo build --profile tracer-release -2026-04-08T17:58:29.363314Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/config_stable_file.c -o zend_abstract_interface/config/config_stable_file.lo -MMD -MF zend_abstract_interface/config/config_stable_file.dep -MT zend_abstract_interface/config/config_stable_file.lo -2026-04-08T17:58:29.363358Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/config_runtime.c -o zend_abstract_interface/config/config_runtime.lo -MMD -MF zend_abstract_interface/config/config_runtime.dep -MT zend_abstract_interface/config/config_runtime.lo -2026-04-08T17:58:29.363415Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/env/env.c -o zend_abstract_interface/env/env.lo -MMD -MF zend_abstract_interface/env/env.dep -MT zend_abstract_interface/env/env.lo -2026-04-08T17:58:29.363454Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/exceptions/exceptions.c -o zend_abstract_interface/exceptions/exceptions.lo -MMD -MF zend_abstract_interface/exceptions/exceptions.dep -MT zend_abstract_interface/exceptions/exceptions.lo -2026-04-08T17:58:29.363501Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/headers/headers.c -o zend_abstract_interface/headers/headers.lo -MMD -MF zend_abstract_interface/headers/headers.dep -MT zend_abstract_interface/headers/headers.lo -2026-04-08T17:58:29.363534Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/hook/hook.c -o zend_abstract_interface/hook/hook.lo -MMD -MF zend_abstract_interface/hook/hook.dep -MT zend_abstract_interface/hook/hook.lo -2026-04-08T17:58:29.363577Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/json/json.c -o zend_abstract_interface/json/json.lo -MMD -MF zend_abstract_interface/json/json.dep -MT zend_abstract_interface/json/json.lo -2026-04-08T17:58:29.363609Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/sandbox/call.c -o zend_abstract_interface/sandbox/call.lo -MMD -MF zend_abstract_interface/sandbox/call.dep -MT zend_abstract_interface/sandbox/call.lo -2026-04-08T17:58:29.363651Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/uri_normalization/uri_normalization.c -o zend_abstract_interface/uri_normalization/uri_normalization.lo -MMD -MF zend_abstract_interface/uri_normalization/uri_normalization.dep -MT zend_abstract_interface/uri_normalization/uri_normalization.lo -2026-04-08T17:58:29.363689Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/zai_string/string.c -o zend_abstract_interface/zai_string/string.lo -MMD -MF zend_abstract_interface/zai_string/string.dep -MT zend_abstract_interface/zai_string/string.lo -2026-04-08T17:58:29.363729Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack/mpack.c -o ext/vendor/mpack/mpack.lo -MMD -MF ext/vendor/mpack/mpack.dep -MT ext/vendor/mpack/mpack.lo -2026-04-08T17:58:29.363769Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937/mt19937-64.c -o ext/vendor/mt19937/mt19937-64.lo -MMD -MF ext/vendor/mt19937/mt19937-64.dep -MT ext/vendor/mt19937/mt19937-64.lo -2026-04-08T17:58:29.363813Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd/client.c -o src/dogstatsd/client.lo -MMD -MF src/dogstatsd/client.dep -MT src/dogstatsd/client.lo -2026-04-08T17:58:29.363875Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_curl.c -o ext/handlers_curl.lo -MMD -MF ext/handlers_curl.dep -MT ext/handlers_curl.lo -2026-04-08T17:58:29.363922Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/hook/uhook_attributes.c -o ext/hook/uhook_attributes.lo -MMD -MF ext/hook/uhook_attributes.dep -MT ext/hook/uhook_attributes.lo -2026-04-08T17:58:29.363958Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/hook/uhook_otel.c -o ext/hook/uhook_otel.lo -MMD -MF ext/hook/uhook_otel.dep -MT ext/hook/uhook_otel.lo -2026-04-08T17:58:29.363998Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_fiber.c -o ext/handlers_fiber.lo -MMD -MF ext/handlers_fiber.dep -MT ext/handlers_fiber.lo -2026-04-08T17:58:29.364053Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/ddtrace.c -o ext/ddtrace.lo -MMD -MF ext/ddtrace.dep -MT ext/ddtrace.lo -2026-04-08T17:58:29.364107Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/agent_info.c -o ext/agent_info.lo -MMD -MF ext/agent_info.dep -MT ext/agent_info.lo -2026-04-08T17:58:29.364142Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/asm_event.c -o ext/asm_event.lo -MMD -MF ext/asm_event.dep -MT ext/asm_event.lo -2026-04-08T17:58:29.364182Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/arrays.c -o ext/arrays.lo -MMD -MF ext/arrays.dep -MT ext/arrays.lo -2026-04-08T17:58:29.364218Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/auto_flush.c -o ext/auto_flush.lo -MMD -MF ext/auto_flush.dep -MT ext/auto_flush.lo -2026-04-08T17:58:29.364267Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/autoload_php_files.c -o ext/autoload_php_files.lo -MMD -MF ext/autoload_php_files.dep -MT ext/autoload_php_files.lo -2026-04-08T17:58:29.364306Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/code_origins.c -o ext/code_origins.lo -MMD -MF ext/code_origins.dep -MT ext/code_origins.lo -2026-04-08T17:58:29.364364Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/collect_backtrace.c -o ext/collect_backtrace.lo -MMD -MF ext/collect_backtrace.dep -MT ext/collect_backtrace.lo -2026-04-08T17:58:29.364405Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/comms_php.c -o ext/comms_php.lo -MMD -MF ext/comms_php.dep -MT ext/comms_php.lo -2026-04-08T17:58:29.364442Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/compat_string.c -o ext/compat_string.lo -MMD -MF ext/compat_string.dep -MT ext/compat_string.lo -2026-04-08T17:58:29.364484Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/coms.c -o ext/coms.lo -MMD -MF ext/coms.dep -MT ext/coms.lo -2026-04-08T17:58:29.364519Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/configuration.c -o ext/configuration.lo -MMD -MF ext/configuration.dep -MT ext/configuration.lo -2026-04-08T17:58:29.364577Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/crashtracking_frames.c -o ext/crashtracking_frames.lo -MMD -MF ext/crashtracking_frames.dep -MT ext/crashtracking_frames.lo -2026-04-08T17:58:29.364598Z 01O warning: /go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-crashtracker-ffi/Cargo.toml: unused manifest key: target.cfg(windows).features -2026-04-08T17:58:29.364631Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/ddshared.c -o ext/ddshared.lo -MMD -MF ext/ddshared.dep -MT ext/ddshared.lo -2026-04-08T17:58:29.364678Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/distributed_tracing_headers.c -o ext/distributed_tracing_headers.lo -MMD -MF ext/distributed_tracing_headers.dep -MT ext/distributed_tracing_headers.lo -2026-04-08T17:58:29.364714Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/dogstatsd.c -o ext/dogstatsd.lo -MMD -MF ext/dogstatsd.dep -MT ext/dogstatsd.lo -2026-04-08T17:58:29.364767Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/dogstatsd_client.c -o ext/dogstatsd_client.lo -MMD -MF ext/dogstatsd_client.dep -MT ext/dogstatsd_client.lo -2026-04-08T17:58:29.364810Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/endpoint_guessing.c -o ext/endpoint_guessing.lo -MMD -MF ext/endpoint_guessing.dep -MT ext/endpoint_guessing.lo -2026-04-08T17:58:29.364857Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/engine_api.c -o ext/engine_api.lo -MMD -MF ext/engine_api.dep -MT ext/engine_api.lo -2026-04-08T17:58:29.364897Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/engine_hooks.c -o ext/engine_hooks.lo -MMD -MF ext/engine_hooks.dep -MT ext/engine_hooks.lo -2026-04-08T17:58:29.364947Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/exception_serialize.c -o ext/exception_serialize.lo -MMD -MF ext/exception_serialize.dep -MT ext/exception_serialize.lo -2026-04-08T17:58:29.364988Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/excluded_modules.c -o ext/excluded_modules.lo -MMD -MF ext/excluded_modules.dep -MT ext/excluded_modules.lo -2026-04-08T17:58:29.365042Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/git.c -o ext/git.lo -MMD -MF ext/git.dep -MT ext/git.lo -2026-04-08T17:58:29.365085Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_api.c -o ext/handlers_api.lo -MMD -MF ext/handlers_api.dep -MT ext/handlers_api.lo -2026-04-08T17:58:29.365135Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_exception.c -o ext/handlers_exception.lo -MMD -MF ext/handlers_exception.dep -MT ext/handlers_exception.lo -2026-04-08T17:58:29.365174Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_httpstreams.c -o ext/handlers_httpstreams.lo -MMD -MF ext/handlers_httpstreams.dep -MT ext/handlers_httpstreams.lo -2026-04-08T17:58:29.365209Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_internal.c -o ext/handlers_internal.lo -MMD -MF ext/handlers_internal.dep -MT ext/handlers_internal.lo -2026-04-08T17:58:29.365259Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_kafka.c -o ext/handlers_kafka.lo -MMD -MF ext/handlers_kafka.dep -MT ext/handlers_kafka.lo -2026-04-08T17:58:29.365294Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_pcntl.c -o ext/handlers_pcntl.lo -MMD -MF ext/handlers_pcntl.dep -MT ext/handlers_pcntl.lo -2026-04-08T17:58:29.365346Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_signal.c -o ext/handlers_signal.lo -MMD -MF ext/handlers_signal.dep -MT ext/handlers_signal.lo -2026-04-08T17:58:29.365382Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/inferred_proxy_headers.c -o ext/inferred_proxy_headers.lo -MMD -MF ext/inferred_proxy_headers.dep -MT ext/inferred_proxy_headers.lo -2026-04-08T17:58:29.365441Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations/exec_integration.c -o ext/integrations/exec_integration.lo -MMD -MF ext/integrations/exec_integration.dep -MT ext/integrations/exec_integration.lo -2026-04-08T17:58:29.365483Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations/integrations.c -o ext/integrations/integrations.lo -MMD -MF ext/integrations/integrations.dep -MT ext/integrations/integrations.lo -2026-04-08T17:58:29.365532Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/ip_extraction.c -o ext/ip_extraction.lo -MMD -MF ext/ip_extraction.dep -MT ext/ip_extraction.lo -2026-04-08T17:58:29.365593Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/standalone_limiter.c -o ext/standalone_limiter.lo -MMD -MF ext/standalone_limiter.dep -MT ext/standalone_limiter.lo -2026-04-08T17:58:29.365665Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/live_debugger.c -o ext/live_debugger.lo -MMD -MF ext/live_debugger.dep -MT ext/live_debugger.lo -2026-04-08T17:58:29.365705Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/logging.c -o ext/logging.lo -MMD -MF ext/logging.dep -MT ext/logging.lo -2026-04-08T17:58:29.365747Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/limiter/limiter.c -o ext/limiter/limiter.lo -MMD -MF ext/limiter/limiter.dep -MT ext/limiter/limiter.lo -2026-04-08T17:58:29.365782Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/memory_limit.c -o ext/memory_limit.lo -MMD -MF ext/memory_limit.dep -MT ext/memory_limit.lo -2026-04-08T17:58:29.365835Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/otel_config.c -o ext/otel_config.lo -MMD -MF ext/otel_config.dep -MT ext/otel_config.lo -2026-04-08T17:58:29.365872Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/priority_sampling/priority_sampling.c -o ext/priority_sampling/priority_sampling.lo -MMD -MF ext/priority_sampling/priority_sampling.dep -MT ext/priority_sampling/priority_sampling.lo -2026-04-08T17:58:29.365915Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/process_tags.c -o ext/process_tags.lo -MMD -MF ext/process_tags.dep -MT ext/process_tags.lo -2026-04-08T17:58:29.365951Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/profiling.c -o ext/profiling.lo -MMD -MF ext/profiling.dep -MT ext/profiling.lo -2026-04-08T17:58:29.365989Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/random.c -o ext/random.lo -MMD -MF ext/random.dep -MT ext/random.lo -2026-04-08T17:58:29.366035Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/remote_config.c -o ext/remote_config.lo -MMD -MF ext/remote_config.dep -MT ext/remote_config.lo -2026-04-08T17:58:29.366077Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/serializer.c -o ext/serializer.lo -MMD -MF ext/serializer.dep -MT ext/serializer.lo -2026-04-08T17:58:29.366137Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/sidecar.c -o ext/sidecar.lo -MMD -MF ext/sidecar.dep -MT ext/sidecar.lo -2026-04-08T17:58:29.366173Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/signals.c -o ext/signals.lo -MMD -MF ext/signals.dep -MT ext/signals.lo -2026-04-08T17:58:29.366219Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/span.c -o ext/span.lo -MMD -MF ext/span.dep -MT ext/span.lo -2026-04-08T17:58:29.366256Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/startup_logging.c -o ext/startup_logging.lo -MMD -MF ext/startup_logging.dep -MT ext/startup_logging.lo -2026-04-08T17:58:29.366295Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/telemetry.c -o ext/telemetry.lo -MMD -MF ext/telemetry.dep -MT ext/telemetry.lo -2026-04-08T17:58:29.366333Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/threads.c -o ext/threads.lo -MMD -MF ext/threads.dep -MT ext/threads.lo -2026-04-08T17:58:29.366379Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/trace_source.c -o ext/trace_source.lo -MMD -MF ext/trace_source.dep -MT ext/trace_source.lo -2026-04-08T17:58:29.366419Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/tracer_tag_propagation/tracer_tag_propagation.c -o ext/tracer_tag_propagation/tracer_tag_propagation.lo -MMD -MF ext/tracer_tag_propagation/tracer_tag_propagation.dep -MT ext/tracer_tag_propagation/tracer_tag_propagation.lo -2026-04-08T17:58:29.366473Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/user_request.c -o ext/user_request.lo -MMD -MF ext/user_request.dep -MT ext/user_request.lo -2026-04-08T17:58:29.366508Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/weak_resources.c -o ext/weak_resources.lo -MMD -MF ext/weak_resources.dep -MT ext/weak_resources.lo -2026-04-08T17:58:29.366555Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/hook/uhook.c -o ext/hook/uhook.lo -MMD -MF ext/hook/uhook.dep -MT ext/hook/uhook.lo -2026-04-08T17:58:29.366592Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/hook/uhook_legacy.c -o ext/hook/uhook_legacy.lo -MMD -MF ext/hook/uhook_legacy.dep -MT ext/hook/uhook_legacy.lo -2026-04-08T17:58:29.366633Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/compat_getrandom.c -o ext/compat_getrandom.lo -MMD -MF ext/compat_getrandom.dep -MT ext/compat_getrandom.lo -2026-04-08T17:58:29.366650Z 01O make[5]: Circular //go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/mock_php.c <- //go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/mock_php.lo dependency dropped. -2026-04-08T17:58:29.366658Z 01O Updating crates.io index -2026-04-08T17:58:29.366661Z 01O mkdir zend_abstract_interface/interceptor/php8/.libs -2026-04-08T17:58:29.366687Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/interceptor/php8/resolver.c -MMD -MF zend_abstract_interface/interceptor/php8/resolver.dep -MT zend_abstract_interface/interceptor/php8/resolver.lo -fPIC -DPIC -o zend_abstract_interface/interceptor/php8/.libs/resolver.o -2026-04-08T17:58:29.864560Z 01O mkdir ext/vendor/mpack/.libs -2026-04-08T17:58:29.864601Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack/mpack.c -MMD -MF ext/vendor/mpack/mpack.dep -MT ext/vendor/mpack/mpack.lo -fPIC -DPIC -o ext/vendor/mpack/.libs/mpack.o -2026-04-08T17:58:29.864615Z 01O mkdir components/container_id/.libs -2026-04-08T17:58:29.864644Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components/container_id/container_id.c -MMD -MF components/container_id/container_id.dep -MT components/container_id/container_id.lo -fPIC -DPIC -o components/container_id/.libs/container_id.o -2026-04-08T17:58:29.864701Z 01O mkdir zend_abstract_interface/config/.libs -2026-04-08T17:58:29.864728Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/interceptor/php8/interceptor.c -MMD -MF zend_abstract_interface/interceptor/php8/interceptor.dep -MT zend_abstract_interface/interceptor/php8/interceptor.lo -fPIC -DPIC -o zend_abstract_interface/interceptor/php8/.libs/interceptor.o -2026-04-08T17:58:29.864740Z 01O mkdir ext/.libs -2026-04-08T17:58:29.864768Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/config_stable_file.c -MMD -MF zend_abstract_interface/config/config_stable_file.dep -MT zend_abstract_interface/config/config_stable_file.lo -fPIC -DPIC -o zend_abstract_interface/config/.libs/config_stable_file.o -2026-04-08T17:58:29.864787Z 01O mkdir components/sapi/.libs -2026-04-08T17:58:29.864792Z 01O mkdir zend_abstract_interface/exceptions/.libs -2026-04-08T17:58:29.864820Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components/sapi/sapi.c -MMD -MF components/sapi/sapi.dep -MT components/sapi/sapi.lo -fPIC -DPIC -o components/sapi/.libs/sapi.o -2026-04-08T17:58:29.864831Z 01O mkdir zend_abstract_interface/sandbox/php8/.libs -2026-04-08T17:58:29.864868Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_curl.c -MMD -MF ext/handlers_curl.dep -MT ext/handlers_curl.lo -fPIC -DPIC -o ext/.libs/handlers_curl.o -2026-04-08T17:58:29.864905Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/collect_backtrace.c -MMD -MF ext/collect_backtrace.dep -MT ext/collect_backtrace.lo -fPIC -DPIC -o ext/.libs/collect_backtrace.o -2026-04-08T17:58:29.864952Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/exceptions/exceptions.c -MMD -MF zend_abstract_interface/exceptions/exceptions.dep -MT zend_abstract_interface/exceptions/exceptions.lo -fPIC -DPIC -o zend_abstract_interface/exceptions/.libs/exceptions.o -2026-04-08T17:58:29.865001Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_fiber.c -MMD -MF ext/handlers_fiber.dep -MT ext/handlers_fiber.lo -fPIC -DPIC -o ext/.libs/handlers_fiber.o -2026-04-08T17:58:29.865090Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/sandbox/php8/sandbox.c -MMD -MF zend_abstract_interface/sandbox/php8/sandbox.dep -MT zend_abstract_interface/sandbox/php8/sandbox.lo -fPIC -DPIC -o zend_abstract_interface/sandbox/php8/.libs/sandbox.o -2026-04-08T17:58:29.865129Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/config_runtime.c -MMD -MF zend_abstract_interface/config/config_runtime.dep -MT zend_abstract_interface/config/config_runtime.lo -fPIC -DPIC -o zend_abstract_interface/config/.libs/config_runtime.o -2026-04-08T17:58:29.865166Z 01O mkdir zend_abstract_interface/hook/.libs -2026-04-08T17:58:29.865197Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/excluded_modules.c -MMD -MF ext/excluded_modules.dep -MT ext/excluded_modules.lo -fPIC -DPIC -o ext/.libs/excluded_modules.o -2026-04-08T17:58:29.865216Z 01O mkdir zend_abstract_interface/headers/.libs -2026-04-08T17:58:29.865241Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/hook/hook.c -MMD -MF zend_abstract_interface/hook/hook.dep -MT zend_abstract_interface/hook/hook.lo -fPIC -DPIC -o zend_abstract_interface/hook/.libs/hook.o -2026-04-08T17:58:29.865270Z 01O mkdir zend_abstract_interface/json/.libs -2026-04-08T17:58:29.865297Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/compat_string.c -MMD -MF ext/compat_string.dep -MT ext/compat_string.lo -fPIC -DPIC -o ext/.libs/compat_string.o -2026-04-08T17:58:29.865337Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/json/json.c -MMD -MF zend_abstract_interface/json/json.dep -MT zend_abstract_interface/json/json.lo -fPIC -DPIC -o zend_abstract_interface/json/.libs/json.o -2026-04-08T17:58:29.865361Z 01O mkdir ext/vendor/mt19937/.libs -2026-04-08T17:58:29.865367Z 01O mkdir components/log/.libs -2026-04-08T17:58:29.865389Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/asm_event.c -MMD -MF ext/asm_event.dep -MT ext/asm_event.lo -fPIC -DPIC -o ext/.libs/asm_event.o -2026-04-08T17:58:29.865408Z 01O mkdir zend_abstract_interface/env/.libs -2026-04-08T17:58:29.865432Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937/mt19937-64.c -MMD -MF ext/vendor/mt19937/mt19937-64.dep -MT ext/vendor/mt19937/mt19937-64.lo -fPIC -DPIC -o ext/vendor/mt19937/.libs/mt19937-64.o -2026-04-08T17:58:29.865484Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/exception_serialize.c -MMD -MF ext/exception_serialize.dep -MT ext/exception_serialize.lo -fPIC -DPIC -o ext/.libs/exception_serialize.o -2026-04-08T17:58:29.865520Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/config_decode.c -MMD -MF zend_abstract_interface/config/config_decode.dep -MT zend_abstract_interface/config/config_decode.lo -fPIC -DPIC -o zend_abstract_interface/config/.libs/config_decode.o -2026-04-08T17:58:29.865570Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components/log/log.c -MMD -MF components/log/log.dep -MT components/log/log.lo -fPIC -DPIC -o components/log/.libs/log.o -2026-04-08T17:58:29.865604Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/autoload_php_files.c -MMD -MF ext/autoload_php_files.dep -MT ext/autoload_php_files.lo -fPIC -DPIC -o ext/.libs/autoload_php_files.o -2026-04-08T17:58:29.865639Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/env/env.c -MMD -MF zend_abstract_interface/env/env.dep -MT zend_abstract_interface/env/env.lo -fPIC -DPIC -o zend_abstract_interface/env/.libs/env.o -2026-04-08T17:58:29.865665Z 01O mkdir src/dogstatsd/.libs -2026-04-08T17:58:29.865688Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_internal.c -MMD -MF ext/handlers_internal.dep -MT ext/handlers_internal.lo -fPIC -DPIC -o ext/.libs/handlers_internal.o -2026-04-08T17:58:29.865727Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/headers/headers.c -MMD -MF zend_abstract_interface/headers/headers.dep -MT zend_abstract_interface/headers/headers.lo -fPIC -DPIC -o zend_abstract_interface/headers/.libs/headers.o -2026-04-08T17:58:29.865748Z 01O mkdir zend_abstract_interface/jit_utils/.libs -2026-04-08T17:58:29.865777Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd/client.c -MMD -MF src/dogstatsd/client.dep -MT src/dogstatsd/client.lo -fPIC -DPIC -o src/dogstatsd/.libs/client.o -2026-04-08T17:58:29.865813Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/arrays.c -MMD -MF ext/arrays.dep -MT ext/arrays.lo -fPIC -DPIC -o ext/.libs/arrays.o -2026-04-08T17:58:29.865859Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/endpoint_guessing.c -MMD -MF ext/endpoint_guessing.dep -MT ext/endpoint_guessing.lo -fPIC -DPIC -o ext/.libs/endpoint_guessing.o -2026-04-08T17:58:29.865900Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/jit_utils/jit_blacklist.c -MMD -MF zend_abstract_interface/jit_utils/jit_blacklist.dep -MT zend_abstract_interface/jit_utils/jit_blacklist.lo -fPIC -DPIC -o zend_abstract_interface/jit_utils/.libs/jit_blacklist.o -2026-04-08T17:58:29.865927Z 01O mkdir zend_abstract_interface/uri_normalization/.libs -2026-04-08T17:58:29.865954Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/uri_normalization/uri_normalization.c -MMD -MF zend_abstract_interface/uri_normalization/uri_normalization.dep -MT zend_abstract_interface/uri_normalization/uri_normalization.lo -fPIC -DPIC -o zend_abstract_interface/uri_normalization/.libs/uri_normalization.o -2026-04-08T17:58:29.865966Z 01O mkdir components/string_view/.libs -2026-04-08T17:58:29.866006Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components/string_view/string_view.c -MMD -MF components/string_view/string_view.dep -MT components/string_view/string_view.lo -fPIC -DPIC -o components/string_view/.libs/string_view.o -2026-04-08T17:58:29.866093Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/config_ini.c -MMD -MF zend_abstract_interface/config/config_ini.dep -MT zend_abstract_interface/config/config_ini.lo -fPIC -DPIC -o zend_abstract_interface/config/.libs/config_ini.o -2026-04-08T17:58:29.866133Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_signal.c -MMD -MF ext/handlers_signal.dep -MT ext/handlers_signal.lo -fPIC -DPIC -o ext/.libs/handlers_signal.o -2026-04-08T17:58:29.866198Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/dogstatsd_client.c -MMD -MF ext/dogstatsd_client.dep -MT ext/dogstatsd_client.lo -fPIC -DPIC -o ext/.libs/dogstatsd_client.o -2026-04-08T17:58:29.866234Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/configuration.c -MMD -MF ext/configuration.dep -MT ext/configuration.lo -fPIC -DPIC -o ext/.libs/configuration.o -2026-04-08T17:58:29.866281Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/config.c -MMD -MF zend_abstract_interface/config/config.dep -MT zend_abstract_interface/config/config.lo -fPIC -DPIC -o zend_abstract_interface/config/.libs/config.o -2026-04-08T17:58:29.866317Z 01O mkdir zend_abstract_interface/zai_string/.libs -2026-04-08T17:58:29.866348Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/zai_string/string.c -MMD -MF zend_abstract_interface/zai_string/string.dep -MT zend_abstract_interface/zai_string/string.lo -fPIC -DPIC -o zend_abstract_interface/zai_string/.libs/string.o -2026-04-08T17:58:29.866379Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_exception.c -MMD -MF ext/handlers_exception.dep -MT ext/handlers_exception.lo -fPIC -DPIC -o ext/.libs/handlers_exception.o -2026-04-08T17:58:29.866398Z 01O mkdir zend_abstract_interface/sandbox/.libs -2026-04-08T17:58:29.866424Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/serializer.c -MMD -MF ext/serializer.dep -MT ext/serializer.lo -fPIC -DPIC -o ext/.libs/serializer.o -2026-04-08T17:58:29.866455Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/auto_flush.c -MMD -MF ext/auto_flush.dep -MT ext/auto_flush.lo -fPIC -DPIC -o ext/.libs/auto_flush.o -2026-04-08T17:58:29.866499Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/ddtrace.c -MMD -MF ext/ddtrace.dep -MT ext/ddtrace.lo -fPIC -DPIC -o ext/.libs/ddtrace.o -2026-04-08T17:58:29.866513Z 01O mkdir ext/integrations/.libs -2026-04-08T17:58:29.866561Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/memory_limit.c -MMD -MF ext/memory_limit.dep -MT ext/memory_limit.lo -fPIC -DPIC -o ext/.libs/memory_limit.o -2026-04-08T17:58:29.866590Z 01O mkdir ext/hook/.libs -2026-04-08T17:58:29.866615Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/hook/uhook_attributes.c -MMD -MF ext/hook/uhook_attributes.dep -MT ext/hook/uhook_attributes.lo -fPIC -DPIC -o ext/hook/.libs/uhook_attributes.o -2026-04-08T17:58:29.866654Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/sandbox/call.c -MMD -MF zend_abstract_interface/sandbox/call.dep -MT zend_abstract_interface/sandbox/call.lo -fPIC -DPIC -o zend_abstract_interface/sandbox/.libs/call.o -2026-04-08T17:58:29.866696Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/comms_php.c -MMD -MF ext/comms_php.dep -MT ext/comms_php.lo -fPIC -DPIC -o ext/.libs/comms_php.o -2026-04-08T17:58:29.866732Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/live_debugger.c -MMD -MF ext/live_debugger.dep -MT ext/live_debugger.lo -fPIC -DPIC -o ext/.libs/live_debugger.o -2026-04-08T17:58:29.866776Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/agent_info.c -MMD -MF ext/agent_info.dep -MT ext/agent_info.lo -fPIC -DPIC -o ext/.libs/agent_info.o -2026-04-08T17:58:29.866822Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations/integrations.c -MMD -MF ext/integrations/integrations.dep -MT ext/integrations/integrations.lo -fPIC -DPIC -o ext/integrations/.libs/integrations.o -2026-04-08T17:58:29.866877Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/engine_api.c -MMD -MF ext/engine_api.dep -MT ext/engine_api.lo -fPIC -DPIC -o ext/.libs/engine_api.o -2026-04-08T17:58:29.866933Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/inferred_proxy_headers.c -MMD -MF ext/inferred_proxy_headers.dep -MT ext/inferred_proxy_headers.lo -fPIC -DPIC -o ext/.libs/inferred_proxy_headers.o -2026-04-08T17:58:29.866967Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_httpstreams.c -MMD -MF ext/handlers_httpstreams.dep -MT ext/handlers_httpstreams.lo -fPIC -DPIC -o ext/.libs/handlers_httpstreams.o -2026-04-08T17:58:29.867013Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/otel_config.c -MMD -MF ext/otel_config.dep -MT ext/otel_config.lo -fPIC -DPIC -o ext/.libs/otel_config.o -2026-04-08T17:58:29.867091Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/hook/uhook_otel.c -MMD -MF ext/hook/uhook_otel.dep -MT ext/hook/uhook_otel.lo -fPIC -DPIC -o ext/hook/.libs/uhook_otel.o -2026-04-08T17:58:29.867141Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/engine_hooks.c -MMD -MF ext/engine_hooks.dep -MT ext/engine_hooks.lo -fPIC -DPIC -o ext/.libs/engine_hooks.o -2026-04-08T17:58:29.867195Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/dogstatsd.c -MMD -MF ext/dogstatsd.dep -MT ext/dogstatsd.lo -fPIC -DPIC -o ext/.libs/dogstatsd.o -2026-04-08T17:58:29.867237Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/hook/uhook_legacy.c -MMD -MF ext/hook/uhook_legacy.dep -MT ext/hook/uhook_legacy.lo -fPIC -DPIC -o ext/hook/.libs/uhook_legacy.o -2026-04-08T17:58:29.867285Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/distributed_tracing_headers.c -MMD -MF ext/distributed_tracing_headers.dep -MT ext/distributed_tracing_headers.lo -fPIC -DPIC -o ext/.libs/distributed_tracing_headers.o -2026-04-08T17:58:29.867334Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/logging.c -MMD -MF ext/logging.dep -MT ext/logging.lo -fPIC -DPIC -o ext/.libs/logging.o -2026-04-08T17:58:29.867378Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/standalone_limiter.c -MMD -MF ext/standalone_limiter.dep -MT ext/standalone_limiter.lo -fPIC -DPIC -o ext/.libs/standalone_limiter.o -2026-04-08T17:58:29.867417Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/ip_extraction.c -MMD -MF ext/ip_extraction.dep -MT ext/ip_extraction.lo -fPIC -DPIC -o ext/.libs/ip_extraction.o -2026-04-08T17:58:29.867460Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations/exec_integration.c -MMD -MF ext/integrations/exec_integration.dep -MT ext/integrations/exec_integration.lo -fPIC -DPIC -o ext/integrations/.libs/exec_integration.o -2026-04-08T17:58:30.365481Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/git.c -MMD -MF ext/git.dep -MT ext/git.lo -fPIC -DPIC -o ext/.libs/git.o -2026-04-08T17:58:30.365574Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_kafka.c -MMD -MF ext/handlers_kafka.dep -MT ext/handlers_kafka.lo -fPIC -DPIC -o ext/.libs/handlers_kafka.o -2026-04-08T17:58:30.365609Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/remote_config.c -MMD -MF ext/remote_config.dep -MT ext/remote_config.lo -fPIC -DPIC -o ext/.libs/remote_config.o -2026-04-08T17:58:30.365657Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_pcntl.c -MMD -MF ext/handlers_pcntl.dep -MT ext/handlers_pcntl.lo -fPIC -DPIC -o ext/.libs/handlers_pcntl.o -2026-04-08T17:58:30.365724Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/telemetry.c -MMD -MF ext/telemetry.dep -MT ext/telemetry.lo -fPIC -DPIC -o ext/.libs/telemetry.o -2026-04-08T17:58:30.365741Z 01O mkdir ext/limiter/.libs -2026-04-08T17:58:30.365752Z 01O mkdir ext/tracer_tag_propagation/.libs -2026-04-08T17:58:30.365774Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/limiter/limiter.c -MMD -MF ext/limiter/limiter.dep -MT ext/limiter/limiter.lo -fPIC -DPIC -o ext/limiter/.libs/limiter.o -2026-04-08T17:58:30.365825Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/startup_logging.c -MMD -MF ext/startup_logging.dep -MT ext/startup_logging.lo -fPIC -DPIC -o ext/.libs/startup_logging.o -2026-04-08T17:58:30.365873Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/tracer_tag_propagation/tracer_tag_propagation.c -MMD -MF ext/tracer_tag_propagation/tracer_tag_propagation.dep -MT ext/tracer_tag_propagation/tracer_tag_propagation.lo -fPIC -DPIC -o ext/tracer_tag_propagation/.libs/tracer_tag_propagation.o -2026-04-08T17:58:30.365902Z 01O mkdir ext/priority_sampling/.libs -2026-04-08T17:58:30.365929Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/profiling.c -MMD -MF ext/profiling.dep -MT ext/profiling.lo -fPIC -DPIC -o ext/.libs/profiling.o -2026-04-08T17:58:30.365962Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/crashtracking_frames.c -MMD -MF ext/crashtracking_frames.dep -MT ext/crashtracking_frames.lo -fPIC -DPIC -o ext/.libs/crashtracking_frames.o -2026-04-08T17:58:30.366003Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/random.c -MMD -MF ext/random.dep -MT ext/random.lo -fPIC -DPIC -o ext/.libs/random.o -2026-04-08T17:58:30.366051Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/priority_sampling/priority_sampling.c -MMD -MF ext/priority_sampling/priority_sampling.dep -MT ext/priority_sampling/priority_sampling.lo -fPIC -DPIC -o ext/priority_sampling/.libs/priority_sampling.o -2026-04-08T17:58:30.366086Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/endpoint_guessing.c:21:20: warning: unused function 'is_nonzero_digit' [-Wunused-function] -2026-04-08T17:58:30.366097Z 01O 21 | static inline bool is_nonzero_digit(char c) { return c >= '1' && c <= '9'; } -2026-04-08T17:58:30.366103Z 01O | ^~~~~~~~~~~~~~~~ -2026-04-08T17:58:30.366108Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/otel_config.c:25:49: warning: assigning to 'char *' from 'const char *' discards qualifiers [-Wincompatible-pointer-types-discards-qualifiers] -2026-04-08T17:58:30.366113Z 01O 25 | if (zai_option_str_is_some(sys)) { buf->ptr = sys.ptr; buf->len = sys.len; return true; } -2026-04-08T17:58:30.366121Z 01O | ^ ~~~~~~~ -2026-04-08T17:58:30.366143Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/handlers_api.c -MMD -MF ext/handlers_api.dep -MT ext/handlers_api.lo -fPIC -DPIC -o ext/.libs/handlers_api.o -2026-04-08T17:58:30.366159Z 01O 1 warning generated. -2026-04-08T17:58:30.366187Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/ddshared.c -MMD -MF ext/ddshared.dep -MT ext/ddshared.lo -fPIC -DPIC -o ext/.libs/ddshared.o -2026-04-08T17:58:30.366213Z 01O 1 warning generated. -2026-04-08T17:58:30.366244Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/weak_resources.c -MMD -MF ext/weak_resources.dep -MT ext/weak_resources.lo -fPIC -DPIC -o ext/.libs/weak_resources.o -2026-04-08T17:58:30.366297Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/process_tags.c -MMD -MF ext/process_tags.dep -MT ext/process_tags.lo -fPIC -DPIC -o ext/.libs/process_tags.o -2026-04-08T17:58:30.366320Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/live_debugger.c:441:46: warning: variable 'last_call' set but not used [-Wunused-but-set-variable] -2026-04-08T17:58:30.366329Z 01O 441 | zend_execute_data *call = execute_data, *last_call = NULL; -2026-04-08T17:58:30.366332Z 01O | ^ -2026-04-08T17:58:30.366355Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/coms.c -MMD -MF ext/coms.dep -MT ext/coms.lo -fPIC -DPIC -o ext/.libs/coms.o -2026-04-08T17:58:30.366391Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/threads.c -MMD -MF ext/threads.dep -MT ext/threads.lo -fPIC -DPIC -o ext/.libs/threads.o -2026-04-08T17:58:30.366434Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/code_origins.c -MMD -MF ext/code_origins.dep -MT ext/code_origins.lo -fPIC -DPIC -o ext/.libs/code_origins.o -2026-04-08T17:58:30.366467Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/span.c -MMD -MF ext/span.dep -MT ext/span.lo -fPIC -DPIC -o ext/.libs/span.o -2026-04-08T17:58:30.366482Z 01O Locking 4 packages to latest compatible versions -2026-04-08T17:58:30.366486Z 01O Updating build_common v0.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/build-common) -> v30.0.0 -2026-04-08T17:58:30.366492Z 01O Updating libdd-common-ffi v0.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-common-ffi) -> v30.0.0 -2026-04-08T17:58:30.366499Z 01O Updating libdd-crashtracker-ffi v0.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-crashtracker-ffi) -> v30.0.0 -2026-04-08T17:58:30.366512Z 01O Updating libdd-telemetry-ffi v0.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-telemetry-ffi) -> v30.0.0 -2026-04-08T17:58:30.366537Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/compat_getrandom.c -MMD -MF ext/compat_getrandom.dep -MT ext/compat_getrandom.lo -fPIC -DPIC -o ext/.libs/compat_getrandom.o -2026-04-08T17:58:30.366552Z 01O 1 warning generated. -2026-04-08T17:58:30.366574Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/user_request.c -MMD -MF ext/user_request.dep -MT ext/user_request.lo -fPIC -DPIC -o ext/.libs/user_request.o -2026-04-08T17:58:30.366585Z 01O Downloading crates ... -2026-04-08T17:58:30.366638Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/trace_source.c -MMD -MF ext/trace_source.dep -MT ext/trace_source.lo -fPIC -DPIC -o ext/.libs/trace_source.o -2026-04-08T17:58:30.366677Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/signals.c -MMD -MF ext/signals.dep -MT ext/signals.lo -fPIC -DPIC -o ext/.libs/signals.o -2026-04-08T17:58:30.366710Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/hook/uhook.c -MMD -MF ext/hook/uhook.dep -MT ext/hook/uhook.lo -fPIC -DPIC -o ext/hook/.libs/uhook.o -2026-04-08T17:58:30.366755Z 01O cc -I. -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -DZEND_COMPILE_DL_EXT=1 -c /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/sidecar.c -MMD -MF ext/sidecar.dep -MT ext/sidecar.lo -fPIC -DPIC -o ext/.libs/sidecar.o -2026-04-08T17:58:30.865789Z 01O Downloaded arrayref v0.3.9 -2026-04-08T17:58:30.865798Z 01O Downloaded anstyle-query v1.1.2 -2026-04-08T17:58:30.865802Z 01O Downloaded function_name-proc-macro v0.3.0 -2026-04-08T17:58:30.865807Z 01O Downloaded http-body v1.0.1 -2026-04-08T17:58:30.865810Z 01O Downloaded humantime v2.1.0 -2026-04-08T17:58:30.865814Z 01O Downloaded windows-targets v0.48.5 -2026-04-08T17:58:30.865818Z 01O Downloaded futures-sink v0.3.31 -2026-04-08T17:58:30.865823Z 01O Downloaded ident_case v1.0.1 -2026-04-08T17:58:30.865826Z 01O Downloaded indexmap v1.9.3 -2026-04-08T17:58:30.865831Z 01O Downloaded sendfd v0.4.3 -2026-04-08T17:58:30.865833Z 01O Downloaded tokio-macros v2.6.0 -2026-04-08T17:58:30.865837Z 01O Downloaded slab v0.4.9 -2026-04-08T17:58:30.865842Z 01O Downloaded simd-adler32 v0.3.7 -2026-04-08T17:58:30.865844Z 01O Downloaded serde_spanned v0.6.8 -2026-04-08T17:58:30.865847Z 01O Downloaded thread_local v1.1.8 -2026-04-08T17:58:30.865852Z 01O Downloaded strsim v0.11.1 -2026-04-08T17:58:30.865893Z 01O Downloaded static_assertions v1.1.0 -2026-04-08T17:58:30.865909Z 01O Downloaded sharded-slab v0.1.7 -2026-04-08T17:58:30.865935Z 01O Downloaded serde_yaml v0.9.34+deprecated -2026-04-08T17:58:30.865941Z 01O Downloaded serde_with v3.12.0 -2026-04-08T17:58:30.865945Z 01O Downloaded simd-json v0.14.3 -2026-04-08T17:58:30.865951Z 01O Downloaded syn v2.0.96 -2026-04-08T17:58:30.865966Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/coms.c:1143:32: warning: unknown warning group '-Wclobbered', ignored [-Wunknown-warning-option] -2026-04-08T17:58:30.865974Z 01O 1143 | #pragma GCC diagnostic ignored "-Wclobbered" -2026-04-08T17:58:30.865980Z 01O | ^ -2026-04-08T17:58:30.865982Z 01O Downloaded hyper-util v0.1.15 -2026-04-08T17:58:30.865985Z 01O Downloaded shlex v1.3.0 -2026-04-08T17:58:30.865990Z 01O Downloaded rand_chacha v0.3.1 -2026-04-08T17:58:30.865993Z 01O Downloaded ref-cast v1.0.23 -2026-04-08T17:58:30.865998Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/sidecar.c:142:31: warning: unused function 'dd_sidecar_connection_factory_ex' [-Wunused-function] -2026-04-08T17:58:30.866006Z 01O 142 | static ddog_SidecarTransport *dd_sidecar_connection_factory_ex(bool is_fork); -2026-04-08T17:58:30.866008Z 01O | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -2026-04-08T17:58:30.866014Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/sidecar.c:143:31: warning: unused function 'dd_sidecar_connection_factory_thread' [-Wunused-function] -2026-04-08T17:58:30.866028Z 01O 143 | static ddog_SidecarTransport *dd_sidecar_connection_factory_thread(void); -2026-04-08T17:58:30.866032Z 01O | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -2026-04-08T17:58:30.866036Z 01O Downloaded serde_bytes v0.11.15 -2026-04-08T17:58:30.866041Z 01O Downloaded socket2 v0.5.10 -2026-04-08T17:58:30.866043Z 01O Downloaded ref-cast-impl v1.0.23 -2026-04-08T17:58:30.866047Z 01O Downloaded ryu v1.0.18 -2026-04-08T17:58:30.866060Z 01O Downloaded powerfmt v0.2.0 -2026-04-08T17:58:30.866078Z 01O 2 warnings generated. -2026-04-08T17:58:30.866092Z 01O Downloaded value-trait v0.10.1 -2026-04-08T17:58:30.866108Z 01O 1 warning generated. -2026-04-08T17:58:30.866112Z 01O Downloaded thiserror-impl v1.0.69 -2026-04-08T17:58:30.866118Z 01O Downloaded rustc-demangle v0.1.26 -2026-04-08T17:58:30.866123Z 01O Downloaded num-traits v0.2.19 -2026-04-08T17:58:30.866126Z 01O Downloaded rand v0.8.5 -2026-04-08T17:58:30.866131Z 01O Downloaded mio v1.0.3 -2026-04-08T17:58:30.866136Z 01O Downloaded indexmap v2.12.1 -2026-04-08T17:58:30.866139Z 01O Downloaded itertools v0.11.0 -2026-04-08T17:58:30.866144Z 01O Downloaded itertools v0.12.1 -2026-04-08T17:58:30.866149Z 01O Downloaded portable-atomic v1.10.0 -2026-04-08T17:58:30.866151Z 01O Downloaded zerocopy v0.8.24 -2026-04-08T17:58:30.866154Z 01O Downloaded winnow v0.6.24 -2026-04-08T17:58:30.866159Z 01O Downloaded tracing-subscriber v0.3.22 -2026-04-08T17:58:30.866161Z 01O Downloaded zerocopy v0.7.35 -2026-04-08T17:58:30.866165Z 01O Downloaded regex v1.11.1 -2026-04-08T17:58:30.866169Z 01O Downloaded toml_edit v0.22.22 -2026-04-08T17:58:31.366796Z 01O Downloaded nix v0.29.0 -2026-04-08T17:58:31.366806Z 01O Downloaded object v0.36.7 -2026-04-08T17:58:31.366809Z 01O Downloaded nix v0.30.1 -2026-04-08T17:58:31.366815Z 01O Downloaded regex-syntax v0.8.5 -2026-04-08T17:58:31.366817Z 01O Downloaded rustix v0.38.43 -2026-04-08T17:58:31.366821Z 01O Downloaded proc-macro2 v1.0.93 -2026-04-08T17:58:31.366847Z 01O Downloaded rustix v1.1.3 -2026-04-08T17:58:31.366859Z 01O Downloaded miniz_oxide v0.8.3 -2026-04-08T17:58:31.366864Z 01O Downloaded memchr v2.7.4 -2026-04-08T17:58:31.366889Z 01O Downloaded tracing v0.1.44 -2026-04-08T17:58:31.366902Z 01O Downloaded tracing-core v0.1.36 -2026-04-08T17:58:31.366909Z 01O Downloaded msvc-demangler v0.10.1 -2026-04-08T17:58:31.366959Z 01O Downloaded miniz_oxide v0.9.0 -2026-04-08T17:58:31.366965Z 01O Downloaded log v0.4.25 -2026-04-08T17:58:31.366985Z 01O Downloaded io-lifetimes v1.0.11 -2026-04-08T17:58:31.366989Z 01O Downloaded unsafe-libyaml v0.2.11 -2026-04-08T17:58:31.366993Z 01O Downloaded unicode-ident v1.0.14 -2026-04-08T17:58:31.366998Z 01O Downloaded regex-automata v0.4.9 -2026-04-08T17:58:31.367001Z 01O Downloaded rmp-serde v1.3.0 -2026-04-08T17:58:31.367007Z 01O Downloaded prost v0.14.3 -2026-04-08T17:58:31.367012Z 01O Downloaded priority-queue v2.1.1 -2026-04-08T17:58:31.367014Z 01O Downloaded pin-project v1.1.8 -2026-04-08T17:58:31.367017Z 01O Downloaded once_cell v1.21.3 -2026-04-08T17:58:31.367041Z 01O Downloaded memmap2 v0.9.5 -2026-04-08T17:58:31.367044Z 01O Downloaded jobserver v0.1.32 -2026-04-08T17:58:31.367048Z 01O Downloaded windows_x86_64_gnu v0.48.5 -2026-04-08T17:58:31.367052Z 01O Downloaded libc v0.2.177 -2026-04-08T17:58:31.867356Z 01O Downloaded uuid v1.12.1 -2026-04-08T17:58:31.867364Z 01O Downloaded tokio v1.49.0 -2026-04-08T17:58:31.867368Z 01O Downloaded typenum v1.17.0 -2026-04-08T17:58:31.867374Z 01O Downloaded tracing-log v0.2.0 -2026-04-08T17:58:31.867376Z 01O Downloaded tower-service v0.3.3 -2026-04-08T17:58:31.867379Z 01O Downloaded tokio-util v0.7.13 -2026-04-08T17:58:31.867389Z 01O Downloaded thiserror v1.0.69 -2026-04-08T17:58:31.867392Z 01O Downloaded rmpv v1.3.0 -2026-04-08T17:58:31.867396Z 01O Downloaded rmp v0.8.14 -2026-04-08T17:58:31.867401Z 01O Downloaded rand_core v0.6.4 -2026-04-08T17:58:31.867404Z 01O Downloaded quote v1.0.38 -2026-04-08T17:58:31.867407Z 01O Downloaded prost-derive v0.14.3 -2026-04-08T17:58:31.867412Z 01O Downloaded ppv-lite86 v0.2.20 -2026-04-08T17:58:31.867414Z 01O Downloaded pin-project-lite v0.2.16 -2026-04-08T17:58:31.867417Z 01O Downloaded pin-project-internal v1.1.8 -2026-04-08T17:58:31.867423Z 01O Downloaded percent-encoding v2.3.1 -2026-04-08T17:58:31.867425Z 01O Downloaded paste v1.0.15 -2026-04-08T17:58:31.867428Z 01O Downloaded os_info v3.14.0 -2026-04-08T17:58:31.867447Z 01O Downloaded zerocopy-derive v0.7.35 -2026-04-08T17:58:31.867460Z 01O Downloaded windows-core v0.51.1 -2026-04-08T17:58:31.867467Z 01O Downloaded toml v0.8.19 -2026-04-08T17:58:31.867494Z 01O Downloaded untrusted v0.9.0 -2026-04-08T17:58:31.867506Z 01O Downloaded try-lock v0.2.5 -2026-04-08T17:58:31.867511Z 01O Downloaded toml_datetime v0.6.8 -2026-04-08T17:58:31.867524Z 01O Downloaded pin-utils v0.1.0 -2026-04-08T17:58:31.867532Z 01O Downloaded num-derive v0.4.2 -2026-04-08T17:58:31.867536Z 01O Downloaded matchers v0.2.0 -2026-04-08T17:58:31.867555Z 01O Downloaded lazy_static v1.4.0 -2026-04-08T17:58:31.867559Z 01O Downloaded itoa v1.0.14 -2026-04-08T17:58:31.867562Z 01O Downloaded is_terminal_polyfill v1.70.1 -2026-04-08T17:58:31.867567Z 01O Downloaded utf8parse v0.2.2 -2026-04-08T17:58:31.867569Z 01O Downloaded unicode-xid v0.2.6 -2026-04-08T17:58:31.867573Z 01O Downloaded page_size v0.6.0 -2026-04-08T17:58:31.867578Z 01O Downloaded hex v0.4.3 -2026-04-08T17:58:31.867580Z 01O Downloaded heck v0.5.0 -2026-04-08T17:58:31.867583Z 01O Downloaded cc v1.2.55 -2026-04-08T17:58:31.867588Z 01O Downloaded openssl-probe v0.1.5 -2026-04-08T17:58:31.867590Z 01O Downloaded memfd v0.6.4 -2026-04-08T17:58:31.867593Z 01O Downloaded ring v0.17.14 -2026-04-08T17:58:32.368420Z 01O Downloaded manual_future v0.1.1 -2026-04-08T17:58:32.368430Z 01O Downloaded getrandom v0.3.2 -2026-04-08T17:58:32.368433Z 01O Downloaded futures-executor v0.3.31 -2026-04-08T17:58:32.368438Z 01O Downloaded fnv v1.0.7 -2026-04-08T17:58:32.368441Z 01O Downloaded bytes v1.11.1 -2026-04-08T17:58:32.368444Z 01O Downloaded prctl v1.0.0 -2026-04-08T17:58:32.368448Z 01O Downloaded num-conv v0.1.0 -2026-04-08T17:58:32.368451Z 01O Downloaded is-terminal v0.4.13 -2026-04-08T17:58:32.368454Z 01O Downloaded hashbrown v0.16.1 -2026-04-08T17:58:32.368459Z 01O Downloaded futures-macro v0.3.31 -2026-04-08T17:58:32.368461Z 01O Downloaded fs_extra v1.3.0 -2026-04-08T17:58:32.368464Z 01O Downloaded const-str v0.5.7 -2026-04-08T17:58:32.368520Z 01O Downloaded autocfg v1.4.0 -2026-04-08T17:58:32.368527Z 01O Downloaded adler2 v2.0.0 -2026-04-08T17:58:32.368531Z 01O Downloaded float-cmp v0.10.0 -2026-04-08T17:58:32.368536Z 01O Downloaded either v1.13.0 -2026-04-08T17:58:32.368539Z 01O Downloaded darling_macro v0.20.10 -2026-04-08T17:58:32.368542Z 01O Downloaded crossbeam-queue v0.3.12 -2026-04-08T17:58:32.368564Z 01O Downloaded constcat v0.4.1 -2026-04-08T17:58:32.368571Z 01O Downloaded cfg-if v1.0.1 -2026-04-08T17:58:32.368578Z 01O Downloaded block-buffer v0.10.4 -2026-04-08T17:58:32.368585Z 01O Downloaded aws-lc-rs v1.15.4 -2026-04-08T17:58:32.368587Z 01O Downloaded rustls v0.23.37 -2026-04-08T17:58:32.368591Z 01O Downloaded gimli v0.32.0 -2026-04-08T17:58:32.368596Z 01O Downloaded gimli v0.31.1 -2026-04-08T17:58:32.368598Z 01O Downloaded fallible-iterator v0.3.0 -2026-04-08T17:58:32.368601Z 01O Downloaded chrono v0.4.41 -2026-04-08T17:58:32.368607Z 01O Downloaded cbindgen v0.29.0 -2026-04-08T17:58:32.368609Z 01O Downloaded cbindgen v0.27.0 -2026-04-08T17:58:32.868735Z 01O Downloaded blazesym v0.2.3 -2026-04-08T17:58:32.868745Z 01O Downloaded serde_json v1.0.137 -2026-04-08T17:58:32.868749Z 01O Downloaded symbolic-demangle v12.13.3 -2026-04-08T17:58:32.868755Z 01O Downloaded zeroize v1.8.1 -2026-04-08T17:58:32.868757Z 01O Downloaded time v0.3.37 -2026-04-08T17:58:32.868760Z 01O Downloaded hyper v1.6.0 -2026-04-08T17:58:32.868765Z 01O Downloaded hashbrown v0.15.2 -2026-04-08T17:58:32.868767Z 01O Downloaded linux-raw-sys v0.4.15 -2026-04-08T17:58:32.868770Z 01O Downloaded hashbrown v0.14.5 -2026-04-08T17:58:32.868775Z 01O Downloaded clap_builder v4.5.27 -2026-04-08T17:58:32.868777Z 01O Downloaded serde v1.0.228 -2026-04-08T17:58:32.868780Z 01O Downloaded socket2 v0.6.2 -2026-04-08T17:58:32.868785Z 01O Downloaded rustls-webpki v0.103.9 -2026-04-08T17:58:32.868787Z 01O Downloaded http v1.4.0 -2026-04-08T17:58:32.868791Z 01O Downloaded aho-corasick v1.1.3 -2026-04-08T17:58:32.868796Z 01O Downloaded tempfile v3.24.0 -2026-04-08T17:58:32.868798Z 01O Downloaded serde_derive v1.0.228 -2026-04-08T17:58:32.868804Z 01O Downloaded memory-stats v1.2.0 -2026-04-08T17:58:32.868809Z 01O Downloaded futures-util v0.3.31 -2026-04-08T17:58:32.868812Z 01O Downloaded cpp_demangle v0.4.4 -2026-04-08T17:58:32.868816Z 01O Downloaded signal-hook-registry v1.4.2 -2026-04-08T17:58:32.868820Z 01O Downloaded serde_with_macros v3.12.0 -2026-04-08T17:58:32.868823Z 01O Downloaded schemars_derive v0.8.21 -2026-04-08T17:58:32.868827Z 01O Downloaded serde_core v1.0.228 -2026-04-08T17:58:32.868831Z 01O Downloaded schemars v0.8.21 -2026-04-08T17:58:32.868834Z 01O Downloaded stable_deref_trait v1.2.0 -2026-04-08T17:58:32.868837Z 01O Downloaded simdutf8 v0.1.5 -2026-04-08T17:58:32.868842Z 01O Downloaded sha2 v0.10.8 -2026-04-08T17:58:32.868846Z 01O Downloaded linux-raw-sys v0.11.0 -2026-04-08T17:58:33.369434Z 01O Downloaded serde_derive_internals v0.29.1 -2026-04-08T17:58:33.369468Z 01O Downloaded sys-info v0.9.1 -2026-04-08T17:58:33.369474Z 01O Downloaded rustls-native-certs v0.8.1 -2026-04-08T17:58:33.369494Z 01O Downloaded tokio-rustls v0.26.1 -2026-04-08T17:58:33.369507Z 01O Downloaded hashbrown v0.12.3 -2026-04-08T17:58:33.369512Z 01O Downloaded cpp_demangle v0.5.1 -2026-04-08T17:58:33.369532Z 01O Downloaded clap v4.5.27 -2026-04-08T17:58:33.369543Z 01O Downloaded symbolic-common v12.13.3 -2026-04-08T17:58:33.369548Z 01O Downloaded subtle v2.6.1 -2026-04-08T17:58:33.369561Z 01O Downloaded smallvec v1.15.1 -2026-04-08T17:58:33.369571Z 01O Downloaded version_check v0.9.5 -2026-04-08T17:58:33.369575Z 01O Downloaded getrandom v0.2.15 -2026-04-08T17:58:33.369590Z 01O Downloaded futures v0.3.31 -2026-04-08T17:58:33.369593Z 01O Downloaded rustls-pki-types v1.14.0 -2026-04-08T17:58:33.369596Z 01O Downloaded memoffset v0.9.1 -2026-04-08T17:58:33.369601Z 01O Downloaded zwohash v0.1.2 -2026-04-08T17:58:33.369603Z 01O Downloaded crossbeam-channel v0.5.15 -2026-04-08T17:58:33.369607Z 01O Downloaded httparse v1.9.5 -2026-04-08T17:58:33.369649Z 01O Downloaded http-body-util v0.1.2 -2026-04-08T17:58:33.369652Z 01O Downloaded find-msvc-tools v0.1.9 -2026-04-08T17:58:33.369655Z 01O Downloaded cmake v0.1.57 -2026-04-08T17:58:33.369660Z 01O Downloaded base64 v0.22.1 -2026-04-08T17:58:33.369669Z 01O Downloaded want v0.3.1 -2026-04-08T17:58:33.369673Z 01O Downloaded iana-time-zone v0.1.61 -2026-04-08T17:58:33.369694Z 01O Downloaded env_logger v0.10.2 -2026-04-08T17:58:33.369701Z 01O Downloaded backtrace v0.3.74 -2026-04-08T17:58:33.369704Z 01O Downloaded time-macros v0.2.19 -2026-04-08T17:58:33.369710Z 01O Downloaded termcolor v1.4.1 -2026-04-08T17:58:33.369712Z 01O Downloaded halfbrown v0.2.5 -2026-04-08T17:58:33.369716Z 01O Downloaded function_name v0.3.0 -2026-04-08T17:58:33.369721Z 01O Downloaded foldhash v0.1.5 -2026-04-08T17:58:33.369723Z 01O Downloaded dunce v1.0.5 -2026-04-08T17:58:33.369726Z 01O Downloaded darling v0.20.10 -2026-04-08T17:58:33.369731Z 01O Downloaded const_format_proc_macros v0.2.34 -2026-04-08T17:58:33.369733Z 01O Downloaded clap_lex v0.7.4 -2026-04-08T17:58:33.369737Z 01O Downloaded glibc_version v0.1.2 -2026-04-08T17:58:33.369742Z 01O Downloaded futures-task v0.3.31 -2026-04-08T17:58:33.369744Z 01O Downloaded futures-channel v0.3.31 -2026-04-08T17:58:33.369747Z 01O Downloaded fastrand v2.3.0 -2026-04-08T17:58:33.369760Z 01O Downloaded debugid v0.8.0 -2026-04-08T17:58:33.369764Z 01O Downloaded anyhow v1.0.98 -2026-04-08T17:58:33.369767Z 01O Downloaded heck v0.4.1 -2026-04-08T17:58:33.369772Z 01O Downloaded generic-array v0.14.7 -2026-04-08T17:58:33.369775Z 01O Downloaded crypto-common v0.1.6 -2026-04-08T17:58:33.369778Z 01O Downloaded arc-swap v1.7.1 -2026-04-08T17:58:33.369783Z 01O Downloaded futures-io v0.3.31 -2026-04-08T17:58:33.369785Z 01O Downloaded equivalent v1.0.1 -2026-04-08T17:58:33.369788Z 01O Downloaded digest v0.10.7 -2026-04-08T17:58:33.369793Z 01O Downloaded const_format v0.2.34 -2026-04-08T17:58:33.369796Z 01O Downloaded cfg_aliases v0.2.1 -2026-04-08T17:58:33.369799Z 01O Downloaded allocator-api2 v0.2.21 -2026-04-08T17:58:33.369806Z 01O Downloaded time-core v0.1.2 -2026-04-08T17:58:33.369809Z 01O Downloaded hyper-rustls v0.27.7 -2026-04-08T17:58:33.369812Z 01O Downloaded darling_core v0.20.10 -2026-04-08T17:58:33.369817Z 01O Downloaded crossbeam-utils v0.8.21 -2026-04-08T17:58:33.369819Z 01O Downloaded cadence v1.5.0 -2026-04-08T17:58:33.369823Z 01O Downloaded bitflags v2.8.0 -2026-04-08T17:58:33.369827Z 01O Downloaded addr2line v0.24.2 -2026-04-08T17:58:33.369829Z 01O Downloaded deranged v0.3.11 -2026-04-08T17:58:33.369832Z 01O Downloaded byteorder v1.5.0 -2026-04-08T17:58:33.369840Z 01O Downloaded bincode v1.3.3 -2026-04-08T17:58:33.369842Z 01O Downloaded ahash v0.8.12 -2026-04-08T17:58:33.369845Z 01O Downloaded futures-core v0.3.31 -2026-04-08T17:58:33.369862Z 01O Downloaded anstyle-parse v0.2.6 -2026-04-08T17:58:33.369871Z 01O Downloaded anstream v0.6.18 -2026-04-08T17:58:33.369876Z 01O Downloaded errno v0.3.10 -2026-04-08T17:58:33.369889Z 01O Downloaded dyn-clone v1.0.17 -2026-04-08T17:58:33.369897Z 01O Downloaded cpufeatures v0.2.16 -2026-04-08T17:58:33.369901Z 01O Downloaded colorchoice v1.0.3 -2026-04-08T17:58:33.369916Z 01O Downloaded anstyle v1.0.10 -2026-04-08T17:58:33.369925Z 01O Downloaded aws-lc-sys v0.37.0 -2026-04-08T17:58:33.870316Z 01O Downloaded windows v0.51.1 -2026-04-08T17:58:34.371105Z 01O Compiling proc-macro2 v1.0.93 -2026-04-08T17:58:34.371124Z 01O Compiling unicode-ident v1.0.14 -2026-04-08T17:58:34.371129Z 01O Compiling libc v0.2.177 -2026-04-08T17:58:34.371150Z 01O Compiling autocfg v1.4.0 -2026-04-08T17:58:34.371170Z 01O Compiling cfg-if v1.0.1 -2026-04-08T17:58:34.371179Z 01O Compiling serde_core v1.0.228 -2026-04-08T17:58:34.371199Z 01O Compiling shlex v1.3.0 -2026-04-08T17:58:34.371211Z 01O Compiling find-msvc-tools v0.1.9 -2026-04-08T17:58:34.371216Z 01O Compiling serde v1.0.228 -2026-04-08T17:58:34.371229Z 01O Compiling memchr v2.7.4 -2026-04-08T17:58:34.371235Z 01O Compiling anyhow v1.0.98 -2026-04-08T17:58:34.371278Z 01O Compiling once_cell v1.21.3 -2026-04-08T17:58:34.371284Z 01O Compiling bytes v1.11.1 -2026-04-08T17:58:34.371286Z 01O Compiling cfg_aliases v0.2.1 -2026-04-08T17:58:34.371290Z 01O Compiling itoa v1.0.14 -2026-04-08T17:58:34.371295Z 01O Compiling pin-project-lite v0.2.16 -2026-04-08T17:58:34.371297Z 01O Compiling httparse v1.9.5 -2026-04-08T17:58:34.371316Z 01O Compiling bitflags v2.8.0 -2026-04-08T17:58:34.371331Z 01O Compiling adler2 v2.0.0 -2026-04-08T17:58:34.371340Z 01O Compiling rustc-demangle v0.1.26 -2026-04-08T17:58:34.371345Z 01O Compiling futures-core v0.3.31 -2026-04-08T17:58:34.371357Z 01O Compiling dunce v1.0.5 -2026-04-08T17:58:34.371365Z 01O Compiling object v0.36.7 -2026-04-08T17:58:34.371369Z 01O Compiling futures-sink v0.3.31 -2026-04-08T17:58:34.371384Z 01O Compiling fs_extra v1.3.0 -2026-04-08T17:58:34.371393Z 01O Compiling gimli v0.31.1 -2026-04-08T17:58:34.371398Z 01O Compiling strsim v0.11.1 -2026-04-08T17:58:34.871658Z 01O Compiling thiserror v1.0.69 -2026-04-08T17:58:34.871669Z 01O Compiling futures-io v0.3.31 -2026-04-08T17:58:34.871676Z 01O Compiling pin-utils v0.1.0 -2026-04-08T17:58:34.871685Z 01O Compiling futures-task v0.3.31 -2026-04-08T17:58:34.871688Z 01O Compiling getrandom v0.3.2 -2026-04-08T17:58:34.871691Z 01O Compiling version_check v0.9.5 -2026-04-08T17:58:34.871709Z 01O Compiling zeroize v1.8.1 -2026-04-08T17:58:34.871713Z 01O Compiling aws-lc-rs v1.15.4 -2026-04-08T17:58:34.871716Z 01O Compiling unicode-xid v0.2.6 -2026-04-08T17:58:34.871722Z 01O Compiling regex-syntax v0.8.5 -2026-04-08T17:58:34.871724Z 01O Compiling rustls v0.23.37 -2026-04-08T17:58:34.871729Z 01O Compiling utf8parse v0.2.2 -2026-04-08T17:58:34.871735Z 01O Compiling untrusted v0.9.0 -2026-04-08T17:58:34.871737Z 01O Compiling try-lock v0.2.5 -2026-04-08T17:58:34.871742Z 01O Compiling miniz_oxide v0.8.3 -2026-04-08T17:58:34.871761Z 01O Compiling nix v0.29.0 -2026-04-08T17:58:34.871776Z 01O Compiling smallvec v1.15.1 -2026-04-08T17:58:34.871782Z 01O Compiling futures-channel v0.3.31 -2026-04-08T17:58:34.871791Z 01O Compiling tracing-core v0.1.36 -2026-04-08T17:58:34.871794Z 01O Compiling anstyle-parse v0.2.6 -2026-04-08T17:58:34.871798Z 01O Compiling hashbrown v0.16.1 -2026-04-08T17:58:34.871819Z 01O Compiling rustix v1.1.3 -2026-04-08T17:58:34.871831Z 01O Compiling equivalent v1.0.1 -2026-04-08T17:58:34.871836Z 01O Compiling anstyle-query v1.1.2 -2026-04-08T17:58:34.871853Z 01O Compiling subtle v2.6.1 -2026-04-08T17:58:34.871863Z 01O Compiling is_terminal_polyfill v1.70.1 -2026-04-08T17:58:34.871868Z 01O Compiling rustls-pki-types v1.14.0 -2026-04-08T17:58:34.871878Z 01O Compiling want v0.3.1 -2026-04-08T17:58:34.871885Z 01O Compiling colorchoice v1.0.3 -2026-04-08T17:58:34.871890Z 01O Compiling anstyle v1.0.10 -2026-04-08T17:58:34.871903Z 01O Compiling slab v0.4.9 -2026-04-08T17:58:34.871911Z 01O Compiling num-traits v0.2.19 -2026-04-08T17:58:34.871916Z 01O Compiling memoffset v0.9.1 -2026-04-08T17:58:34.871928Z 01O Compiling heck v0.5.0 -2026-04-08T17:58:34.871937Z 01O Compiling either v1.13.0 -2026-04-08T17:58:34.871941Z 01O Compiling clap_lex v0.7.4 -2026-04-08T17:58:34.871954Z 01O Compiling openssl-probe v0.1.5 -2026-04-08T17:58:34.871962Z 01O Compiling serde_json v1.0.137 -2026-04-08T17:58:35.374349Z 01O Compiling linux-raw-sys v0.11.0 -2026-04-08T17:58:35.374358Z 01O Compiling tower-service v0.3.3 -2026-04-08T17:58:35.374362Z 01O Compiling winnow v0.6.24 -2026-04-08T17:58:35.374367Z 01O Compiling aho-corasick v1.1.3 -2026-04-08T17:58:35.374370Z 01O Compiling byteorder v1.5.0 -2026-04-08T17:58:35.374374Z 01O Compiling ryu v1.0.18 -2026-04-08T17:58:35.374379Z 01O Compiling http v1.4.0 -2026-04-08T17:58:35.374381Z 01O Compiling anstream v0.6.18 -2026-04-08T17:58:35.374384Z 01O Compiling itertools v0.12.1 -2026-04-08T17:58:35.374389Z 01O Compiling paste v1.0.15 -2026-04-08T17:58:35.374392Z 01O Compiling fastrand v2.3.0 -2026-04-08T17:58:35.374440Z 01O Compiling cbindgen v0.29.0 -2026-04-08T17:58:35.374445Z 01O Compiling tracing v0.1.44 -2026-04-08T17:58:35.374448Z 01O Compiling hex v0.4.3 -2026-04-08T17:58:35.374451Z 01O Compiling log v0.4.25 -2026-04-08T17:58:35.374456Z 01O Compiling static_assertions v1.1.0 -2026-04-08T17:58:35.874186Z 01O Compiling rustls-native-certs v0.8.1 -2026-04-08T17:58:35.874204Z 01O Compiling clap_builder v4.5.27 -2026-04-08T17:58:35.874210Z 01O Compiling zerocopy v0.8.24 -2026-04-08T17:58:35.874235Z 01O Compiling indexmap v2.12.1 -2026-04-08T17:58:35.874248Z 01O Compiling ahash v0.8.12 -2026-04-08T17:58:35.874253Z 01O Compiling allocator-api2 v0.2.21 -2026-04-08T17:58:35.874260Z 01O Compiling cc v1.2.55 -2026-04-08T17:58:35.874262Z 01O Compiling quote v1.0.38 -2026-04-08T17:58:35.874266Z 01O Compiling crossbeam-utils v0.8.21 -2026-04-08T17:58:35.874273Z 01O Compiling libdd-trace-protobuf v3.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-trace-protobuf) -2026-04-08T17:58:36.374495Z 01O Compiling libdd-ddsketch v1.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-ddsketch) -2026-04-08T17:58:36.374507Z 01O Compiling typenum v1.17.0 -2026-04-08T17:58:36.374512Z 01O Compiling generic-array v0.14.7 -2026-04-08T17:58:36.374517Z 01O Compiling syn v2.0.96 -2026-04-08T17:58:36.374520Z 01O Compiling foldhash v0.1.5 -2026-04-08T17:58:36.374524Z 01O Compiling base64 v0.22.1 -2026-04-08T17:58:36.374528Z 01O Compiling http-body v1.0.1 -2026-04-08T17:58:36.374541Z 01O Compiling hashbrown v0.15.2 -2026-04-08T17:58:36.374546Z 01O Compiling iana-time-zone v0.1.61 -2026-04-08T17:58:36.875426Z 01O Compiling const_format_proc_macros v0.2.34 -2026-04-08T17:58:36.875443Z 01O Compiling rustix v0.38.43 -2026-04-08T17:58:36.875450Z 01O Compiling nix v0.30.1 -2026-04-08T17:58:36.875476Z 01O Compiling windows_x86_64_gnu v0.48.5 -2026-04-08T17:58:36.875489Z 01O Compiling ident_case v1.0.1 -2026-04-08T17:58:36.875495Z 01O Compiling stable_deref_trait v1.2.0 -2026-04-08T17:58:36.875519Z 01O Compiling linux-raw-sys v0.4.15 -2026-04-08T17:58:36.875531Z 01O Compiling fnv v1.0.7 -2026-04-08T17:58:37.376192Z 01O Compiling jobserver v0.1.32 -2026-04-08T17:58:37.376203Z 01O Compiling regex-automata v0.4.9 -2026-04-08T17:58:37.376207Z 01O Compiling mio v1.0.3 -2026-04-08T17:58:37.376213Z 01O Compiling socket2 v0.6.2 -2026-04-08T17:58:37.376215Z 01O Compiling socket2 v0.5.10 -2026-04-08T17:58:37.376219Z 01O Compiling cpp_demangle v0.4.4 -2026-04-08T17:58:37.376224Z 01O Compiling cpufeatures v0.2.16 -2026-04-08T17:58:37.376227Z 01O Compiling signal-hook-registry v1.4.2 -2026-04-08T17:58:37.876525Z 01O Compiling getrandom v0.2.15 -2026-04-08T17:58:37.876535Z 01O Compiling crossbeam-channel v0.5.15 -2026-04-08T17:58:37.876539Z 01O Compiling tempfile v3.24.0 -2026-04-08T17:58:37.876545Z 01O Compiling addr2line v0.24.2 -2026-04-08T17:58:37.876550Z 01O Compiling rand_core v0.6.4 -2026-04-08T17:58:37.876553Z 01O Compiling rmp v0.8.14 -2026-04-08T17:58:37.876559Z 01O Compiling memmap2 v0.9.5 -2026-04-08T17:58:37.876561Z 01O Compiling cpp_demangle v0.5.1 -2026-04-08T17:58:38.377444Z 01O Compiling crossbeam-queue v0.3.12 -2026-04-08T17:58:38.377461Z 01O Compiling fallible-iterator v0.3.0 -2026-04-08T17:58:38.377466Z 01O Compiling const_format v0.2.34 -2026-04-08T17:58:38.377471Z 01O Compiling clap v4.5.27 -2026-04-08T17:58:38.377474Z 01O Compiling constcat v0.4.1 -2026-04-08T17:58:38.377480Z 01O Compiling io-lifetimes v1.0.11 -2026-04-08T17:58:38.377486Z 01O Compiling blazesym v0.2.3 -2026-04-08T17:58:38.377488Z 01O Compiling rmpv v1.3.0 -2026-04-08T17:58:38.377491Z 01O Compiling portable-atomic v1.10.0 -2026-04-08T17:58:38.377496Z 01O Compiling arc-swap v1.7.1 -2026-04-08T17:58:38.377499Z 01O Compiling symbolic-demangle v12.13.3 -2026-04-08T17:58:38.377503Z 01O Compiling cadence v1.5.0 -2026-04-08T17:58:38.377508Z 01O Compiling schemars v0.8.21 -2026-04-08T17:58:38.377511Z 01O Compiling simd-adler32 v0.3.7 -2026-04-08T17:58:38.377562Z 01O Compiling windows-targets v0.48.5 -2026-04-08T17:58:38.377568Z 01O Compiling page_size v0.6.0 -2026-04-08T17:58:38.878137Z 01O Compiling msvc-demangler v0.10.1 -2026-04-08T17:58:38.878147Z 01O Compiling ref-cast v1.0.23 -2026-04-08T17:58:38.878152Z 01O Compiling dyn-clone v1.0.17 -2026-04-08T17:58:38.878157Z 01O Compiling powerfmt v0.2.0 -2026-04-08T17:58:38.878160Z 01O Compiling percent-encoding v2.3.1 -2026-04-08T17:58:38.878163Z 01O Compiling windows-core v0.51.1 -2026-04-08T17:58:38.878178Z 01O Compiling miniz_oxide v0.9.0 -2026-04-08T17:58:38.878181Z 01O Compiling errno v0.3.10 -2026-04-08T17:58:38.878199Z 01O Compiling gimli v0.32.0 -2026-04-08T17:58:38.878205Z 01O Compiling float-cmp v0.10.0 -2026-04-08T17:58:38.878207Z 01O Compiling lazy_static v1.4.0 -2026-04-08T17:58:38.878211Z 01O Compiling time-core v0.1.2 -2026-04-08T17:58:38.878218Z 01O Compiling cmake v0.1.57 -2026-04-08T17:58:38.878222Z 01O Compiling cc_utils v0.1.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/tools/cc_utils) -2026-04-08T17:58:38.878226Z 01O Compiling num-conv v0.1.0 -2026-04-08T17:58:38.878231Z 01O Compiling function_name-proc-macro v0.3.0 -2026-04-08T17:58:38.878233Z 01O Compiling thread_local v1.1.8 -2026-04-08T17:58:38.878237Z 01O Compiling simdutf8 v0.1.5 -2026-04-08T17:58:38.878250Z 01O Compiling unsafe-libyaml v0.2.11 -2026-04-08T17:58:38.878258Z 01O Compiling sharded-slab v0.1.7 -2026-04-08T17:58:38.878265Z 01O Compiling prctl v1.0.0 -2026-04-08T17:58:38.878272Z 01O Compiling priority-queue v2.1.1 -2026-04-08T17:58:39.378743Z 01O Compiling hashbrown v0.14.5 -2026-04-08T17:58:39.378781Z 01O Compiling memory-stats v1.2.0 -2026-04-08T17:58:39.378787Z 01O Compiling tracing-log v0.2.0 -2026-04-08T17:58:39.378812Z 01O Compiling datadog-sidecar-ffi v0.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/datadog-sidecar-ffi) -2026-04-08T17:58:39.378827Z 01O Compiling zwohash v0.1.2 -2026-04-08T17:58:39.378834Z 01O Compiling arrayref v0.3.9 -2026-04-08T17:58:39.378847Z 01O Compiling is-terminal v0.4.13 -2026-04-08T17:58:39.378851Z 01O Compiling termcolor v1.4.1 -2026-04-08T17:58:39.378855Z 01O Compiling humantime v2.1.0 -2026-04-08T17:58:39.378860Z 01O Compiling itertools v0.11.0 -2026-04-08T17:58:39.378863Z 01O Compiling const-str v0.5.7 -2026-04-08T17:58:39.378867Z 01O Compiling crypto-common v0.1.6 -2026-04-08T17:58:39.378872Z 01O Compiling block-buffer v0.10.4 -2026-04-08T17:58:39.378875Z 01O Compiling function_name v0.3.0 -2026-04-08T17:58:39.879774Z 01O Compiling digest v0.10.7 -2026-04-08T17:58:39.879791Z 01O Compiling windows v0.51.1 -2026-04-08T17:58:39.879795Z 01O Compiling aws-lc-sys v0.37.0 -2026-04-08T17:58:39.879824Z 01O Compiling sys-info v0.9.1 -2026-04-08T17:58:39.879839Z 01O Compiling libdd-libunwind-sys v0.1.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-libunwind-sys) -2026-04-08T17:58:39.879846Z 01O Compiling spawn_worker v0.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/spawn_worker) -2026-04-08T17:58:39.879852Z 01O Compiling sha2 v0.10.8 -2026-04-08T17:58:39.879854Z 01O Compiling backtrace v0.3.74 -2026-04-08T17:58:39.879858Z 01O Compiling memfd v0.6.4 -2026-04-08T17:58:40.880610Z 01O Compiling darling_core v0.20.10 -2026-04-08T17:58:40.880620Z 01O Compiling serde_derive_internals v0.29.1 -2026-04-08T17:58:41.381178Z 01O Compiling regex v1.11.1 -2026-04-08T17:58:41.381188Z 01O Compiling serde_derive v1.0.228 -2026-04-08T17:58:41.381192Z 01O Compiling futures-macro v0.3.31 -2026-04-08T17:58:41.381198Z 01O Compiling tokio-macros v2.6.0 -2026-04-08T17:58:41.381200Z 01O Compiling thiserror-impl v1.0.69 -2026-04-08T17:58:41.381204Z 01O Compiling pin-project-internal v1.1.8 -2026-04-08T17:58:41.381210Z 01O Compiling prost-derive v0.14.3 -2026-04-08T17:58:41.381212Z 01O Compiling zerocopy-derive v0.7.35 -2026-04-08T17:58:41.381216Z 01O Compiling num-derive v0.4.2 -2026-04-08T17:58:41.381241Z 01O Compiling ref-cast-impl v1.0.23 -2026-04-08T17:58:41.381255Z 01O Compiling datadog-ipc-macros v0.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/datadog-ipc-macros) -2026-04-08T17:58:41.381263Z 01O Compiling datadog-sidecar-macros v0.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/datadog-sidecar-macros) -2026-04-08T17:58:41.381269Z 01O Compiling schemars_derive v0.8.21 -2026-04-08T17:58:41.881573Z 01O Compiling glibc_version v0.1.2 -2026-04-08T17:58:41.881585Z 01O Compiling matchers v0.2.0 -2026-04-08T17:58:41.881593Z 01O Compiling tracing-subscriber v0.3.22 -2026-04-08T17:58:41.881603Z 01O Compiling datadog-ipc v0.1.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/datadog-ipc) -2026-04-08T17:58:42.381913Z 01O Compiling tokio v1.49.0 -2026-04-08T17:58:42.381923Z 01O Compiling futures-util v0.3.31 -2026-04-08T17:58:42.381928Z 01O Compiling zerocopy v0.7.35 -2026-04-08T17:58:42.381934Z 01O Compiling pin-project v1.1.8 -2026-04-08T17:58:42.381937Z 01O Compiling env_logger v0.10.2 -2026-04-08T17:58:42.882829Z 01O Compiling darling_macro v0.20.10 -2026-04-08T17:58:42.882841Z 01O Compiling libdd-capabilities v0.1.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-capabilities) -2026-04-08T17:58:42.882846Z 01O Compiling prost v0.14.3 -2026-04-08T17:58:43.383737Z 01O Compiling ppv-lite86 v0.2.20 -2026-04-08T17:58:43.383754Z 01O Compiling darling v0.20.10 -2026-04-08T17:58:43.383759Z 01O Compiling serde_with_macros v3.12.0 -2026-04-08T17:58:43.383765Z 01O Compiling rand_chacha v0.3.1 -2026-04-08T17:58:43.884538Z 01O Compiling rand v0.8.5 -2026-04-08T17:58:44.885504Z 01O Compiling toml_datetime v0.6.8 -2026-04-08T17:58:44.885514Z 01O Compiling serde_spanned v0.6.8 -2026-04-08T17:58:45.385609Z 01O Compiling uuid v1.12.1 -2026-04-08T17:58:45.385625Z 01O Compiling serde_bytes v0.11.15 -2026-04-08T17:58:45.385633Z 01O Compiling rmp-serde v1.3.0 -2026-04-08T17:58:45.385651Z 01O Compiling libdd-tinybytes v1.1.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-tinybytes) -2026-04-08T17:58:45.385664Z 01O Compiling chrono v0.4.41 -2026-04-08T17:58:45.385669Z 01O Compiling halfbrown v0.2.5 -2026-04-08T17:58:45.385677Z 01O Compiling os_info v3.14.0 -2026-04-08T17:58:45.385679Z 01O Compiling deranged v0.3.11 -2026-04-08T17:58:45.385683Z 01O Compiling toml_edit v0.22.22 -2026-04-08T17:58:45.385688Z 01O Compiling serde_with v3.12.0 -2026-04-08T17:58:45.385691Z 01O Compiling bincode v1.3.3 -2026-04-08T17:58:45.385694Z 01O Compiling serde_yaml v0.9.34+deprecated -2026-04-08T17:58:45.385700Z 01O Compiling futures-executor v0.3.31 -2026-04-08T17:58:45.385703Z 01O Compiling http-body-util v0.1.2 -2026-04-08T17:58:45.886057Z 01O Compiling debugid v0.8.0 -2026-04-08T17:58:45.886067Z 01O Compiling futures v0.3.31 -2026-04-08T17:58:45.886071Z 01O Compiling symbolic-common v12.13.3 -2026-04-08T17:58:45.886076Z 01O Compiling value-trait v0.10.1 -2026-04-08T17:58:46.386801Z 01O Compiling manual_future v0.1.1 -2026-04-08T17:58:46.386815Z 01O Compiling time v0.3.37 -2026-04-08T17:58:46.386820Z 01O Compiling simd-json v0.14.3 -2026-04-08T17:58:47.888250Z 01O Compiling hyper v1.6.0 -2026-04-08T17:58:47.888283Z 01O Compiling toml v0.8.19 -2026-04-08T17:58:48.389193Z 01O Compiling libdd-trace-normalization v2.0.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-trace-normalization) -2026-04-08T17:58:48.389260Z 01O Compiling libdd-library-config v1.1.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-library-config) -2026-04-08T17:58:48.889400Z 01O Compiling tokio-util v0.7.13 -2026-04-08T17:58:48.889409Z 01O Compiling sendfd v0.4.3 -2026-04-08T17:58:48.889413Z 01O Compiling hyper-util v0.1.15 -2026-04-08T17:58:49.890421Z 01O Compiling libdd-common v3.0.2 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-common) -2026-04-08T17:58:50.891862Z 01O Compiling libdd-crashtracker v1.0.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-crashtracker) -2026-04-08T17:58:50.891874Z 01O Compiling build_common v30.0.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/build-common) -2026-04-08T17:58:51.392409Z 01O Compiling libdd-common-ffi v30.0.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-common-ffi) -2026-04-08T17:58:51.392425Z 01O Compiling libdd-telemetry-ffi v30.0.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-telemetry-ffi) -2026-04-08T17:58:51.392435Z 01O Compiling libdd-library-config-ffi v0.0.2 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-library-config-ffi) -2026-04-08T17:58:51.392445Z 01O Compiling libdd-crashtracker-ffi v30.0.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-crashtracker-ffi) -2026-04-08T17:58:51.392454Z 01O Compiling datadog-live-debugger-ffi v0.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/datadog-live-debugger-ffi) -2026-04-08T17:59:07.410109Z 01O Compiling rustls-webpki v0.103.9 -2026-04-08T17:59:10.914373Z 01O Compiling tokio-rustls v0.26.1 -2026-04-08T17:59:11.415153Z 01O Compiling hyper-rustls v0.27.7 -2026-04-08T17:59:11.915680Z 01O Compiling libdd-telemetry v4.0.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-telemetry) -2026-04-08T17:59:11.915714Z 01O Compiling libdd-capabilities-impl v0.1.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-capabilities-impl) -2026-04-08T17:59:11.915723Z 01O Compiling libdd-dogstatsd-client v2.0.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-dogstatsd-client) -2026-04-08T17:59:11.915747Z 01O Compiling libdd-trace-utils v3.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-trace-utils) -2026-04-08T17:59:12.917150Z 01O Compiling libdd-trace-stats v2.0.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-trace-stats) -2026-04-08T17:59:12.917161Z 01O Compiling libdd-data-pipeline v3.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-data-pipeline) -2026-04-08T17:59:13.918634Z 01O Compiling datadog-live-debugger v0.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/datadog-live-debugger) -2026-04-08T17:59:14.919440Z 01O Compiling datadog-remote-config v0.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/datadog-remote-config) -2026-04-08T17:59:41.952959Z 01O Compiling datadog-sidecar v0.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/datadog-sidecar) -2026-04-08T18:00:41.524471Z 01O Compiling ddtrace-php v0.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs) -2026-04-08T18:02:17.637455Z 01O Finished `tracer-release` profile [optimized + debuginfo] target(s) in 3m 48s -2026-04-08T18:02:18.138375Z 01O (cd "/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/php_sidecar_mockgen"; HOST= TARGET= CARGO_TARGET_DIR=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/target_mockgen/ cargo run /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/mock_php.c /opt/php/debug/bin/php /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/handlers_curl.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/hook/.libs/uhook_attributes.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/hook/.libs/uhook_otel.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/handlers_fiber.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/ddtrace.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/agent_info.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/asm_event.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/arrays.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/auto_flush.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/autoload_php_files.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/code_origins.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/collect_backtrace.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/comms_php.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/compat_string.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/coms.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/configuration.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/crashtracking_frames.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/ddshared.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/distributed_tracing_headers.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/dogstatsd.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/dogstatsd_client.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/endpoint_guessing.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/engine_api.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/engine_hooks.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/exception_serialize.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/excluded_modules.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/git.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/handlers_api.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/handlers_exception.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/handlers_httpstreams.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/handlers_internal.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/handlers_kafka.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/handlers_pcntl.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/handlers_signal.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/inferred_proxy_headers.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations/.libs/exec_integration.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations/.libs/integrations.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/ip_extraction.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/standalone_limiter.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/live_debugger.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/logging.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/limiter/.libs/limiter.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/memory_limit.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/otel_config.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/priority_sampling/.libs/priority_sampling.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/process_tags.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/profiling.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/random.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/remote_config.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/serializer.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/sidecar.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/signals.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/span.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/startup_logging.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/telemetry.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/threads.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/trace_source.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/tracer_tag_propagation/.libs/tracer_tag_propagation.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/user_request.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/weak_resources.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/hook/.libs/uhook.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/hook/.libs/uhook_legacy.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/compat_getrandom.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/interceptor/php8/.libs/interceptor.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/interceptor/php8/.libs/resolver.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/jit_utils/.libs/jit_blacklist.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/sandbox/php8/.libs/sandbox.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/.libs/config.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/.libs/config_decode.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/.libs/config_ini.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/.libs/config_stable_file.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/.libs/config_runtime.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/env/.libs/env.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/exceptions/.libs/exceptions.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/headers/.libs/headers.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/hook/.libs/hook.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/json/.libs/json.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/sandbox/.libs/call.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/uri_normalization/.libs/uri_normalization.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/zai_string/.libs/string.o) -2026-04-08T18:02:18.138491Z 01O warning: /go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-crashtracker-ffi/Cargo.toml: unused manifest key: target.cfg(windows).features -2026-04-08T18:02:18.138500Z 01O Downloading crates ... -2026-04-08T18:02:18.138507Z 01O Downloaded crc32fast v1.4.2 -2026-04-08T18:02:18.138509Z 01O Downloaded twox-hash v1.6.3 -2026-04-08T18:02:18.138513Z 01O Downloaded current_platform v0.2.0 -2026-04-08T18:02:18.138517Z 01O Downloaded ruzstd v0.3.1 -2026-04-08T18:02:18.138522Z 01O Downloaded object v0.31.1 -2026-04-08T18:02:18.138525Z 01O Downloaded flate2 v1.0.35 -2026-04-08T18:02:18.138530Z 01O Compiling proc-macro2 v1.0.93 -2026-04-08T18:02:18.138532Z 01O Compiling unicode-ident v1.0.14 -2026-04-08T18:02:18.138536Z 01O Compiling cfg-if v1.0.1 -2026-04-08T18:02:18.138541Z 01O Compiling thiserror v1.0.69 -2026-04-08T18:02:18.138543Z 01O Compiling adler2 v2.0.0 -2026-04-08T18:02:18.138546Z 01O Compiling static_assertions v1.1.0 -2026-04-08T18:02:18.138551Z 01O Compiling byteorder v1.5.0 -2026-04-08T18:02:18.138553Z 01O Compiling anyhow v1.0.98 -2026-04-08T18:02:18.138557Z 01O Compiling shlex v1.3.0 -2026-04-08T18:02:18.138582Z 01O Compiling find-msvc-tools v0.1.9 -2026-04-08T18:02:18.138596Z 01O Compiling current_platform v0.2.0 -2026-04-08T18:02:18.138602Z 01O Compiling memchr v2.7.4 -2026-04-08T18:02:18.138626Z 01O Compiling crc32fast v1.4.2 -2026-04-08T18:02:18.138629Z 01O Compiling twox-hash v1.6.3 -2026-04-08T18:02:18.138642Z 01O Compiling miniz_oxide v0.8.3 -2026-04-08T18:02:18.138648Z 01O Compiling cc v1.2.55 -2026-04-08T18:02:18.638948Z 01O Compiling flate2 v1.0.35 -2026-04-08T18:02:18.638958Z 01O Compiling quote v1.0.38 -2026-04-08T18:02:19.139673Z 01O Compiling cc_utils v0.1.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/tools/cc_utils) -2026-04-08T18:02:19.139683Z 01O Compiling syn v2.0.96 -2026-04-08T18:02:20.641345Z 01O Compiling thiserror-impl v1.0.69 -2026-04-08T18:02:21.142350Z 01O Compiling ruzstd v0.3.1 -2026-04-08T18:02:21.642911Z 01O Compiling object v0.31.1 -2026-04-08T18:02:24.145520Z 01O Compiling sidecar_mockgen v0.1.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/tools/sidecar_mockgen) -2026-04-08T18:02:24.646440Z 01O Compiling php_sidecar_mockgen v0.1.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/php_sidecar_mockgen) -2026-04-08T18:02:24.646461Z 01O Finished `dev` profile [unoptimized + debuginfo] target(s) in 6.69s -2026-04-08T18:02:24.646580Z 01O Running `/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/target_mockgen/debug/php_sidecar_mockgen /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/mock_php.c /opt/php/debug/bin/php /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/handlers_curl.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/hook/.libs/uhook_attributes.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/hook/.libs/uhook_otel.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/handlers_fiber.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/ddtrace.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/agent_info.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/asm_event.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/arrays.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/auto_flush.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/autoload_php_files.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/code_origins.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/collect_backtrace.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/comms_php.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/compat_string.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/coms.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/configuration.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/crashtracking_frames.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/ddshared.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/distributed_tracing_headers.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/dogstatsd.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/dogstatsd_client.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/endpoint_guessing.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/engine_api.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/engine_hooks.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/exception_serialize.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/excluded_modules.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/git.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/handlers_api.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/handlers_exception.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/handlers_httpstreams.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/handlers_internal.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/handlers_kafka.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/handlers_pcntl.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/handlers_signal.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/inferred_proxy_headers.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations/.libs/exec_integration.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations/.libs/integrations.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/ip_extraction.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/standalone_limiter.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/live_debugger.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/logging.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/limiter/.libs/limiter.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/memory_limit.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/otel_config.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/priority_sampling/.libs/priority_sampling.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/process_tags.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/profiling.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/random.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/remote_config.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/serializer.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/sidecar.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/signals.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/span.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/startup_logging.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/telemetry.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/threads.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/trace_source.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/tracer_tag_propagation/.libs/tracer_tag_propagation.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/user_request.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/weak_resources.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/hook/.libs/uhook.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/hook/.libs/uhook_legacy.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/.libs/compat_getrandom.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/interceptor/php8/.libs/interceptor.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/interceptor/php8/.libs/resolver.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/jit_utils/.libs/jit_blacklist.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/sandbox/php8/.libs/sandbox.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/.libs/config.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/.libs/config_decode.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/.libs/config_ini.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/.libs/config_stable_file.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/config/.libs/config_runtime.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/env/.libs/env.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/exceptions/.libs/exceptions.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/headers/.libs/headers.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/hook/.libs/hook.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/json/.libs/json.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/sandbox/.libs/call.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/uri_normalization/.libs/uri_normalization.o /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/zai_string/.libs/string.o` -2026-04-08T18:02:24.646689Z 01O OPT_LEVEL = Some(2) -2026-04-08T18:02:24.646695Z 01O TARGET = Some() -2026-04-08T18:02:24.646702Z 01O OUT_DIR = None -2026-04-08T18:02:24.646704Z 01O CARGO_ENCODED_RUSTFLAGS = None -2026-04-08T18:02:24.646708Z 01O CC_x86_64-unknown-linux-gnu = None -2026-04-08T18:02:24.646713Z 01O CC_x86_64_unknown_linux_gnu = None -2026-04-08T18:02:24.646716Z 01O HOST_CC = None -2026-04-08T18:02:24.646719Z 01O CC = None -2026-04-08T18:02:24.646724Z 01O cargo:rerun-if-env-changed=CC_ENABLE_DEBUG_OUTPUT -2026-04-08T18:02:24.646726Z 01O RUSTC_WRAPPER = None -2026-04-08T18:02:24.646730Z 01O CRATE_CC_NO_DEFAULTS = None -2026-04-08T18:02:24.646734Z 01O DEBUG = None -2026-04-08T18:02:24.646737Z 01O CFLAGS = None -2026-04-08T18:02:24.646740Z 01O HOST_CFLAGS = None -2026-04-08T18:02:24.646745Z 01O CFLAGS_x86_64_unknown_linux_gnu = None -2026-04-08T18:02:24.646748Z 01O CFLAGS_x86_64-unknown-linux-gnu = None -2026-04-08T18:02:24.646753Z 01O compiling: LC_ALL="C" "cc" "-O2" "-ffunction-sections" "-fdata-sections" "-fPIC" "-m64" "--target=x86_64-unknown-linux-gnu" "-Werror" "-Wall" "-Wextra" "-shared" "-o" "mock_php.shared_lib" "mock_php_syms.c" "-ldl" -2026-04-08T18:02:25.147096Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=compile cc -I/ -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension// -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -c //go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/mock_php.c -o //go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/mock_php.lo -MMD -MF //go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/mock_php.dep -MT //go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/mock_php.lo -2026-04-08T18:02:25.147124Z 01O mkdir //go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/.libs -2026-04-08T18:02:25.147154Z 01O cc -I/ -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension// -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Wall -std=gnu11 -c //go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/mock_php.c -MMD -MF //go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/mock_php.dep -MT //go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/mock_php.lo -fPIC -DPIC -o //go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/.libs/mock_php.o -2026-04-08T18:02:25.147268Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=link cc -shared -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/include -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/main -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/opt/php/debug/include/php -I/opt/php/debug/include/php/main -I/opt/php/debug/include/php/TSRM -I/opt/php/debug/include/php/Zend -I/opt/php/debug/include/php/ext -I/opt/php/debug/include/php/ext/date/lib -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/zai/hook -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mpack -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/vendor/mt19937 -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/src/dogstatsd -I/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations -DHAVE_CONFIG_H -g -O0 -fms-extensions -Wno-microsoft-anon-tag -D_GNU_SOURCE -fms-extensions -Wno-microsoft-anon-tag -pthread -fvisibility=hidden -Wl,--undefined-version -o ddtrace.la -export-dynamic -avoid-version -prefer-pic -module -rpath /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/modules -lcurl -lm -lrt -export-symbols /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ddtrace.sym -flto -fuse-linker-plugin /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/target/tracer-release/libddtrace_php.a components/container_id/container_id.lo components/log/log.lo components/sapi/sapi.lo components/string_view/string_view.lo zend_abstract_interface/interceptor/php8/interceptor.lo zend_abstract_interface/interceptor/php8/resolver.lo zend_abstract_interface/jit_utils/jit_blacklist.lo zend_abstract_interface/sandbox/php8/sandbox.lo zend_abstract_interface/config/config.lo zend_abstract_interface/config/config_decode.lo zend_abstract_interface/config/config_ini.lo zend_abstract_interface/config/config_stable_file.lo zend_abstract_interface/config/config_runtime.lo zend_abstract_interface/env/env.lo zend_abstract_interface/exceptions/exceptions.lo zend_abstract_interface/headers/headers.lo zend_abstract_interface/hook/hook.lo zend_abstract_interface/json/json.lo zend_abstract_interface/sandbox/call.lo zend_abstract_interface/uri_normalization/uri_normalization.lo zend_abstract_interface/zai_string/string.lo ext/vendor/mpack/mpack.lo ext/vendor/mt19937/mt19937-64.lo src/dogstatsd/client.lo ext/handlers_curl.lo ext/hook/uhook_attributes.lo ext/hook/uhook_otel.lo ext/handlers_fiber.lo ext/ddtrace.lo ext/agent_info.lo ext/asm_event.lo ext/arrays.lo ext/auto_flush.lo ext/autoload_php_files.lo ext/code_origins.lo ext/collect_backtrace.lo ext/comms_php.lo ext/compat_string.lo ext/coms.lo ext/configuration.lo ext/crashtracking_frames.lo ext/ddshared.lo ext/distributed_tracing_headers.lo ext/dogstatsd.lo ext/dogstatsd_client.lo ext/endpoint_guessing.lo ext/engine_api.lo ext/engine_hooks.lo ext/exception_serialize.lo ext/excluded_modules.lo ext/git.lo ext/handlers_api.lo ext/handlers_exception.lo ext/handlers_httpstreams.lo ext/handlers_internal.lo ext/handlers_kafka.lo ext/handlers_pcntl.lo ext/handlers_signal.lo ext/inferred_proxy_headers.lo ext/integrations/exec_integration.lo ext/integrations/integrations.lo ext/ip_extraction.lo ext/standalone_limiter.lo ext/live_debugger.lo ext/logging.lo ext/limiter/limiter.lo ext/memory_limit.lo ext/otel_config.lo ext/priority_sampling/priority_sampling.lo ext/process_tags.lo ext/profiling.lo ext/random.lo ext/remote_config.lo ext/serializer.lo ext/sidecar.lo ext/signals.lo ext/span.lo ext/startup_logging.lo ext/telemetry.lo ext/threads.lo ext/trace_source.lo ext/tracer_tag_propagation/tracer_tag_propagation.lo ext/user_request.lo ext/weak_resources.lo ext/hook/uhook.lo ext/hook/uhook_legacy.lo ext/compat_getrandom.lo //go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/mock_php.lo -lrt -2026-04-08T18:02:25.647716Z 01O mkdir .libs -2026-04-08T18:02:25.647724Z 01O -2026-04-08T18:02:25.647730Z 01O *** Warning: Linking the shared library ddtrace.la against the -2026-04-08T18:02:25.647737Z 01O *** static library /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/target/tracer-release/libddtrace_php.a is not portable! -2026-04-08T18:02:25.647741Z 01O echo "{ global:" > .libs/ddtrace.ver -2026-04-08T18:02:25.647746Z 01O cat /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ddtrace.sym | sed -e "s/\(.*\)/\1;/" >> .libs/ddtrace.ver -2026-04-08T18:02:25.647753Z 01O echo "local: *; };" >> .libs/ddtrace.ver -2026-04-08T18:02:25.647786Z 01O cc -shared components/container_id/.libs/container_id.o components/log/.libs/log.o components/sapi/.libs/sapi.o components/string_view/.libs/string_view.o zend_abstract_interface/interceptor/php8/.libs/interceptor.o zend_abstract_interface/interceptor/php8/.libs/resolver.o zend_abstract_interface/jit_utils/.libs/jit_blacklist.o zend_abstract_interface/sandbox/php8/.libs/sandbox.o zend_abstract_interface/config/.libs/config.o zend_abstract_interface/config/.libs/config_decode.o zend_abstract_interface/config/.libs/config_ini.o zend_abstract_interface/config/.libs/config_stable_file.o zend_abstract_interface/config/.libs/config_runtime.o zend_abstract_interface/env/.libs/env.o zend_abstract_interface/exceptions/.libs/exceptions.o zend_abstract_interface/headers/.libs/headers.o zend_abstract_interface/hook/.libs/hook.o zend_abstract_interface/json/.libs/json.o zend_abstract_interface/sandbox/.libs/call.o zend_abstract_interface/uri_normalization/.libs/uri_normalization.o zend_abstract_interface/zai_string/.libs/string.o ext/vendor/mpack/.libs/mpack.o ext/vendor/mt19937/.libs/mt19937-64.o src/dogstatsd/.libs/client.o ext/.libs/handlers_curl.o ext/hook/.libs/uhook_attributes.o ext/hook/.libs/uhook_otel.o ext/.libs/handlers_fiber.o ext/.libs/ddtrace.o ext/.libs/agent_info.o ext/.libs/asm_event.o ext/.libs/arrays.o ext/.libs/auto_flush.o ext/.libs/autoload_php_files.o ext/.libs/code_origins.o ext/.libs/collect_backtrace.o ext/.libs/comms_php.o ext/.libs/compat_string.o ext/.libs/coms.o ext/.libs/configuration.o ext/.libs/crashtracking_frames.o ext/.libs/ddshared.o ext/.libs/distributed_tracing_headers.o ext/.libs/dogstatsd.o ext/.libs/dogstatsd_client.o ext/.libs/endpoint_guessing.o ext/.libs/engine_api.o ext/.libs/engine_hooks.o ext/.libs/exception_serialize.o ext/.libs/excluded_modules.o ext/.libs/git.o ext/.libs/handlers_api.o ext/.libs/handlers_exception.o ext/.libs/handlers_httpstreams.o ext/.libs/handlers_internal.o ext/.libs/handlers_kafka.o ext/.libs/handlers_pcntl.o ext/.libs/handlers_signal.o ext/.libs/inferred_proxy_headers.o ext/integrations/.libs/exec_integration.o ext/integrations/.libs/integrations.o ext/.libs/ip_extraction.o ext/.libs/standalone_limiter.o ext/.libs/live_debugger.o ext/.libs/logging.o ext/limiter/.libs/limiter.o ext/.libs/memory_limit.o ext/.libs/otel_config.o ext/priority_sampling/.libs/priority_sampling.o ext/.libs/process_tags.o ext/.libs/profiling.o ext/.libs/random.o ext/.libs/remote_config.o ext/.libs/serializer.o ext/.libs/sidecar.o ext/.libs/signals.o ext/.libs/span.o ext/.libs/startup_logging.o ext/.libs/telemetry.o ext/.libs/threads.o ext/.libs/trace_source.o ext/tracer_tag_propagation/.libs/tracer_tag_propagation.o ext/.libs/user_request.o ext/.libs/weak_resources.o ext/hook/.libs/uhook.o ext/hook/.libs/uhook_legacy.o ext/.libs/compat_getrandom.o //go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/components-rs/.libs/mock_php.o -lcurl -lm /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/target/tracer-release/libddtrace_php.a -lrt -pthread -Wl,--undefined-version -Wl,-soname -Wl,ddtrace.so -Wl,-version-script -Wl,.libs/ddtrace.ver -o .libs/ddtrace.so -2026-04-08T18:02:26.148244Z 01O creating ddtrace.la -2026-04-08T18:02:26.148279Z 01O (cd .libs && rm -f ddtrace.la && ln -s ../ddtrace.la ddtrace.la) -2026-04-08T18:02:26.148287Z 01O /bin/bash /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/libtool --tag=CC --mode=install cp ./ddtrace.la /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/modules -2026-04-08T18:02:26.148296Z 01O cp ./.libs/ddtrace.so /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/modules/ddtrace.so -2026-04-08T18:02:26.148300Z 01O cp ./.libs/ddtrace.lai /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/modules/ddtrace.la -2026-04-08T18:02:26.148305Z 01O PATH="$PATH:/sbin" ldconfig -n /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/modules -2026-04-08T18:02:26.148312Z 01O ---------------------------------------------------------------------- -2026-04-08T18:02:26.148315Z 01O Libraries have been installed in: -2026-04-08T18:02:26.148320Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/modules -2026-04-08T18:02:26.148324Z 01O -2026-04-08T18:02:26.148327Z 01O If you ever happen to want to link against installed libraries -2026-04-08T18:02:26.148330Z 01O in a given directory, LIBDIR, you must either use libtool, and -2026-04-08T18:02:26.148336Z 01O specify the full pathname of the library, or use the `-LLIBDIR' -2026-04-08T18:02:26.148340Z 01O flag during linking and do at least one of the following: -2026-04-08T18:02:26.148365Z 01O - add LIBDIR to the `LD_LIBRARY_PATH' environment variable -2026-04-08T18:02:26.148398Z 01O during execution -2026-04-08T18:02:26.148411Z 01O - add LIBDIR to the `LD_RUN_PATH' environment variable -2026-04-08T18:02:26.148420Z 01O during linking -2026-04-08T18:02:26.148424Z 01O - use the `-Wl,--rpath -Wl,LIBDIR' linker flag -2026-04-08T18:02:26.148427Z 01O - have your system administrator add LIBDIR to `/etc/ld.so.conf' -2026-04-08T18:02:26.148432Z 01O -2026-04-08T18:02:26.148438Z 01O See any operating system documentation about shared libraries for -2026-04-08T18:02:26.148441Z 01O more information, such as the ld(1) and ld.so(8) manual pages. -2026-04-08T18:02:26.148493Z 01O ---------------------------------------------------------------------- -2026-04-08T18:02:26.148514Z 01O -2026-04-08T18:02:26.148517Z 01O Build complete. -2026-04-08T18:02:26.148522Z 01O Don't forget to run 'make test'. -2026-04-08T18:02:26.148538Z 01O -2026-04-08T18:02:26.148545Z 01O make[5]: Leaving directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension' -2026-04-08T18:02:26.148551Z 01O make[4]: Leaving directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php' -2026-04-08T18:02:26.148557Z 01O make[3]: Leaving directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' -2026-04-08T18:02:26.148561Z 01O [ 53%] Built target ddtrace -2026-04-08T18:02:26.148566Z 01O make[2]: Leaving directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' -2026-04-08T18:02:26.148571Z 01O make[1]: *** [CMakeFiles/Makefile2:537: CMakeFiles/xtest.dir/rule] Error 2 -2026-04-08T18:02:26.148575Z 01O make[1]: Leaving directory '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build' -2026-04-08T18:02:26.148578Z 01O make: *** [Makefile:268: xtest] Error 2 -2026-04-08T18:02:26.148584Z 01O -2026-04-08T18:02:26.148643Z 00O section_end:1775671346:step_script -2026-04-08T18:02:26.148645Z 00O+section_start:1775671346:cleanup_file_variables[collapsed=true] -2026-04-08T18:02:26.150240Z 00O+Cleaning up project directory and file based variables -2026-04-08T18:02:26.649018Z 01O -2026-04-08T18:02:26.649088Z 00O section_end:1775671346:cleanup_file_variables -2026-04-08T18:02:26.649090Z 00O+ -2026-04-08T18:02:26.888495Z 00O ERROR: Job failed: command terminated with exit code 1 -2026-04-08T18:02:26.888501Z 00O  diff --git a/appsec-limits.diff b/appsec-limits.diff deleted file mode 100644 index faab5aed827..00000000000 --- a/appsec-limits.diff +++ /dev/null @@ -1,16 +0,0 @@ -diff --git a/.gitlab/generate-appsec.php b/.gitlab/generate-appsec.php -index cd8ef347a..cf729d887 100644 ---- a/.gitlab/generate-appsec.php -+++ b/.gitlab/generate-appsec.php -@@ -71,8 +71,9 @@ stages: - image: registry.ddbuild.io/images/mirror/datadog/dd-trace-ci:php-${PHP_MAJOR_MINOR}_bookworm-6 - variables: - KUBERNETES_CPU_REQUEST: 3 -- KUBERNETES_MEMORY_REQUEST: 4Gi -- KUBERNETES_MEMORY_LIMIT: 4Gi -+ KUBERNETES_CPU_LIMIT: 3 -+ KUBERNETES_MEMORY_REQUEST: 6Gi -+ KUBERNETES_MEMORY_LIMIT: 6Gi - parallel: - matrix: - - PHP_MAJOR_MINOR: *all_minor_major_targets diff --git a/dockerfiles/dev/run_zai_tests_linux.sh b/dockerfiles/dev/run_zai_tests_linux.sh deleted file mode 100755 index c8c44ccef01..00000000000 --- a/dockerfiles/dev/run_zai_tests_linux.sh +++ /dev/null @@ -1,76 +0,0 @@ -#!/usr/bin/env bash -# Run zend_abstract_interface tests (including "SAPI env takes priority over cache") -# inside the dd-trace-php 8.5-bookworm Linux container. -# -# Usage (from repo root): -# ./dockerfiles/dev/run_zai_tests_linux.sh -# → runs this script inside the container (container entrypoint must pass through) -# -# ./dockerfiles/dev/run_zai_tests_linux.sh --docker -# → starts 8.5-bookworm and runs this script inside it (use from host) -# -# With Linux override (recommended on Linux hosts): -# docker compose -f docker-compose.yml -f docker-compose.linux.override.yml run --rm --no-deps 8.5-bookworm ./dockerfiles/dev/run_zai_tests_linux.sh - -set -euo pipefail - -if [[ "${1:-}" == "--docker" ]]; then - SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" - REPO_ROOT="$(cd "${SCRIPT_DIR}/../.." && pwd)" - cd "${REPO_ROOT}" - COMPOSE_FILES="-f docker-compose.yml" - [[ "$(uname)" != "Darwin" && -f docker-compose.linux.override.yml ]] && COMPOSE_FILES="${COMPOSE_FILES} -f docker-compose.linux.override.yml" - # Use container path; repo is mounted at /home/circleci/app - # Named volume zai_linux_build persists build artifacts across runs for faster incremental builds. - # Docker creates named volumes owned by root, so fix permissions first (idempotent). - docker run --rm -v zai_linux_build:/build alpine chmod 777 /build - exec docker compose ${COMPOSE_FILES} run --rm --no-deps \ - -v zai_linux_build:/home/circleci/app/tmp/linux_zai_build \ - 7.0-bookworm /home/circleci/app/dockerfiles/dev/run_zai_tests_linux.sh -fi - -APP_DIR="${APP_DIR:-/home/circleci/app}" -# In CI image, default PHP is switch-php debug → /opt/php/debug -PHP_PREFIX="${PHP_PREFIX:-/opt/php/debug}" -BUILD_DIR="${APP_DIR}/tmp/linux_zai_build" -TEA_BUILD="${BUILD_DIR}/tea-build" -TEA_INSTALL="${BUILD_DIR}/tea-install" -ZAI_BUILD="${BUILD_DIR}/zai-build" - -echo "=== PHP ===" -php -v -php-config --version -echo "PhpConfig_ROOT=${PHP_PREFIX}" - -echo "=== Build Tea ===" -mkdir -p "${TEA_BUILD}" "${TEA_INSTALL}" -cd "${TEA_BUILD}" -if [[ ! -f CMakeCache.txt ]]; then - cmake -DPhpConfig_ROOT="${PHP_PREFIX}" \ - -DCMAKE_BUILD_TYPE=Debug \ - -DCMAKE_INSTALL_PREFIX="${TEA_INSTALL}" \ - "${APP_DIR}/tea" -fi -cmake --build . -cmake --install . - -echo "=== Build zend_abstract_interface with tests ===" -mkdir -p "${ZAI_BUILD}" -cd "${ZAI_BUILD}" -if [[ ! -f CMakeCache.txt ]]; then - cmake -DPhpConfig_ROOT="${PHP_PREFIX}" \ - -DBUILD_ZAI_TESTING=ON \ - -DTea_DIR="${TEA_INSTALL}/cmake" \ - -DCMAKE_BUILD_TYPE=Debug \ - "${APP_DIR}/zend_abstract_interface" -fi -cmake --build . - -echo "=== Run config tests (SAPI env takes priority) ===" -ctest -R "SAPI env takes priority" --output-on-failure -V - -echo "=== Run all config tests ===" -ctest -R "config/" --output-on-failure - -echo "=== Run all env tests ===" -ctest -R "env/" --output-on-failure diff --git a/librust_out.rlib b/librust_out.rlib deleted file mode 100644 index 8c4270aff929ab2e8b227c655657de56250845f2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4608 zcmcf^ZE#z~@!pfHC)>(cCalcRi+6DaEl3HQdfouUnOttGP|1Wv>Ev6=maia?P?@y)d9Q&1x;U=f3q- ztJk17h!QPszN_5g!orw9jh>4mY;9WoCR>5m?ey^==be9k`lSpZ0?Wje7)n-*!W@LM zp$x{b>sJR;;(UE#jzCku#zhcyWx<3PtF`Lhio1oAC793%^96ZVdk~p~BP|eFP~!5_ zuXN!-nE$yX&cdw}P&~pCXZ=rVZ%eZe1f}v=VF0<9VP`c3`oaPYo98UixC}h}SS_b5 z%I7rs+LG^u$oIq^$Fcjj?%ZYCQF`RKt75YZks0~U5?ygoA;%TDIDH|n(S#8Bq_{@^ z#N_2)4E^;L(W>p8{-2s-1B+a|UZX4Ioi=Alq0JG3v&Po7Hv1gbwnp!kW)E+7TJ4Qq zXK3r<>XrFBj-UQV`H^i)n_e2i0ys{m;an~aZ*b{KiVI<-Anct$A}A@ayI3O-1c4+d z#a`#MZwVnHMM{>$#*mxX6l)SzI4P?52(-zH5QZ%unW9LvV@f3}ca*S& zWXlmFXYPGD@_fU`_h;tm-afF3zbmjimO?y9NVyK=z`|`&WMF9 zx;PcRy>$O&^Evg&+{>JZSRn|Gi}xbpHrTPU>xm!PTFoi{G$6ue|zJB+o%7qe8nT!bWo&U zkuQ<2k$)zSkmpH1d1sZmnvjZF?D!bu@dnrA>r>!>362UVb|Vp+#bp$>Ru8T$s;$JoV0e z2k&j$)DSYO>OSuF)h;jFw)6YAy4*s|A)x3NcojdjQ3 z?R8>byc6oCgl|nGtSHceZiF1cYV|qWafC{M)mpu}rdpt`Z3THrJ^mydS*^BBK6|4> zP@dJgZrzX9Cy$8Zo}~RHLgTfAfMd1V-H!TA4c{bBkRx1HbLw@)Tw#7&K45|Q_}LkP z76Q+_d;s%t!63A8>buudhZe_@kW83j0Uh8+qSAC|st6d^QEW0!QSoNl3$^Jl%Bha1 zq$w(C8JAqJFc-@ix14J5Q$AphOMska=~)Y1naSP*^VHx+-JpbYQXPA8aXvfEY@!9ID#Gj*ZO~g6Xq5(=+Jha3 zg8E)ji66ee0+)q$kJFuVw7Z{fEvGtbDc`u{teo=tsm@sKj?&F+g8xdKQ=4{8T4#F zJ2bVrE+T388Xj-KF1a zTDd!5j96|-9Hchb)=sq#-nH&hKZ7-(+N?UtE6%8uQz7L~2o>J2S~_rn6^ zKg``XK$P}{O9#UGannk;P7%!=Qh{T<-rOTj0+Dl=>9m1U=TwPrTAt8eGdcdLfvd5%(zw(@8F z>OFb#c68(>c-PjN*mcfUXFZO0cDB{&ZQj(_@ZbOQZ-0S8q~PAeu^#SD+@GhM0?UNJtb7>i#7K148=KzX1`Kb_tiH%Q7m zdQkraI9V93gAr~YybWU_BWxMH3wbZjZm3A369Z)a`!QN(LCPOY7{X&p|Tj`zB+B(!ec z-q_r((LjF0eM value or use a ... suffix to tell -2026-04-08T19:20:07.209508Z 01O CMake that the project does not need compatibility with older versions. -2026-04-08T19:20:07.209510Z 01O -2026-04-08T19:20:07.209513Z 01O -2026-04-08T19:20:07.209518Z 01O -- Could NOT find GTestSrc (missing: GTEST_SOURCE_DIR GTEST_INCLUDE_DIR) -2026-04-08T19:20:07.209521Z 01O [ 11%] Building C object _deps/zlib-build/CMakeFiles/zlibstatic.dir/inflate.c.o -2026-04-08T19:20:07.209535Z 01O -- Configuring done -2026-04-08T19:20:07.209556Z 01O -- Generating done -2026-04-08T19:20:07.209560Z 01O CMake Warning: -2026-04-08T19:20:07.209564Z 01O Manually-specified variables were not used by the project: -2026-04-08T19:20:07.209569Z 01O -2026-04-08T19:20:07.209571Z 01O CMAKE_POLICY_VERSION_MINIMUM -2026-04-08T19:20:07.209615Z 01O -2026-04-08T19:20:07.209620Z 01O -2026-04-08T19:20:07.209629Z 01O -- Build files have been written to: /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build/third_party/libddwaf/third_party/proj_rapidjson-prefix/src/proj_rapidjson-build -2026-04-08T19:20:07.209634Z 01O [ 12%] No build step for 'proj_rapidjson' -2026-04-08T19:20:07.209640Z 01O [ 14%] Performing install step for 'proj_rapidjson' -2026-04-08T19:20:07.209643Z 01O [ 15%] Building C object _deps/zlib-build/CMakeFiles/zlibstatic.dir/infback.c.o -2026-04-08T19:20:07.209646Z 01O [ 15%] Completed 'proj_rapidjson' -2026-04-08T19:20:07.209654Z 01O [ 15%] Built target proj_rapidjson -2026-04-08T19:20:07.209657Z 01O [ 15%] Building C object _deps/zlib-build/CMakeFiles/zlibstatic.dir/inftrees.c.o -2026-04-08T19:20:07.209661Z 01O [ 15%] Building C object _deps/zlib-build/CMakeFiles/zlibstatic.dir/inffast.c.o -2026-04-08T19:20:07.209668Z 01O [ 15%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/clock.cpp.o -2026-04-08T19:20:07.209671Z 01O [ 15%] Linking CXX static library libcpp-base64.a -2026-04-08T19:20:07.209675Z 01O [ 17%] Building C object _deps/zlib-build/CMakeFiles/zlibstatic.dir/trees.c.o -2026-04-08T19:20:07.209681Z 01O [ 17%] Built target cpp-base64 -2026-04-08T19:20:07.209683Z 01O [ 17%] Building C object _deps/zlib-build/CMakeFiles/zlibstatic.dir/uncompr.c.o -2026-04-08T19:20:07.209689Z 01O [ 17%] Building C object _deps/zlib-build/CMakeFiles/zlibstatic.dir/zutil.c.o -2026-04-08T19:20:07.710101Z 01O [ 17%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/interface.cpp.o -2026-04-08T19:20:07.710112Z 01O [ 19%] Linking C static library libz.a -2026-04-08T19:20:07.710117Z 01O [ 19%] Built target zlibstatic -2026-04-08T19:20:07.710122Z 01O [ 20%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/context.cpp.o -2026-04-08T19:20:08.711354Z 01O [ 20%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/context_allocator.cpp.o -2026-04-08T19:20:09.711869Z 01O In file included from /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/libddwaf/src/context.cpp:15: -2026-04-08T19:20:09.711879Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/libddwaf/src/context.hpp:50:5: warning: explicitly defaulted move constructor is implicitly deleted [-Wdefaulted-function-deleted] -2026-04-08T19:20:09.711886Z 01O 50 | context(context &&) = default; -2026-04-08T19:20:09.711893Z 01O | ^ -2026-04-08T19:20:09.711896Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/libddwaf/src/context.hpp:90:25: note: move constructor of 'context' is implicitly deleted because field 'collector_' has a deleted move constructor -2026-04-08T19:20:09.711903Z 01O 90 | attribute_collector collector_; -2026-04-08T19:20:09.711918Z 01O | ^ -2026-04-08T19:20:09.711931Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/libddwaf/src/attribute_collector.hpp:37:5: note: 'attribute_collector' has been explicitly marked deleted here -2026-04-08T19:20:09.711941Z 01O 37 | attribute_collector(attribute_collector &&other) noexcept = delete; -2026-04-08T19:20:09.711948Z 01O | ^ -2026-04-08T19:20:09.711952Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/libddwaf/src/context.hpp:50:27: note: replace 'default' with 'delete' -2026-04-08T19:20:09.711956Z 01O 50 | context(context &&) = default; -2026-04-08T19:20:09.711962Z 01O | ^~~~~~~ -2026-04-08T19:20:09.711964Z 01O | delete -2026-04-08T19:20:09.711969Z 01O [ 20%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/serializer.cpp.o -2026-04-08T19:20:09.711976Z 01O [ 20%] Building CXX object _deps/spdlog-build/CMakeFiles/spdlog.dir/src/stdout_sinks.cpp.o -2026-04-08T19:20:10.212315Z 01O In file included from /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/libddwaf/src/interface.cpp:18: -2026-04-08T19:20:10.212379Z 01O In file included from /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/libddwaf/src/builder/waf_builder.hpp:14: -2026-04-08T19:20:10.212394Z 01O In file included from /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/libddwaf/src/waf.hpp:11: -2026-04-08T19:20:10.212405Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/libddwaf/src/context.hpp:50:5: warning: explicitly defaulted move constructor is implicitly deleted [-Wdefaulted-function-deleted] -2026-04-08T19:20:10.212417Z 01O 50 | context(context &&) = default; -2026-04-08T19:20:10.212421Z 01O | ^ -2026-04-08T19:20:10.212451Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/libddwaf/src/context.hpp:90:25: note: move constructor of 'context' is implicitly deleted because field 'collector_' has a deleted move constructor -2026-04-08T19:20:10.212465Z 01O 90 | attribute_collector collector_; -2026-04-08T19:20:10.212478Z 01O | ^ -2026-04-08T19:20:10.212482Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/libddwaf/src/attribute_collector.hpp:37:5: note: 'attribute_collector' has been explicitly marked deleted here -2026-04-08T19:20:10.212488Z 01O 37 | attribute_collector(attribute_collector &&other) noexcept = delete; -2026-04-08T19:20:10.212495Z 01O | ^ -2026-04-08T19:20:10.212498Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/third_party/libddwaf/src/context.hpp:50:27: note: replace 'default' with 'delete' -2026-04-08T19:20:10.212503Z 01O 50 | context(context &&) = default; -2026-04-08T19:20:10.212511Z 01O | ^~~~~~~ -2026-04-08T19:20:10.212516Z 01O | delete -2026-04-08T19:20:10.713051Z 01O 1 warning generated. -2026-04-08T19:20:10.713063Z 01O [ 22%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/object.cpp.o -2026-04-08T19:20:11.213489Z 01O [ 22%] Building CXX object _deps/spdlog-build/CMakeFiles/spdlog.dir/src/color_sinks.cpp.o -2026-04-08T19:20:11.714008Z 01O 1 warning generated. -2026-04-08T19:20:11.714022Z 01O [ 22%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/object_helpers.cpp.o -2026-04-08T19:20:12.214805Z 01O [ 22%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/object_store.cpp.o -2026-04-08T19:20:12.214815Z 01O [ 23%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/module.cpp.o -2026-04-08T19:20:12.715429Z 01O [ 25%] Building CXX object _deps/spdlog-build/CMakeFiles/spdlog.dir/src/file_sinks.cpp.o -2026-04-08T19:20:13.215908Z 01O [ 25%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/expression.cpp.o -2026-04-08T19:20:13.716753Z 01O [ 25%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/ruleset_info.cpp.o -2026-04-08T19:20:14.216946Z 01O [ 25%] Building CXX object _deps/spdlog-build/CMakeFiles/spdlog.dir/src/async.cpp.o -2026-04-08T19:20:14.216959Z 01O [ 26%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/ip_utils.cpp.o -2026-04-08T19:20:15.218005Z 01O [ 26%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/iterator.cpp.o -2026-04-08T19:20:15.218015Z 01O [ 26%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/log.cpp.o -2026-04-08T19:20:15.718713Z 01O [ 28%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/obfuscator.cpp.o -2026-04-08T19:20:15.718722Z 01O [ 28%] Building CXX object _deps/spdlog-build/CMakeFiles/spdlog.dir/src/cfg.cpp.o -2026-04-08T19:20:15.718727Z 01O [ 30%] Building CXX object _deps/spdlog-build/CMakeFiles/spdlog.dir/src/bundled_fmtlib_format.cpp.o -2026-04-08T19:20:16.719744Z 01O [ 30%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/uri_utils.cpp.o -2026-04-08T19:20:16.719760Z 01O [ 30%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/json_utils.cpp.o -2026-04-08T19:20:17.220395Z 01O [ 31%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/platform.cpp.o -2026-04-08T19:20:17.220404Z 01O [ 31%] Linking CXX static library libspdlogd.a -2026-04-08T19:20:17.220408Z 01O [ 31%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/sha256.cpp.o -2026-04-08T19:20:17.721020Z 01O [ 31%] Built target spdlog -2026-04-08T19:20:17.721041Z 01O [ 31%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/uuid.cpp.o -2026-04-08T19:20:17.721047Z 01O [ 33%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/action_mapper.cpp.o -2026-04-08T19:20:18.221799Z 01O [ 33%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/attribute_collector.cpp.o -2026-04-08T19:20:18.221816Z 01O [ 33%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/rule.cpp.o -2026-04-08T19:20:18.721927Z 01O [ 34%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/utf8.cpp.o -2026-04-08T19:20:19.222301Z 01O [ 34%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/builder/action_mapper_builder.cpp.o -2026-04-08T19:20:19.722990Z 01O [ 34%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/builder/matcher_builder.cpp.o -2026-04-08T19:20:20.223858Z 01O [ 36%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/builder/module_builder.cpp.o -2026-04-08T19:20:20.223873Z 01O [ 36%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/builder/processor_builder.cpp.o -2026-04-08T19:20:20.724393Z 01O [ 36%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/builder/ruleset_builder.cpp.o -2026-04-08T19:20:22.226062Z 01O [ 38%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/builder/checksum_builder.cpp.o -2026-04-08T19:20:22.226073Z 01O [ 38%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/tokenizer/sql_base.cpp.o -2026-04-08T19:20:22.726740Z 01O [ 38%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/tokenizer/pgsql.cpp.o -2026-04-08T19:20:23.727588Z 01O [ 39%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/tokenizer/mysql.cpp.o -2026-04-08T19:20:23.727598Z 01O [ 39%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/tokenizer/sqlite.cpp.o -2026-04-08T19:20:24.227960Z 01O [ 39%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/tokenizer/generic_sql.cpp.o -2026-04-08T19:20:25.229301Z 01O [ 41%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/tokenizer/shell.cpp.o -2026-04-08T19:20:25.229310Z 01O [ 41%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/exclusion/input_filter.cpp.o -2026-04-08T19:20:25.729963Z 01O [ 41%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/exclusion/object_filter.cpp.o -2026-04-08T19:20:25.729972Z 01O [ 42%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/exclusion/rule_filter.cpp.o -2026-04-08T19:20:26.730955Z 01O [ 42%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/configuration/common/expression_parser.cpp.o -2026-04-08T19:20:27.231681Z 01O [ 42%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/configuration/common/matcher_parser.cpp.o -2026-04-08T19:20:27.732011Z 01O [ 44%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/configuration/common/transformer_parser.cpp.o -2026-04-08T19:20:27.732022Z 01O [ 44%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/configuration/common/raw_configuration.cpp.o -2026-04-08T19:20:29.233571Z 01O [ 44%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/configuration/common/reference_parser.cpp.o -2026-04-08T19:20:29.233634Z 01O [ 46%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/configuration/actions_parser.cpp.o -2026-04-08T19:20:29.733721Z 01O [ 46%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/configuration/data_parser.cpp.o -2026-04-08T19:20:29.733729Z 01O [ 46%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/configuration/exclusion_parser.cpp.o -2026-04-08T19:20:31.735198Z 01O [ 47%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/configuration/processor_parser.cpp.o -2026-04-08T19:20:32.736492Z 01O [ 47%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/configuration/processor_override_parser.cpp.o -2026-04-08T19:20:32.736501Z 01O [ 47%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/configuration/rule_override_parser.cpp.o -2026-04-08T19:20:33.737642Z 01O [ 49%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/configuration/rule_parser.cpp.o -2026-04-08T19:20:35.740003Z 01O [ 49%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/configuration/legacy_rule_parser.cpp.o -2026-04-08T19:20:35.740018Z 01O [ 49%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/configuration/scanner_parser.cpp.o -2026-04-08T19:20:35.740025Z 01O [ 50%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/configuration/configuration_manager.cpp.o -2026-04-08T19:20:37.242057Z 01O [ 50%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/processor/extract_schema.cpp.o -2026-04-08T19:20:38.743556Z 01O [ 50%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/processor/fingerprint.cpp.o -2026-04-08T19:20:39.244240Z 01O [ 52%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/processor/jwt_decode.cpp.o -2026-04-08T19:20:39.244250Z 01O [ 52%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/processor/uri_parse.cpp.o -2026-04-08T19:20:39.744822Z 01O [ 52%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/condition/exists.cpp.o -2026-04-08T19:20:41.246723Z 01O [ 53%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/condition/lfi_detector.cpp.o -2026-04-08T19:20:41.246733Z 01O [ 53%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/condition/sqli_detector.cpp.o -2026-04-08T19:20:41.747391Z 01O [ 53%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/condition/ssrf_detector.cpp.o -2026-04-08T19:20:41.747405Z 01O [ 55%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/condition/scalar_condition.cpp.o -2026-04-08T19:20:42.748692Z 01O [ 55%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/condition/negated_scalar_condition.cpp.o -2026-04-08T19:20:43.749966Z 01O [ 55%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/condition/shi_common.cpp.o -2026-04-08T19:20:43.749982Z 01O [ 57%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/condition/shi_detector.cpp.o -2026-04-08T19:20:43.749993Z 01O [ 57%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/condition/cmdi_detector.cpp.o -2026-04-08T19:20:45.250956Z 01O [ 57%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/checksum/luhn_checksum.cpp.o -2026-04-08T19:20:45.250967Z 01O [ 58%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/matcher/phrase_match.cpp.o -2026-04-08T19:20:46.251977Z 01O [ 58%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/matcher/regex_match.cpp.o -2026-04-08T19:20:46.251985Z 01O [ 58%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/matcher/regex_match_with_checksum.cpp.o -2026-04-08T19:20:46.251989Z 01O [ 58%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/matcher/is_sqli.cpp.o -2026-04-08T19:20:46.752871Z 01O [ 60%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/matcher/is_xss.cpp.o -2026-04-08T19:20:47.253509Z 01O [ 60%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/matcher/ip_match.cpp.o -2026-04-08T19:20:47.253541Z 01O [ 60%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/matcher/exact_match.cpp.o -2026-04-08T19:20:47.253546Z 01O [ 61%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/matcher/hidden_ascii_match.cpp.o -2026-04-08T19:20:47.754346Z 01O [ 61%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/transformer/lowercase.cpp.o -2026-04-08T19:20:48.755472Z 01O [ 61%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/transformer/compress_whitespace.cpp.o -2026-04-08T19:20:48.755481Z 01O [ 63%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/transformer/normalize_path.cpp.o -2026-04-08T19:20:48.755488Z 01O [ 63%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/transformer/manager.cpp.o -2026-04-08T19:20:49.255732Z 01O [ 63%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/transformer/remove_nulls.cpp.o -2026-04-08T19:20:49.755902Z 01O [ 65%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/transformer/remove_comments.cpp.o -2026-04-08T19:20:50.256695Z 01O [ 65%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/transformer/shell_unescape.cpp.o -2026-04-08T19:20:50.256702Z 01O [ 65%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/transformer/unicode_normalize.cpp.o -2026-04-08T19:20:50.757209Z 01O [ 66%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/transformer/url_basename.cpp.o -2026-04-08T19:20:51.257921Z 01O [ 66%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/transformer/url_decode.cpp.o -2026-04-08T19:20:51.257931Z 01O [ 66%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/transformer/url_querystring.cpp.o -2026-04-08T19:20:51.257991Z 01O [ 68%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/transformer/url_path.cpp.o -2026-04-08T19:20:51.758567Z 01O [ 68%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/transformer/base64_decode.cpp.o -2026-04-08T19:20:52.258941Z 01O [ 68%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/transformer/base64_encode.cpp.o -2026-04-08T19:20:52.258979Z 01O [ 69%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/transformer/css_decode.cpp.o -2026-04-08T19:20:52.258992Z 01O [ 69%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/transformer/html_entity_decode.cpp.o -2026-04-08T19:20:52.759577Z 01O [ 69%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/transformer/js_decode.cpp.o -2026-04-08T19:20:53.260477Z 01O [ 71%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/vendor/fmt/format.cc.o -2026-04-08T19:20:53.760966Z 01O [ 71%] Building C object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/vendor/radixlib/radixlib.c.o -2026-04-08T19:20:53.760976Z 01O [ 71%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/vendor/lua-aho-corasick/ac_fast.cxx.o -2026-04-08T19:20:53.760981Z 01O [ 73%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/vendor/lua-aho-corasick/ac_slow.cxx.o -2026-04-08T19:20:54.261634Z 01O [ 73%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/vendor/lua-aho-corasick/ac.cxx.o -2026-04-08T19:20:54.762262Z 01O [ 73%] Building C object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/vendor/libinjection/src/xss.c.o -2026-04-08T19:20:54.762271Z 01O [ 74%] Building C object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/vendor/libinjection/src/libinjection_html5.c.o -2026-04-08T19:20:54.762276Z 01O [ 74%] Building C object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/vendor/libinjection/src/libinjection_xss.c.o -2026-04-08T19:20:55.262919Z 01O [ 74%] Building C object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/vendor/libinjection/src/libinjection_sqli.c.o -2026-04-08T19:20:55.262934Z 01O [ 76%] Building C object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/vendor/utf8proc/utf8proc.c.o -2026-04-08T19:20:55.262940Z 01O [ 76%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/vendor/re2/bitstate.cc.o -2026-04-08T19:20:55.262946Z 01O [ 76%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/vendor/re2/compile.cc.o -2026-04-08T19:20:55.262949Z 01O [ 77%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/vendor/re2/dfa.cc.o -2026-04-08T19:20:55.262954Z 01O [ 77%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/vendor/re2/nfa.cc.o -2026-04-08T19:20:56.263856Z 01O [ 77%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/vendor/re2/onepass.cc.o -2026-04-08T19:20:56.764530Z 01O [ 79%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/vendor/re2/parse.cc.o -2026-04-08T19:20:56.764571Z 01O [ 79%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/vendor/re2/perl_groups.cc.o -2026-04-08T19:20:56.764577Z 01O [ 79%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/vendor/re2/prog.cc.o -2026-04-08T19:20:56.764601Z 01O [ 80%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/vendor/re2/re2.cc.o -2026-04-08T19:20:57.765770Z 01O [ 80%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/vendor/re2/regexp.cc.o -2026-04-08T19:20:58.265942Z 01O [ 80%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/vendor/re2/simplify.cc.o -2026-04-08T19:20:58.265951Z 01O [ 82%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/vendor/re2/tostring.cc.o -2026-04-08T19:20:58.265956Z 01O [ 82%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/vendor/re2/unicode_casefold.cc.o -2026-04-08T19:20:58.766625Z 01O [ 82%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/vendor/re2/unicode_groups.cc.o -2026-04-08T19:20:58.766634Z 01O [ 84%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/vendor/re2/util/rune.cc.o -2026-04-08T19:20:58.766639Z 01O [ 84%] Building CXX object third_party/libddwaf/CMakeFiles/libddwaf_objects.dir/src/vendor/re2/util/strutil.cc.o -2026-04-08T19:20:59.767849Z 01O [ 84%] Built target libddwaf_objects -2026-04-08T19:20:59.767858Z 01O [ 85%] Building CXX object CMakeFiles/helper_objects.dir/src/helper/client.cpp.o -2026-04-08T19:20:59.767863Z 01O [ 85%] Building CXX object CMakeFiles/helper_objects.dir/src/helper/compression.cpp.o -2026-04-08T19:20:59.767869Z 01O [ 85%] Building CXX object CMakeFiles/helper_objects.dir/src/helper/config.cpp.o -2026-04-08T19:20:59.767872Z 01O [ 87%] Building CXX object CMakeFiles/helper_objects.dir/src/helper/engine.cpp.o -2026-04-08T19:21:00.768888Z 01O [ 87%] Building CXX object CMakeFiles/helper_objects.dir/src/helper/engine_settings.cpp.o -2026-04-08T19:21:01.269538Z 01O [ 87%] Building CXX object CMakeFiles/helper_objects.dir/src/helper/json_helper.cpp.o -2026-04-08T19:21:03.271428Z 01O [ 88%] Building CXX object CMakeFiles/helper_objects.dir/src/helper/network/acceptor.cpp.o -2026-04-08T19:21:03.271438Z 01O [ 88%] Building CXX object CMakeFiles/helper_objects.dir/src/helper/network/broker.cpp.o -2026-04-08T19:21:03.772084Z 01O [ 88%] Building CXX object CMakeFiles/helper_objects.dir/src/helper/network/msgpack_helpers.cpp.o -2026-04-08T19:21:04.773453Z 01O [ 90%] Building CXX object CMakeFiles/helper_objects.dir/src/helper/network/proto.cpp.o -2026-04-08T19:21:04.773463Z 01O [ 90%] Building CXX object CMakeFiles/helper_objects.dir/src/helper/network/socket.cpp.o -2026-04-08T19:21:05.774668Z 01O [ 90%] Building CXX object CMakeFiles/helper_objects.dir/src/helper/parameter.cpp.o -2026-04-08T19:21:06.275342Z 01O [ 92%] Building CXX object CMakeFiles/helper_objects.dir/src/helper/parameter_base.cpp.o -2026-04-08T19:21:06.275352Z 01O [ 92%] Building CXX object CMakeFiles/helper_objects.dir/src/helper/remote_config/client.cpp.o -2026-04-08T19:21:06.275357Z 01O [ 92%] Building CXX object CMakeFiles/helper_objects.dir/src/helper/remote_config/client_handler.cpp.o -2026-04-08T19:21:06.776023Z 01O [ 93%] Building CXX object CMakeFiles/helper_objects.dir/src/helper/remote_config/config.cpp.o -2026-04-08T19:21:07.276701Z 01O [ 93%] Building CXX object CMakeFiles/helper_objects.dir/src/helper/remote_config/listeners/asm_features_listener.cpp.o -2026-04-08T19:21:09.288590Z 01O [ 93%] Building CXX object CMakeFiles/helper_objects.dir/src/helper/remote_config/listeners/config_aggregators/asm_aggregator.cpp.o -2026-04-08T19:21:09.288625Z 01O [ 95%] Building CXX object CMakeFiles/helper_objects.dir/src/helper/remote_config/listeners/config_aggregators/asm_features_aggregator.cpp.o -2026-04-08T19:21:09.779920Z 01O [ 95%] Building CXX object CMakeFiles/helper_objects.dir/src/helper/remote_config/listeners/engine_listener.cpp.o -2026-04-08T19:21:09.779936Z 01O [ 95%] Building CXX object CMakeFiles/helper_objects.dir/src/helper/runner.cpp.o -2026-04-08T19:21:11.281807Z 01O [ 95%] Building CXX object CMakeFiles/helper_objects.dir/src/helper/service.cpp.o -2026-04-08T19:21:11.281817Z 01O [ 96%] Building CXX object CMakeFiles/helper_objects.dir/src/helper/service_manager.cpp.o -2026-04-08T19:21:12.783676Z 01O [ 96%] Building CXX object CMakeFiles/helper_objects.dir/src/helper/subscriber/waf.cpp.o -2026-04-08T19:21:13.784991Z 01O [ 96%] Building CXX object CMakeFiles/helper_objects.dir/src/helper/utils.cpp.o -2026-04-08T19:21:15.286939Z 01O [ 98%] Building CXX object CMakeFiles/helper_objects.dir/src/helper/worker_pool.cpp.o -2026-04-08T19:21:16.788980Z 01O [ 98%] Built target helper_objects -2026-04-08T19:21:16.788996Z 01O [100%] Building CXX object CMakeFiles/ddappsec-helper.dir/src/helper/main.cpp.o -2026-04-08T19:21:20.793814Z 01O [100%] Linking CXX shared library libddappsec-helper.so -2026-04-08T19:21:20.793882Z 01O [100%] Built target ddappsec-helper -2026-04-08T19:21:20.793894Z 01O $ make format tidy -2026-04-08T19:21:21.800865Z 01O Built target format -2026-04-08T19:21:21.800878Z 01O [100%] Built target libxml2_build -2026-04-08T19:21:21.800885Z 01O [100%] Using cached Boost libraries -2026-04-08T19:21:21.800904Z 01O Using cached Boost build -2026-04-08T19:21:21.800910Z 01O [100%] Built target boost_build -2026-04-08T19:21:21.800915Z 01O Enabled checks: -2026-04-08T19:21:21.800922Z 01O abseil-cleanup-ctad -2026-04-08T19:21:21.800924Z 01O abseil-duration-addition -2026-04-08T19:21:21.800927Z 01O abseil-duration-comparison -2026-04-08T19:21:21.800932Z 01O abseil-duration-conversion-cast -2026-04-08T19:21:21.800935Z 01O abseil-duration-division -2026-04-08T19:21:21.800938Z 01O abseil-duration-factory-float -2026-04-08T19:21:21.800942Z 01O abseil-duration-factory-scale -2026-04-08T19:21:21.800948Z 01O abseil-duration-subtraction -2026-04-08T19:21:21.800951Z 01O abseil-duration-unnecessary-conversion -2026-04-08T19:21:21.800957Z 01O abseil-faster-strsplit-delimiter -2026-04-08T19:21:21.800959Z 01O abseil-no-internal-dependencies -2026-04-08T19:21:21.800962Z 01O abseil-no-namespace -2026-04-08T19:21:21.800967Z 01O abseil-redundant-strcat-calls -2026-04-08T19:21:21.800969Z 01O abseil-str-cat-append -2026-04-08T19:21:21.800981Z 01O abseil-string-find-startswith -2026-04-08T19:21:21.800998Z 01O abseil-string-find-str-contains -2026-04-08T19:21:21.801008Z 01O abseil-time-comparison -2026-04-08T19:21:21.801012Z 01O abseil-time-subtraction -2026-04-08T19:21:21.801025Z 01O abseil-upgrade-duration-conversions -2026-04-08T19:21:21.801059Z 01O altera-kernel-name-restriction -2026-04-08T19:21:21.801066Z 01O altera-single-work-item-barrier -2026-04-08T19:21:21.801071Z 01O android-cloexec-accept -2026-04-08T19:21:21.801073Z 01O android-cloexec-accept4 -2026-04-08T19:21:21.801076Z 01O android-cloexec-creat -2026-04-08T19:21:21.801081Z 01O android-cloexec-dup -2026-04-08T19:21:21.801083Z 01O android-cloexec-epoll-create -2026-04-08T19:21:21.801086Z 01O android-cloexec-epoll-create1 -2026-04-08T19:21:21.801091Z 01O android-cloexec-fopen -2026-04-08T19:21:21.801094Z 01O android-cloexec-inotify-init -2026-04-08T19:21:21.801097Z 01O android-cloexec-inotify-init1 -2026-04-08T19:21:21.801102Z 01O android-cloexec-memfd-create -2026-04-08T19:21:21.801104Z 01O android-cloexec-open -2026-04-08T19:21:21.801108Z 01O android-cloexec-pipe -2026-04-08T19:21:21.801113Z 01O android-cloexec-pipe2 -2026-04-08T19:21:21.801116Z 01O android-cloexec-socket -2026-04-08T19:21:21.801119Z 01O android-comparison-in-temp-failure-retry -2026-04-08T19:21:21.801125Z 01O boost-use-ranges -2026-04-08T19:21:21.801127Z 01O boost-use-to-string -2026-04-08T19:21:21.801132Z 01O bugprone-argument-comment -2026-04-08T19:21:21.801137Z 01O bugprone-assert-side-effect -2026-04-08T19:21:21.801141Z 01O bugprone-assignment-in-if-condition -2026-04-08T19:21:21.801145Z 01O bugprone-bad-signal-to-kill-thread -2026-04-08T19:21:21.801159Z 01O bugprone-bool-pointer-implicit-conversion -2026-04-08T19:21:21.801168Z 01O bugprone-branch-clone -2026-04-08T19:21:21.801173Z 01O bugprone-casting-through-void -2026-04-08T19:21:21.801193Z 01O bugprone-chained-comparison -2026-04-08T19:21:21.801198Z 01O bugprone-compare-pointer-to-member-virtual-function -2026-04-08T19:21:21.801203Z 01O bugprone-copy-constructor-init -2026-04-08T19:21:21.801209Z 01O bugprone-crtp-constructor-accessibility -2026-04-08T19:21:21.801213Z 01O bugprone-dangling-handle -2026-04-08T19:21:21.801216Z 01O bugprone-dynamic-static-initializers -2026-04-08T19:21:21.801223Z 01O bugprone-easily-swappable-parameters -2026-04-08T19:21:21.801226Z 01O bugprone-exception-escape -2026-04-08T19:21:21.801229Z 01O bugprone-fold-init-type -2026-04-08T19:21:21.801234Z 01O bugprone-forward-declaration-namespace -2026-04-08T19:21:21.801288Z 01O bugprone-forwarding-reference-overload -2026-04-08T19:21:21.801294Z 01O bugprone-implicit-widening-of-multiplication-result -2026-04-08T19:21:21.801312Z 01O bugprone-inaccurate-erase -2026-04-08T19:21:21.801323Z 01O bugprone-inc-dec-in-conditions -2026-04-08T19:21:21.801328Z 01O bugprone-incorrect-enable-if -2026-04-08T19:21:21.801338Z 01O bugprone-incorrect-roundings -2026-04-08T19:21:21.801346Z 01O bugprone-infinite-loop -2026-04-08T19:21:21.801350Z 01O bugprone-integer-division -2026-04-08T19:21:21.801360Z 01O bugprone-lambda-function-name -2026-04-08T19:21:21.801369Z 01O bugprone-macro-parentheses -2026-04-08T19:21:21.801373Z 01O bugprone-macro-repeated-side-effects -2026-04-08T19:21:21.801383Z 01O bugprone-misplaced-operator-in-strlen-in-alloc -2026-04-08T19:21:21.801386Z 01O bugprone-misplaced-pointer-arithmetic-in-alloc -2026-04-08T19:21:21.801390Z 01O bugprone-misplaced-widening-cast -2026-04-08T19:21:21.801395Z 01O bugprone-move-forwarding-reference -2026-04-08T19:21:21.801398Z 01O bugprone-multi-level-implicit-pointer-conversion -2026-04-08T19:21:21.801402Z 01O bugprone-multiple-new-in-one-expression -2026-04-08T19:21:21.801407Z 01O bugprone-multiple-statement-macro -2026-04-08T19:21:21.801410Z 01O bugprone-narrowing-conversions -2026-04-08T19:21:21.801414Z 01O bugprone-no-escape -2026-04-08T19:21:21.801419Z 01O bugprone-non-zero-enum-to-bool-conversion -2026-04-08T19:21:21.801421Z 01O bugprone-not-null-terminated-result -2026-04-08T19:21:21.801425Z 01O bugprone-optional-value-conversion -2026-04-08T19:21:21.801430Z 01O bugprone-parent-virtual-call -2026-04-08T19:21:21.801433Z 01O bugprone-pointer-arithmetic-on-polymorphic-object -2026-04-08T19:21:21.801436Z 01O bugprone-posix-return -2026-04-08T19:21:21.801443Z 01O bugprone-redundant-branch-condition -2026-04-08T19:21:21.801446Z 01O bugprone-return-const-ref-from-parameter -2026-04-08T19:21:21.801458Z 01O bugprone-shared-ptr-array-mismatch -2026-04-08T19:21:21.801466Z 01O bugprone-signal-handler -2026-04-08T19:21:21.801469Z 01O bugprone-signed-char-misuse -2026-04-08T19:21:21.801472Z 01O bugprone-sizeof-container -2026-04-08T19:21:21.801481Z 01O bugprone-sizeof-expression -2026-04-08T19:21:21.801484Z 01O bugprone-spuriously-wake-up-functions -2026-04-08T19:21:21.801487Z 01O bugprone-standalone-empty -2026-04-08T19:21:21.801494Z 01O bugprone-string-constructor -2026-04-08T19:21:21.801497Z 01O bugprone-string-integer-assignment -2026-04-08T19:21:21.801501Z 01O bugprone-string-literal-with-embedded-nul -2026-04-08T19:21:21.801506Z 01O bugprone-stringview-nullptr -2026-04-08T19:21:21.801509Z 01O bugprone-suspicious-enum-usage -2026-04-08T19:21:21.801513Z 01O bugprone-suspicious-include -2026-04-08T19:21:21.801518Z 01O bugprone-suspicious-memory-comparison -2026-04-08T19:21:21.801521Z 01O bugprone-suspicious-memset-usage -2026-04-08T19:21:21.801524Z 01O bugprone-suspicious-missing-comma -2026-04-08T19:21:21.801530Z 01O bugprone-suspicious-realloc-usage -2026-04-08T19:21:21.801532Z 01O bugprone-suspicious-semicolon -2026-04-08T19:21:21.801536Z 01O bugprone-suspicious-string-compare -2026-04-08T19:21:21.801542Z 01O bugprone-suspicious-stringview-data-usage -2026-04-08T19:21:21.801545Z 01O bugprone-swapped-arguments -2026-04-08T19:21:21.801549Z 01O bugprone-switch-missing-default-case -2026-04-08T19:21:21.801555Z 01O bugprone-terminating-continue -2026-04-08T19:21:21.801562Z 01O bugprone-throw-keyword-missing -2026-04-08T19:21:21.801566Z 01O bugprone-too-small-loop-variable -2026-04-08T19:21:21.801587Z 01O bugprone-unchecked-optional-access -2026-04-08T19:21:21.801590Z 01O bugprone-undefined-memory-manipulation -2026-04-08T19:21:21.801595Z 01O bugprone-undelegated-constructor -2026-04-08T19:21:21.801602Z 01O bugprone-unhandled-exception-at-new -2026-04-08T19:21:21.801605Z 01O bugprone-unhandled-self-assignment -2026-04-08T19:21:21.801608Z 01O bugprone-unique-ptr-array-mismatch -2026-04-08T19:21:21.801637Z 01O bugprone-unsafe-functions -2026-04-08T19:21:21.801640Z 01O bugprone-unused-local-non-trivial-variable -2026-04-08T19:21:21.801644Z 01O bugprone-unused-raii -2026-04-08T19:21:21.801650Z 01O bugprone-unused-return-value -2026-04-08T19:21:21.801659Z 01O bugprone-use-after-move -2026-04-08T19:21:21.801663Z 01O bugprone-virtual-near-miss -2026-04-08T19:21:21.801674Z 01O cert-con36-c -2026-04-08T19:21:21.801682Z 01O cert-con54-cpp -2026-04-08T19:21:21.801686Z 01O cert-ctr56-cpp -2026-04-08T19:21:21.801701Z 01O cert-dcl03-c -2026-04-08T19:21:21.801712Z 01O cert-dcl16-c -2026-04-08T19:21:21.801716Z 01O cert-dcl50-cpp -2026-04-08T19:21:21.801727Z 01O cert-dcl54-cpp -2026-04-08T19:21:21.801735Z 01O cert-dcl58-cpp -2026-04-08T19:21:21.801739Z 01O cert-dcl59-cpp -2026-04-08T19:21:21.801751Z 01O cert-env33-c -2026-04-08T19:21:21.801758Z 01O cert-err09-cpp -2026-04-08T19:21:21.801762Z 01O cert-err33-c -2026-04-08T19:21:21.801780Z 01O cert-err34-c -2026-04-08T19:21:21.801783Z 01O cert-err52-cpp -2026-04-08T19:21:21.801788Z 01O cert-err58-cpp -2026-04-08T19:21:21.801793Z 01O cert-err60-cpp -2026-04-08T19:21:21.801795Z 01O cert-err61-cpp -2026-04-08T19:21:21.801798Z 01O cert-exp42-c -2026-04-08T19:21:21.801804Z 01O cert-fio38-c -2026-04-08T19:21:21.801807Z 01O cert-flp30-c -2026-04-08T19:21:21.801810Z 01O cert-flp37-c -2026-04-08T19:21:21.801814Z 01O cert-int09-c -2026-04-08T19:21:21.801816Z 01O cert-mem57-cpp -2026-04-08T19:21:21.801819Z 01O cert-msc24-c -2026-04-08T19:21:21.801824Z 01O cert-msc30-c -2026-04-08T19:21:21.801827Z 01O cert-msc32-c -2026-04-08T19:21:21.801830Z 01O cert-msc33-c -2026-04-08T19:21:21.801835Z 01O cert-msc50-cpp -2026-04-08T19:21:21.801837Z 01O cert-msc51-cpp -2026-04-08T19:21:21.801840Z 01O cert-msc54-cpp -2026-04-08T19:21:21.801844Z 01O cert-oop11-cpp -2026-04-08T19:21:21.801851Z 01O cert-oop54-cpp -2026-04-08T19:21:21.801854Z 01O cert-oop57-cpp -2026-04-08T19:21:21.801872Z 01O cert-oop58-cpp -2026-04-08T19:21:21.801876Z 01O cert-pos44-c -2026-04-08T19:21:21.801880Z 01O cert-pos47-c -2026-04-08T19:21:21.801886Z 01O cert-sig30-c -2026-04-08T19:21:21.801888Z 01O cert-str34-c -2026-04-08T19:21:21.801892Z 01O clang-analyzer-apiModeling.Errno -2026-04-08T19:21:21.801898Z 01O clang-analyzer-apiModeling.TrustNonnull -2026-04-08T19:21:21.801901Z 01O clang-analyzer-apiModeling.TrustReturnsNonnull -2026-04-08T19:21:21.801905Z 01O clang-analyzer-apiModeling.google.GTest -2026-04-08T19:21:21.801912Z 01O clang-analyzer-apiModeling.llvm.CastValue -2026-04-08T19:21:21.801915Z 01O clang-analyzer-apiModeling.llvm.ReturnValue -2026-04-08T19:21:21.801920Z 01O clang-analyzer-core.BitwiseShift -2026-04-08T19:21:21.801926Z 01O clang-analyzer-core.CallAndMessage -2026-04-08T19:21:21.801929Z 01O clang-analyzer-core.CallAndMessageModeling -2026-04-08T19:21:21.801933Z 01O clang-analyzer-core.DivideZero -2026-04-08T19:21:21.801939Z 01O clang-analyzer-core.DynamicTypePropagation -2026-04-08T19:21:21.801941Z 01O clang-analyzer-core.NonNullParamChecker -2026-04-08T19:21:21.801945Z 01O clang-analyzer-core.NonnilStringConstants -2026-04-08T19:21:21.801951Z 01O clang-analyzer-core.NullDereference -2026-04-08T19:21:21.801953Z 01O clang-analyzer-core.StackAddrEscapeBase -2026-04-08T19:21:21.801957Z 01O clang-analyzer-core.StackAddressEscape -2026-04-08T19:21:21.801962Z 01O clang-analyzer-core.UndefinedBinaryOperatorResult -2026-04-08T19:21:21.801965Z 01O clang-analyzer-core.VLASize -2026-04-08T19:21:21.801968Z 01O clang-analyzer-core.builtin.BuiltinFunctions -2026-04-08T19:21:21.801973Z 01O clang-analyzer-core.builtin.NoReturnFunctions -2026-04-08T19:21:21.801976Z 01O clang-analyzer-core.uninitialized.ArraySubscript -2026-04-08T19:21:21.801981Z 01O clang-analyzer-core.uninitialized.Assign -2026-04-08T19:21:21.801986Z 01O clang-analyzer-core.uninitialized.Branch -2026-04-08T19:21:21.801989Z 01O clang-analyzer-core.uninitialized.CapturedBlockVariable -2026-04-08T19:21:21.802019Z 01O clang-analyzer-core.uninitialized.NewArraySize -2026-04-08T19:21:21.802040Z 01O clang-analyzer-core.uninitialized.UndefReturn -2026-04-08T19:21:21.802045Z 01O clang-analyzer-cplusplus.ArrayDelete -2026-04-08T19:21:21.802049Z 01O clang-analyzer-cplusplus.InnerPointer -2026-04-08T19:21:21.802057Z 01O clang-analyzer-cplusplus.Move -2026-04-08T19:21:21.802059Z 01O clang-analyzer-cplusplus.NewDelete -2026-04-08T19:21:21.802063Z 01O clang-analyzer-cplusplus.NewDeleteLeaks -2026-04-08T19:21:21.802068Z 01O clang-analyzer-cplusplus.PlacementNew -2026-04-08T19:21:21.802071Z 01O clang-analyzer-cplusplus.PureVirtualCall -2026-04-08T19:21:21.802074Z 01O clang-analyzer-cplusplus.SelfAssignment -2026-04-08T19:21:21.802080Z 01O clang-analyzer-cplusplus.SmartPtrModeling -2026-04-08T19:21:21.802083Z 01O clang-analyzer-cplusplus.StringChecker -2026-04-08T19:21:21.802088Z 01O clang-analyzer-cplusplus.VirtualCallModeling -2026-04-08T19:21:21.802093Z 01O clang-analyzer-deadcode.DeadStores -2026-04-08T19:21:21.802096Z 01O clang-analyzer-fuchsia.HandleChecker -2026-04-08T19:21:21.802099Z 01O clang-analyzer-nullability.NullPassedToNonnull -2026-04-08T19:21:21.802105Z 01O clang-analyzer-nullability.NullReturnedFromNonnull -2026-04-08T19:21:21.802107Z 01O clang-analyzer-nullability.NullabilityBase -2026-04-08T19:21:21.802111Z 01O clang-analyzer-nullability.NullableDereferenced -2026-04-08T19:21:21.802117Z 01O clang-analyzer-nullability.NullablePassedToNonnull -2026-04-08T19:21:21.802120Z 01O clang-analyzer-nullability.NullableReturnedFromNonnull -2026-04-08T19:21:21.802130Z 01O clang-analyzer-optin.core.EnumCastOutOfRange -2026-04-08T19:21:21.802135Z 01O clang-analyzer-optin.cplusplus.UninitializedObject -2026-04-08T19:21:21.802138Z 01O clang-analyzer-optin.cplusplus.VirtualCall -2026-04-08T19:21:21.802142Z 01O clang-analyzer-optin.mpi.MPI-Checker -2026-04-08T19:21:21.802148Z 01O clang-analyzer-optin.osx.OSObjectCStyleCast -2026-04-08T19:21:21.802151Z 01O clang-analyzer-optin.osx.cocoa.localizability.EmptyLocalizationContextChecker -2026-04-08T19:21:21.802155Z 01O clang-analyzer-optin.osx.cocoa.localizability.NonLocalizedStringChecker -2026-04-08T19:21:21.802168Z 01O clang-analyzer-optin.performance.GCDAntipattern -2026-04-08T19:21:21.802176Z 01O clang-analyzer-optin.performance.Padding -2026-04-08T19:21:21.802181Z 01O clang-analyzer-optin.portability.UnixAPI -2026-04-08T19:21:21.802192Z 01O clang-analyzer-optin.taint.TaintedAlloc -2026-04-08T19:21:21.802200Z 01O clang-analyzer-osx.API -2026-04-08T19:21:21.802205Z 01O clang-analyzer-osx.MIG -2026-04-08T19:21:21.802217Z 01O clang-analyzer-osx.NSOrCFErrorDerefChecker -2026-04-08T19:21:21.802226Z 01O clang-analyzer-osx.NumberObjectConversion -2026-04-08T19:21:21.802230Z 01O clang-analyzer-osx.OSObjectRetainCount -2026-04-08T19:21:21.802242Z 01O clang-analyzer-osx.ObjCProperty -2026-04-08T19:21:21.802245Z 01O clang-analyzer-osx.SecKeychainAPI -2026-04-08T19:21:21.802249Z 01O clang-analyzer-osx.cocoa.AtSync -2026-04-08T19:21:21.802254Z 01O clang-analyzer-osx.cocoa.AutoreleaseWrite -2026-04-08T19:21:21.802257Z 01O clang-analyzer-osx.cocoa.ClassRelease -2026-04-08T19:21:21.802260Z 01O clang-analyzer-osx.cocoa.Dealloc -2026-04-08T19:21:21.802265Z 01O clang-analyzer-osx.cocoa.IncompatibleMethodTypes -2026-04-08T19:21:21.802268Z 01O clang-analyzer-osx.cocoa.Loops -2026-04-08T19:21:21.802272Z 01O clang-analyzer-osx.cocoa.MissingSuperCall -2026-04-08T19:21:21.802279Z 01O clang-analyzer-osx.cocoa.NSAutoreleasePool -2026-04-08T19:21:21.802282Z 01O clang-analyzer-osx.cocoa.NSError -2026-04-08T19:21:21.802286Z 01O clang-analyzer-osx.cocoa.NilArg -2026-04-08T19:21:21.802293Z 01O clang-analyzer-osx.cocoa.NonNilReturnValue -2026-04-08T19:21:21.802296Z 01O clang-analyzer-osx.cocoa.ObjCGenerics -2026-04-08T19:21:21.802299Z 01O clang-analyzer-osx.cocoa.RetainCount -2026-04-08T19:21:21.802304Z 01O clang-analyzer-osx.cocoa.RetainCountBase -2026-04-08T19:21:21.802327Z 01O clang-analyzer-osx.cocoa.RunLoopAutoreleaseLeak -2026-04-08T19:21:21.802332Z 01O clang-analyzer-osx.cocoa.SelfInit -2026-04-08T19:21:21.802353Z 01O clang-analyzer-osx.cocoa.SuperDealloc -2026-04-08T19:21:21.802356Z 01O clang-analyzer-osx.cocoa.UnusedIvars -2026-04-08T19:21:21.802362Z 01O clang-analyzer-osx.cocoa.VariadicMethodTypes -2026-04-08T19:21:21.802367Z 01O clang-analyzer-osx.coreFoundation.CFError -2026-04-08T19:21:21.802370Z 01O clang-analyzer-osx.coreFoundation.CFNumber -2026-04-08T19:21:21.802375Z 01O clang-analyzer-osx.coreFoundation.CFRetainRelease -2026-04-08T19:21:21.802380Z 01O clang-analyzer-osx.coreFoundation.containers.OutOfBounds -2026-04-08T19:21:21.802383Z 01O clang-analyzer-osx.coreFoundation.containers.PointerSizedValues -2026-04-08T19:21:21.802386Z 01O clang-analyzer-security.FloatLoopCounter -2026-04-08T19:21:21.802392Z 01O clang-analyzer-security.PutenvStackArray -2026-04-08T19:21:21.802395Z 01O clang-analyzer-security.SetgidSetuidOrder -2026-04-08T19:21:21.802399Z 01O clang-analyzer-security.cert.env.InvalidPtr -2026-04-08T19:21:21.802405Z 01O clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling -2026-04-08T19:21:21.802408Z 01O clang-analyzer-security.insecureAPI.SecuritySyntaxChecker -2026-04-08T19:21:21.802411Z 01O clang-analyzer-security.insecureAPI.UncheckedReturn -2026-04-08T19:21:21.802416Z 01O clang-analyzer-security.insecureAPI.bcmp -2026-04-08T19:21:21.802419Z 01O clang-analyzer-security.insecureAPI.bcopy -2026-04-08T19:21:21.802428Z 01O clang-analyzer-security.insecureAPI.bzero -2026-04-08T19:21:21.802444Z 01O clang-analyzer-security.insecureAPI.decodeValueOfObjCType -2026-04-08T19:21:21.802454Z 01O clang-analyzer-security.insecureAPI.getpw -2026-04-08T19:21:21.802459Z 01O clang-analyzer-security.insecureAPI.gets -2026-04-08T19:21:21.802469Z 01O clang-analyzer-security.insecureAPI.mkstemp -2026-04-08T19:21:21.802477Z 01O clang-analyzer-security.insecureAPI.mktemp -2026-04-08T19:21:21.802482Z 01O clang-analyzer-security.insecureAPI.rand -2026-04-08T19:21:21.802495Z 01O clang-analyzer-security.insecureAPI.strcpy -2026-04-08T19:21:21.802504Z 01O clang-analyzer-security.insecureAPI.vfork -2026-04-08T19:21:21.802508Z 01O clang-analyzer-unix.API -2026-04-08T19:21:21.802521Z 01O clang-analyzer-unix.BlockInCriticalSection -2026-04-08T19:21:21.802530Z 01O clang-analyzer-unix.DynamicMemoryModeling -2026-04-08T19:21:21.802534Z 01O clang-analyzer-unix.Errno -2026-04-08T19:21:21.802544Z 01O clang-analyzer-unix.Malloc -2026-04-08T19:21:21.802552Z 01O clang-analyzer-unix.MallocSizeof -2026-04-08T19:21:21.802556Z 01O clang-analyzer-unix.MismatchedDeallocator -2026-04-08T19:21:21.802567Z 01O clang-analyzer-unix.StdCLibraryFunctions -2026-04-08T19:21:21.802575Z 01O clang-analyzer-unix.Stream -2026-04-08T19:21:21.802579Z 01O clang-analyzer-unix.Vfork -2026-04-08T19:21:21.802593Z 01O clang-analyzer-unix.cstring.BadSizeArg -2026-04-08T19:21:21.802602Z 01O clang-analyzer-unix.cstring.CStringModeling -2026-04-08T19:21:21.802607Z 01O clang-analyzer-unix.cstring.NullArg -2026-04-08T19:21:21.802613Z 01O clang-analyzer-valist.CopyToSelf -2026-04-08T19:21:21.802615Z 01O clang-analyzer-valist.Uninitialized -2026-04-08T19:21:21.802619Z 01O clang-analyzer-valist.Unterminated -2026-04-08T19:21:21.802624Z 01O clang-analyzer-valist.ValistBase -2026-04-08T19:21:21.802627Z 01O clang-analyzer-webkit.NoUncountedMemberChecker -2026-04-08T19:21:21.802632Z 01O clang-analyzer-webkit.RefCntblBaseVirtualDtor -2026-04-08T19:21:21.802639Z 01O clang-analyzer-webkit.UncountedLambdaCapturesChecker -2026-04-08T19:21:21.802641Z 01O concurrency-mt-unsafe -2026-04-08T19:21:21.802645Z 01O concurrency-thread-canceltype-asynchronous -2026-04-08T19:21:21.802650Z 01O cppcoreguidelines-avoid-c-arrays -2026-04-08T19:21:21.802653Z 01O cppcoreguidelines-avoid-capturing-lambda-coroutines -2026-04-08T19:21:21.802677Z 01O cppcoreguidelines-avoid-const-or-ref-data-members -2026-04-08T19:21:21.802693Z 01O cppcoreguidelines-avoid-goto -2026-04-08T19:21:21.802703Z 01O cppcoreguidelines-avoid-magic-numbers -2026-04-08T19:21:21.802707Z 01O cppcoreguidelines-avoid-reference-coroutine-parameters -2026-04-08T19:21:21.802719Z 01O cppcoreguidelines-c-copy-assignment-signature -2026-04-08T19:21:21.802727Z 01O cppcoreguidelines-explicit-virtual-functions -2026-04-08T19:21:21.802732Z 01O cppcoreguidelines-interfaces-global-init -2026-04-08T19:21:21.802742Z 01O cppcoreguidelines-macro-to-enum -2026-04-08T19:21:21.802751Z 01O cppcoreguidelines-macro-usage -2026-04-08T19:21:21.802756Z 01O cppcoreguidelines-misleading-capture-default-by-value -2026-04-08T19:21:21.802768Z 01O cppcoreguidelines-missing-std-forward -2026-04-08T19:21:21.802777Z 01O cppcoreguidelines-narrowing-conversions -2026-04-08T19:21:21.802782Z 01O cppcoreguidelines-no-malloc -2026-04-08T19:21:21.802792Z 01O cppcoreguidelines-no-suspend-with-lock -2026-04-08T19:21:21.802800Z 01O cppcoreguidelines-noexcept-destructor -2026-04-08T19:21:21.802804Z 01O cppcoreguidelines-noexcept-move-operations -2026-04-08T19:21:21.802814Z 01O cppcoreguidelines-noexcept-swap -2026-04-08T19:21:21.802822Z 01O cppcoreguidelines-owning-memory -2026-04-08T19:21:21.802827Z 01O cppcoreguidelines-prefer-member-initializer -2026-04-08T19:21:21.802839Z 01O cppcoreguidelines-pro-bounds-array-to-pointer-decay -2026-04-08T19:21:21.802846Z 01O cppcoreguidelines-pro-bounds-constant-array-index -2026-04-08T19:21:21.802851Z 01O cppcoreguidelines-pro-type-const-cast -2026-04-08T19:21:21.802861Z 01O cppcoreguidelines-pro-type-cstyle-cast -2026-04-08T19:21:21.802869Z 01O cppcoreguidelines-pro-type-member-init -2026-04-08T19:21:21.802873Z 01O cppcoreguidelines-pro-type-reinterpret-cast -2026-04-08T19:21:21.802884Z 01O cppcoreguidelines-pro-type-static-cast-downcast -2026-04-08T19:21:21.802892Z 01O cppcoreguidelines-pro-type-vararg -2026-04-08T19:21:21.802896Z 01O cppcoreguidelines-rvalue-reference-param-not-moved -2026-04-08T19:21:21.802907Z 01O cppcoreguidelines-slicing -2026-04-08T19:21:21.802914Z 01O cppcoreguidelines-special-member-functions -2026-04-08T19:21:21.802920Z 01O cppcoreguidelines-use-default-member-init -2026-04-08T19:21:21.802929Z 01O cppcoreguidelines-virtual-class-destructor -2026-04-08T19:21:21.802932Z 01O darwin-avoid-spinlock -2026-04-08T19:21:21.802935Z 01O darwin-dispatch-once-nonstatic -2026-04-08T19:21:21.802941Z 01O fuchsia-header-anon-namespaces -2026-04-08T19:21:21.802943Z 01O fuchsia-multiple-inheritance -2026-04-08T19:21:21.802946Z 01O fuchsia-statically-constructed-objects -2026-04-08T19:21:21.802952Z 01O fuchsia-trailing-return -2026-04-08T19:21:21.802954Z 01O fuchsia-virtual-inheritance -2026-04-08T19:21:21.802957Z 01O google-build-explicit-make-pair -2026-04-08T19:21:21.802962Z 01O google-build-namespaces -2026-04-08T19:21:21.802966Z 01O google-build-using-namespace -2026-04-08T19:21:21.802969Z 01O google-default-arguments -2026-04-08T19:21:21.802974Z 01O google-explicit-constructor -2026-04-08T19:21:21.802978Z 01O google-global-names-in-headers -2026-04-08T19:21:21.802981Z 01O google-objc-avoid-nsobject-new -2026-04-08T19:21:21.802993Z 01O google-objc-avoid-throwing-exception -2026-04-08T19:21:21.803000Z 01O google-objc-function-naming -2026-04-08T19:21:21.803005Z 01O google-objc-global-variable-declaration -2026-04-08T19:21:21.803016Z 01O google-readability-avoid-underscore-in-googletest-name -2026-04-08T19:21:21.803023Z 01O google-readability-braces-around-statements -2026-04-08T19:21:21.803040Z 01O google-readability-function-size -2026-04-08T19:21:21.803044Z 01O google-readability-namespace-comments -2026-04-08T19:21:21.803054Z 01O google-runtime-int -2026-04-08T19:21:21.803067Z 01O google-runtime-operator -2026-04-08T19:21:21.803075Z 01O google-upgrade-googletest-case -2026-04-08T19:21:21.803079Z 01O hicpp-avoid-goto -2026-04-08T19:21:21.803112Z 01O hicpp-braces-around-statements -2026-04-08T19:21:21.803117Z 01O hicpp-deprecated-headers -2026-04-08T19:21:21.803127Z 01O hicpp-exception-baseclass -2026-04-08T19:21:21.803134Z 01O hicpp-explicit-conversions -2026-04-08T19:21:21.803138Z 01O hicpp-function-size -2026-04-08T19:21:21.803148Z 01O hicpp-ignored-remove-result -2026-04-08T19:21:21.803155Z 01O hicpp-invalid-access-moved -2026-04-08T19:21:21.803159Z 01O hicpp-member-init -2026-04-08T19:21:21.803171Z 01O hicpp-move-const-arg -2026-04-08T19:21:21.803178Z 01O hicpp-multiway-paths-covered -2026-04-08T19:21:21.803182Z 01O hicpp-new-delete-operators -2026-04-08T19:21:21.803192Z 01O hicpp-no-assembler -2026-04-08T19:21:21.803199Z 01O hicpp-no-malloc -2026-04-08T19:21:21.803203Z 01O hicpp-noexcept-move -2026-04-08T19:21:21.803214Z 01O hicpp-special-member-functions -2026-04-08T19:21:21.803221Z 01O hicpp-static-assert -2026-04-08T19:21:21.803225Z 01O hicpp-undelegated-constructor -2026-04-08T19:21:21.803236Z 01O hicpp-uppercase-literal-suffix -2026-04-08T19:21:21.803244Z 01O hicpp-use-auto -2026-04-08T19:21:21.803249Z 01O hicpp-use-emplace -2026-04-08T19:21:21.803257Z 01O hicpp-use-equals-default -2026-04-08T19:21:21.803264Z 01O hicpp-use-equals-delete -2026-04-08T19:21:21.803268Z 01O hicpp-use-noexcept -2026-04-08T19:21:21.803278Z 01O hicpp-use-nullptr -2026-04-08T19:21:21.803285Z 01O hicpp-use-override -2026-04-08T19:21:21.803289Z 01O hicpp-vararg -2026-04-08T19:21:21.803300Z 01O linuxkernel-must-check-errs -2026-04-08T19:21:21.803307Z 01O llvm-else-after-return -2026-04-08T19:21:21.803311Z 01O llvm-include-order -2026-04-08T19:21:21.803321Z 01O llvm-namespace-comment -2026-04-08T19:21:21.803328Z 01O llvm-prefer-isa-or-dyn-cast-in-conditionals -2026-04-08T19:21:21.803333Z 01O llvm-prefer-register-over-unsigned -2026-04-08T19:21:21.803342Z 01O llvm-qualified-auto -2026-04-08T19:21:21.803349Z 01O llvm-twine-local -2026-04-08T19:21:21.803353Z 01O misc-confusable-identifiers -2026-04-08T19:21:21.803363Z 01O misc-const-correctness -2026-04-08T19:21:21.803370Z 01O misc-coroutine-hostile-raii -2026-04-08T19:21:21.803374Z 01O misc-definitions-in-headers -2026-04-08T19:21:21.803384Z 01O misc-header-include-cycle -2026-04-08T19:21:21.803393Z 01O misc-misleading-bidirectional -2026-04-08T19:21:21.803398Z 01O misc-misleading-identifier -2026-04-08T19:21:21.803407Z 01O misc-misplaced-const -2026-04-08T19:21:21.803415Z 01O misc-new-delete-overloads -2026-04-08T19:21:21.803419Z 01O misc-no-recursion -2026-04-08T19:21:21.803429Z 01O misc-non-copyable-objects -2026-04-08T19:21:21.803436Z 01O misc-redundant-expression -2026-04-08T19:21:21.803439Z 01O misc-static-assert -2026-04-08T19:21:21.803450Z 01O misc-throw-by-value-catch-by-reference -2026-04-08T19:21:21.803458Z 01O misc-unconventional-assign-operator -2026-04-08T19:21:21.803462Z 01O misc-uniqueptr-reset-release -2026-04-08T19:21:21.803473Z 01O misc-unused-alias-decls -2026-04-08T19:21:21.803480Z 01O misc-unused-parameters -2026-04-08T19:21:21.803485Z 01O misc-unused-using-decls -2026-04-08T19:21:21.803495Z 01O misc-use-anonymous-namespace -2026-04-08T19:21:21.803502Z 01O misc-use-internal-linkage -2026-04-08T19:21:21.803506Z 01O modernize-avoid-bind -2026-04-08T19:21:21.803516Z 01O modernize-concat-nested-namespaces -2026-04-08T19:21:21.803519Z 01O modernize-deprecated-headers -2026-04-08T19:21:21.803523Z 01O modernize-deprecated-ios-base-aliases -2026-04-08T19:21:21.803528Z 01O modernize-loop-convert -2026-04-08T19:21:21.803530Z 01O modernize-make-shared -2026-04-08T19:21:21.803533Z 01O modernize-make-unique -2026-04-08T19:21:21.803543Z 01O modernize-min-max-use-initializer-list -2026-04-08T19:21:21.803547Z 01O modernize-pass-by-value -2026-04-08T19:21:21.803552Z 01O modernize-raw-string-literal -2026-04-08T19:21:21.803558Z 01O modernize-redundant-void-arg -2026-04-08T19:21:21.803560Z 01O modernize-replace-auto-ptr -2026-04-08T19:21:21.803578Z 01O modernize-replace-disallow-copy-and-assign-macro -2026-04-08T19:21:21.803583Z 01O modernize-replace-random-shuffle -2026-04-08T19:21:21.803586Z 01O modernize-return-braced-init-list -2026-04-08T19:21:21.803589Z 01O modernize-shrink-to-fit -2026-04-08T19:21:21.803594Z 01O modernize-type-traits -2026-04-08T19:21:21.803596Z 01O modernize-unary-static-assert -2026-04-08T19:21:21.803600Z 01O modernize-use-auto -2026-04-08T19:21:21.803605Z 01O modernize-use-bool-literals -2026-04-08T19:21:21.803607Z 01O modernize-use-constraints -2026-04-08T19:21:21.803619Z 01O modernize-use-default-member-init -2026-04-08T19:21:21.803630Z 01O modernize-use-designated-initializers -2026-04-08T19:21:21.803638Z 01O modernize-use-emplace -2026-04-08T19:21:21.803642Z 01O modernize-use-equals-default -2026-04-08T19:21:21.803653Z 01O modernize-use-equals-delete -2026-04-08T19:21:21.803660Z 01O modernize-use-nodiscard -2026-04-08T19:21:21.803664Z 01O modernize-use-noexcept -2026-04-08T19:21:21.803674Z 01O modernize-use-nullptr -2026-04-08T19:21:21.803680Z 01O modernize-use-override -2026-04-08T19:21:21.803684Z 01O modernize-use-ranges -2026-04-08T19:21:21.803695Z 01O modernize-use-starts-ends-with -2026-04-08T19:21:21.803701Z 01O modernize-use-std-format -2026-04-08T19:21:21.803705Z 01O modernize-use-std-numbers -2026-04-08T19:21:21.803716Z 01O modernize-use-std-print -2026-04-08T19:21:21.803724Z 01O modernize-use-transparent-functors -2026-04-08T19:21:21.803730Z 01O modernize-use-uncaught-exceptions -2026-04-08T19:21:21.803739Z 01O modernize-use-using -2026-04-08T19:21:21.803745Z 01O mpi-buffer-deref -2026-04-08T19:21:21.803749Z 01O mpi-type-mismatch -2026-04-08T19:21:21.803760Z 01O objc-assert-equals -2026-04-08T19:21:21.803768Z 01O objc-avoid-nserror-init -2026-04-08T19:21:21.803772Z 01O objc-dealloc-in-category -2026-04-08T19:21:21.803783Z 01O objc-forbidden-subclassing -2026-04-08T19:21:21.803790Z 01O objc-missing-hash -2026-04-08T19:21:21.803795Z 01O objc-nsdate-formatter -2026-04-08T19:21:21.803804Z 01O objc-nsinvocation-argument-lifetime -2026-04-08T19:21:21.803812Z 01O objc-property-declaration -2026-04-08T19:21:21.803816Z 01O objc-super-self -2026-04-08T19:21:21.803827Z 01O openmp-exception-escape -2026-04-08T19:21:21.803842Z 01O openmp-use-default-none -2026-04-08T19:21:21.803846Z 01O performance-avoid-endl -2026-04-08T19:21:21.803856Z 01O performance-enum-size -2026-04-08T19:21:21.803864Z 01O performance-faster-string-find -2026-04-08T19:21:21.803869Z 01O performance-for-range-copy -2026-04-08T19:21:21.803877Z 01O performance-implicit-conversion-in-loop -2026-04-08T19:21:21.803884Z 01O performance-inefficient-algorithm -2026-04-08T19:21:21.803889Z 01O performance-inefficient-string-concatenation -2026-04-08T19:21:21.803904Z 01O performance-inefficient-vector-operation -2026-04-08T19:21:21.803916Z 01O performance-move-const-arg -2026-04-08T19:21:21.803922Z 01O performance-move-constructor-init -2026-04-08T19:21:21.803928Z 01O performance-no-automatic-move -2026-04-08T19:21:21.803930Z 01O performance-noexcept-destructor -2026-04-08T19:21:21.803933Z 01O performance-noexcept-move-constructor -2026-04-08T19:21:21.803938Z 01O performance-noexcept-swap -2026-04-08T19:21:21.803941Z 01O performance-trivially-destructible -2026-04-08T19:21:21.803945Z 01O performance-type-promotion-in-math-fn -2026-04-08T19:21:21.803951Z 01O performance-unnecessary-copy-initialization -2026-04-08T19:21:21.803953Z 01O performance-unnecessary-value-param -2026-04-08T19:21:21.803957Z 01O portability-restrict-system-includes -2026-04-08T19:21:21.803962Z 01O portability-simd-intrinsics -2026-04-08T19:21:21.803964Z 01O portability-std-allocator-const -2026-04-08T19:21:21.803968Z 01O readability-avoid-const-params-in-decls -2026-04-08T19:21:21.803986Z 01O readability-avoid-nested-conditional-operator -2026-04-08T19:21:21.804008Z 01O readability-avoid-return-with-void-value -2026-04-08T19:21:21.804012Z 01O readability-avoid-unconditional-preprocessor-if -2026-04-08T19:21:21.804018Z 01O readability-braces-around-statements -2026-04-08T19:21:21.804020Z 01O readability-const-return-type -2026-04-08T19:21:21.804024Z 01O readability-container-contains -2026-04-08T19:21:21.804039Z 01O readability-container-data-pointer -2026-04-08T19:21:21.804042Z 01O readability-container-size-empty -2026-04-08T19:21:21.804047Z 01O readability-convert-member-functions-to-static -2026-04-08T19:21:21.804052Z 01O readability-delete-null-pointer -2026-04-08T19:21:21.804054Z 01O readability-duplicate-include -2026-04-08T19:21:21.804057Z 01O readability-else-after-return -2026-04-08T19:21:21.804062Z 01O readability-enum-initial-value -2026-04-08T19:21:21.804064Z 01O readability-function-size -2026-04-08T19:21:21.804068Z 01O readability-identifier-naming -2026-04-08T19:21:21.804075Z 01O readability-implicit-bool-conversion -2026-04-08T19:21:21.804083Z 01O readability-inconsistent-declaration-parameter-name -2026-04-08T19:21:21.804087Z 01O readability-isolate-declaration -2026-04-08T19:21:21.804098Z 01O readability-magic-numbers -2026-04-08T19:21:21.804106Z 01O readability-make-member-function-const -2026-04-08T19:21:21.804110Z 01O readability-math-missing-parentheses -2026-04-08T19:21:21.804122Z 01O readability-misleading-indentation -2026-04-08T19:21:21.804129Z 01O readability-misplaced-array-index -2026-04-08T19:21:21.804134Z 01O readability-named-parameter -2026-04-08T19:21:21.804150Z 01O readability-non-const-parameter -2026-04-08T19:21:21.804159Z 01O readability-operators-representation -2026-04-08T19:21:21.804164Z 01O readability-qualified-auto -2026-04-08T19:21:21.804171Z 01O readability-redundant-access-specifiers -2026-04-08T19:21:21.804175Z 01O readability-redundant-casting -2026-04-08T19:21:21.804179Z 01O readability-redundant-control-flow -2026-04-08T19:21:21.804184Z 01O readability-redundant-declaration -2026-04-08T19:21:21.804187Z 01O readability-redundant-function-ptr-dereference -2026-04-08T19:21:21.804190Z 01O readability-redundant-inline-specifier -2026-04-08T19:21:21.804195Z 01O readability-redundant-member-init -2026-04-08T19:21:21.804198Z 01O readability-redundant-preprocessor -2026-04-08T19:21:21.804202Z 01O readability-redundant-smartptr-get -2026-04-08T19:21:21.804208Z 01O readability-redundant-string-cstr -2026-04-08T19:21:21.804210Z 01O readability-redundant-string-init -2026-04-08T19:21:21.804214Z 01O readability-reference-to-constructed-temporary -2026-04-08T19:21:21.804218Z 01O readability-simplify-boolean-expr -2026-04-08T19:21:21.804221Z 01O readability-simplify-subscript-expr -2026-04-08T19:21:21.804224Z 01O readability-static-accessed-through-instance -2026-04-08T19:21:21.804229Z 01O readability-static-definition-in-anonymous-namespace -2026-04-08T19:21:21.804232Z 01O readability-string-compare -2026-04-08T19:21:21.804235Z 01O readability-suspicious-call-argument -2026-04-08T19:21:21.804246Z 01O readability-uniqueptr-delete-release -2026-04-08T19:21:21.804253Z 01O readability-uppercase-literal-suffix -2026-04-08T19:21:21.804257Z 01O readability-use-anyofallof -2026-04-08T19:21:21.804268Z 01O readability-use-std-min-max -2026-04-08T19:21:21.804276Z 01O zircon-temporary-objects -2026-04-08T19:21:21.804279Z 01O -2026-04-08T19:21:23.800936Z 01O Running clang-tidy for 56 files out of 220 in compilation database ... -2026-04-08T19:21:23.800949Z 01O [ 1/56][0.2s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/string_helpers.c -2026-04-08T19:21:23.800956Z 01O 104 warnings generated. -2026-04-08T19:21:23.800961Z 01O Suppressed 104 warnings (104 in non-user code). -2026-04-08T19:21:23.800964Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. -2026-04-08T19:21:23.801016Z 01O -2026-04-08T19:21:23.801025Z 01O [ 2/56][0.1s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/dddefs.c -2026-04-08T19:21:23.801057Z 01O [ 3/56][1.3s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/php_compat.c -2026-04-08T19:21:23.801066Z 01O 899 warnings generated. -2026-04-08T19:21:23.801070Z 01O Suppressed 899 warnings (899 in non-user code). -2026-04-08T19:21:23.801076Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. -2026-04-08T19:21:23.801078Z 01O -2026-04-08T19:21:23.801085Z 01O [ 4/56][1.4s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/rasp.c -2026-04-08T19:21:23.801091Z 01O 917 warnings generated. -2026-04-08T19:21:23.801094Z 01O Suppressed 917 warnings (917 in non-user code). -2026-04-08T19:21:23.801097Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. -2026-04-08T19:21:23.801103Z 01O -2026-04-08T19:21:23.801108Z 01O [ 5/56][1.5s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/ip_extraction.c -2026-04-08T19:21:23.801121Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/ip_extraction.c:40:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] -2026-04-08T19:21:23.801143Z 01O 40 | ZEND_RAW_FENTRY(DD_TESTING_NS "extract_ip_addr", PHP_FN(datadog_appsec_testing_extract_ip_addr), extract_ip_addr, 0, NULL, NULL) -2026-04-08T19:21:23.801153Z 01O |  ^ -2026-04-08T19:21:23.801160Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' -2026-04-08T19:21:23.801171Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, -2026-04-08T19:21:23.801180Z 01O |  ^ -2026-04-08T19:21:23.801186Z 01O 1012 warnings generated. -2026-04-08T19:21:23.801191Z 01O Suppressed 1008 warnings (1008 in non-user code). -2026-04-08T19:21:23.801194Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. -2026-04-08T19:21:23.801198Z 01O 1 warning treated as error -2026-04-08T19:21:23.801212Z 01O -2026-04-08T19:21:23.801227Z 01O [ 6/56][1.6s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/telemetry.c -2026-04-08T19:21:23.801234Z 01O 1534 warnings generated. -2026-04-08T19:21:23.801241Z 01O Suppressed 1534 warnings (1534 in non-user code). -2026-04-08T19:21:23.801244Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. -2026-04-08T19:21:23.801247Z 01O -2026-04-08T19:21:23.801257Z 01O [ 7/56][1.9s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/ddappsec.c -2026-04-08T19:21:23.801300Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/ddappsec.c:634:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] -2026-04-08T19:21:23.801308Z 01O 634 | ZEND_RAW_FENTRY(DD_APPSEC_NS "is_enabled", PHP_FN(datadog_appsec_is_enabled), void_ret_bool_arginfo, 0, NULL, NULL) -2026-04-08T19:21:23.801314Z 01O |  ^ -2026-04-08T19:21:23.801318Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' -2026-04-08T19:21:23.801325Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, -2026-04-08T19:21:23.801332Z 01O |  ^ -2026-04-08T19:21:23.801337Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/ddappsec.c:635:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] -2026-04-08T19:21:23.801343Z 01O 635 | ZEND_RAW_FENTRY(DD_APPSEC_NS "push_addresses", PHP_FN(datadog_appsec_push_addresses), push_addresses_arginfo, 0, NULL, NULL) -2026-04-08T19:21:23.801348Z 01O |  ^ -2026-04-08T19:21:23.801351Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' -2026-04-08T19:21:23.801358Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, -2026-04-08T19:21:23.801372Z 01O |  ^ -2026-04-08T19:21:23.801385Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/ddappsec.c:639:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] -2026-04-08T19:21:23.801392Z 01O 639 | ZEND_RAW_FENTRY(DD_TESTING_NS "rinit", PHP_FN(datadog_appsec_testing_rinit), void_ret_bool_arginfo, 0, NULL, NULL) -2026-04-08T19:21:23.801399Z 01O |  ^ -2026-04-08T19:21:23.801402Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' -2026-04-08T19:21:23.801409Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, -2026-04-08T19:21:23.801417Z 01O |  ^ -2026-04-08T19:21:23.801422Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/ddappsec.c:640:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] -2026-04-08T19:21:23.801428Z 01O 640 | ZEND_RAW_FENTRY(DD_TESTING_NS "rshutdown", PHP_FN(datadog_appsec_testing_rshutdown), void_ret_bool_arginfo, 0, NULL, NULL) -2026-04-08T19:21:23.801433Z 01O |  ^ -2026-04-08T19:21:23.801437Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' -2026-04-08T19:21:23.801454Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, -2026-04-08T19:21:23.801461Z 01O |  ^ -2026-04-08T19:21:23.801467Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/ddappsec.c:641:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] -2026-04-08T19:21:23.801474Z 01O 641 | ZEND_RAW_FENTRY(DD_TESTING_NS "helper_mgr_acquire_conn", PHP_FN(datadog_appsec_testing_helper_mgr_acquire_conn), void_ret_bool_arginfo, 0, NULL, NULL) -2026-04-08T19:21:23.801479Z 01O |  ^ -2026-04-08T19:21:23.801485Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' -2026-04-08T19:21:23.801491Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, -2026-04-08T19:21:23.801495Z 01O |  ^ -2026-04-08T19:21:23.801502Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/ddappsec.c:642:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] -2026-04-08T19:21:23.801508Z 01O 642 | ZEND_RAW_FENTRY(DD_TESTING_NS "stop_for_debugger", PHP_FN(datadog_appsec_testing_stop_for_debugger), void_ret_bool_arginfo, 0, NULL, NULL) -2026-04-08T19:21:23.801512Z 01O |  ^ -2026-04-08T19:21:23.801519Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' -2026-04-08T19:21:23.801524Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, -2026-04-08T19:21:23.801528Z 01O |  ^ -2026-04-08T19:21:23.801535Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/ddappsec.c:643:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] -2026-04-08T19:21:23.801545Z 01O 643 | ZEND_RAW_FENTRY(DD_TESTING_NS "request_exec", PHP_FN(datadog_appsec_testing_request_exec), request_exec_arginfo, 0, NULL, NULL) -2026-04-08T19:21:23.801552Z 01O |  ^ -2026-04-08T19:21:23.801565Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' -2026-04-08T19:21:23.801576Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, -2026-04-08T19:21:23.801582Z 01O |  ^ -2026-04-08T19:21:23.801590Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/ddappsec.c:647:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] -2026-04-08T19:21:23.801617Z 01O 647 | ZEND_RAW_FENTRY(DD_TESTING_NS "send_invalid_msg", PHP_FN(datadog_appsec_testing_send_invalid_command), void_ret_bool_arginfo, 0, NULL, NULL) -2026-04-08T19:21:23.801622Z 01O |  ^ -2026-04-08T19:21:23.801631Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' -2026-04-08T19:21:23.801637Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, -2026-04-08T19:21:23.801646Z 01O |  ^ -2026-04-08T19:21:23.801660Z 01O 1139 warnings generated. -2026-04-08T19:21:23.801667Z 01O Suppressed 1122 warnings (1107 in non-user code, 15 NOLINT). -2026-04-08T19:21:23.801671Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. -2026-04-08T19:21:23.801684Z 01O 8 warnings treated as errors -2026-04-08T19:21:23.801692Z 01O -2026-04-08T19:21:23.801700Z 01O [ 8/56][2.0s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/helper_process.c -2026-04-08T19:21:25.301905Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/helper_process.c:633:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] -2026-04-08T19:21:25.301918Z 01O 633 | ZEND_RAW_FENTRY(DD_TESTING_NS "set_helper_path", PHP_FN(datadog_appsec_testing_set_helper_path), set_string_arginfo, 0, NULL, NULL) -2026-04-08T19:21:25.301923Z 01O |  ^ -2026-04-08T19:21:25.301930Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' -2026-04-08T19:21:25.301936Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, -2026-04-08T19:21:25.301941Z 01O |  ^ -2026-04-08T19:21:25.301950Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/helper_process.c:634:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] -2026-04-08T19:21:25.301963Z 01O 634 | ZEND_RAW_FENTRY(DD_TESTING_NS "is_connected_to_helper", PHP_FN(datadog_appsec_testing_is_connected_to_helper), void_ret_bool_arginfo, 0, NULL, NULL) -2026-04-08T19:21:25.301968Z 01O |  ^ -2026-04-08T19:21:25.301976Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' -2026-04-08T19:21:25.301981Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, -2026-04-08T19:21:25.301986Z 01O |  ^ -2026-04-08T19:21:25.301993Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/helper_process.c:635:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] -2026-04-08T19:21:25.302061Z 01O 635 | ZEND_RAW_FENTRY(DD_TESTING_NS "backoff_status", PHP_FN(datadog_appsec_testing_backoff_status), void_ret_array_arginfo, 0, NULL, NULL) -2026-04-08T19:21:25.302067Z 01O |  ^ -2026-04-08T19:21:25.302073Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' -2026-04-08T19:21:25.302089Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, -2026-04-08T19:21:25.302094Z 01O |  ^ -2026-04-08T19:21:25.302120Z 01O 1118 warnings generated. -2026-04-08T19:21:25.302136Z 01O Suppressed 1111 warnings (1106 in non-user code, 5 NOLINT). -2026-04-08T19:21:25.302142Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. -2026-04-08T19:21:25.302164Z 01O 3 warnings treated as errors -2026-04-08T19:21:25.302167Z 01O -2026-04-08T19:21:25.302177Z 01O [ 9/56][2.0s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/entity_body.c -2026-04-08T19:21:25.302186Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/entity_body.c:217:1: error: replace macro with enum [cppcoreguidelines-macro-to-enum,-warnings-as-errors] -2026-04-08T19:21:25.302189Z 01O 217 | #define MAX_XML_DEPTH 30 -2026-04-08T19:21:25.302192Z 01O | ^~~~~~~ -2026-04-08T19:21:25.302198Z 01O  |  = -2026-04-08T19:21:25.302200Z 01O  218 | static zval _convert_xml(const char *nonnull entity, size_t entity_len, -2026-04-08T19:21:25.302206Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/entity_body.c:217:9: error: macro 'MAX_XML_DEPTH' defines an integral constant; prefer an enum instead [cppcoreguidelines-macro-to-enum,-warnings-as-errors] -2026-04-08T19:21:25.302211Z 01O 217 | #define MAX_XML_DEPTH 30 -2026-04-08T19:21:25.302214Z 01O |  ^ -2026-04-08T19:21:25.302219Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/entity_body.c:247:1: error: replace macro with enum [cppcoreguidelines-macro-to-enum,-warnings-as-errors] -2026-04-08T19:21:25.302225Z 01O 247 | #define MAX_DEPTH_DEFAULT 30 -2026-04-08T19:21:25.302227Z 01O | ^~~~~~~ -2026-04-08T19:21:25.302230Z 01O  |  = -2026-04-08T19:21:25.302244Z 01O  248 | zend_long max_depth = MAX_DEPTH_DEFAULT; -2026-04-08T19:21:25.302254Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/entity_body.c:247:9: error: macro 'MAX_DEPTH_DEFAULT' defines an integral constant; prefer an enum instead [cppcoreguidelines-macro-to-enum,-warnings-as-errors] -2026-04-08T19:21:25.302260Z 01O 247 | #define MAX_DEPTH_DEFAULT 30 -2026-04-08T19:21:25.302265Z 01O |  ^ -2026-04-08T19:21:25.302268Z 01O 1122 warnings generated. -2026-04-08T19:21:25.302272Z 01O Suppressed 1125 warnings (1118 in non-user code, 7 NOLINT). -2026-04-08T19:21:25.302278Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. -2026-04-08T19:21:25.302281Z 01O 4 warnings treated as errors -2026-04-08T19:21:25.302284Z 01O -2026-04-08T19:21:25.302292Z 01O [10/56][2.2s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/xml_truncated_parser.c -2026-04-08T19:21:25.302330Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/xml_truncated_parser.c:21:1: error: replace macro with enum [cppcoreguidelines-macro-to-enum,-warnings-as-errors] -2026-04-08T19:21:25.302336Z 01O 21 | #define STACK_INITIAL_CAPACITY 16 -2026-04-08T19:21:25.302342Z 01O | ^~~~~~~ -2026-04-08T19:21:25.302345Z 01O  |  = -2026-04-08T19:21:25.302348Z 01O  22 | typedef struct { -2026-04-08T19:21:25.302358Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/xml_truncated_parser.c:21:9: error: macro 'STACK_INITIAL_CAPACITY' defines an integral constant; prefer an enum instead [cppcoreguidelines-macro-to-enum,-warnings-as-errors] -2026-04-08T19:21:25.302362Z 01O 21 | #define STACK_INITIAL_CAPACITY 16 -2026-04-08T19:21:25.302366Z 01O |  ^ -2026-04-08T19:21:25.302375Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/xml_truncated_parser.c:456:27: error: multilevel pointer conversion from 'const xmlChar **' (aka 'const unsigned char **') to 'const void *', please use explicit cast [bugprone-multi-level-implicit-pointer-conversion,-warnings-as-errors] -2026-04-08T19:21:25.302381Z 01O 456 | memcpy(&attr, &attributes[(ptrdiff_t)i * 5], sizeof(attr)); -2026-04-08T19:21:25.302385Z 01O |  ^ -2026-04-08T19:21:25.302391Z 01O 966 warnings generated. -2026-04-08T19:21:25.302399Z 01O Suppressed 971 warnings (963 in non-user code, 8 NOLINT). -2026-04-08T19:21:25.302404Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. -2026-04-08T19:21:25.302419Z 01O 3 warnings treated as errors -2026-04-08T19:21:25.302430Z 01O -2026-04-08T19:21:25.302437Z 01O [11/56][1.7s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/configuration.c -2026-04-08T19:21:27.805464Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/configuration.c:248:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] -2026-04-08T19:21:27.805499Z 01O 248 | ZEND_RAW_FENTRY(DD_TESTING_NS "zai_config_get_value", PHP_FN(datadog_appsec_testing_zai_config_get_value), set_string_arginfo, 0, NULL, NULL) -2026-04-08T19:21:27.805504Z 01O |  ^ -2026-04-08T19:21:27.805525Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' -2026-04-08T19:21:27.805531Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, -2026-04-08T19:21:27.805535Z 01O |  ^ -2026-04-08T19:21:27.805543Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/configuration.c:249:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] -2026-04-08T19:21:27.805551Z 01O 249 | ZEND_RAW_FENTRY(DD_TESTING_NS "zai_config_get_global_value", PHP_FN(datadog_appsec_testing_zai_config_get_global_value), set_string_arginfo, 0, NULL, NULL) -2026-04-08T19:21:27.805555Z 01O |  ^ -2026-04-08T19:21:27.805600Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' -2026-04-08T19:21:27.805609Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, -2026-04-08T19:21:27.805623Z 01O |  ^ -2026-04-08T19:21:27.805629Z 01O 968 warnings generated. -2026-04-08T19:21:27.805633Z 01O Suppressed 961 warnings (960 in non-user code, 1 NOLINT). -2026-04-08T19:21:27.805639Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. -2026-04-08T19:21:27.805642Z 01O 2 warnings treated as errors -2026-04-08T19:21:27.805645Z 01O -2026-04-08T19:21:27.805656Z 01O [12/56][1.6s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/commands/request_exec.c -2026-04-08T19:21:27.805662Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/commands/request_exec.c:61:36: error: '*' has higher precedence than '+'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] -2026-04-08T19:21:27.805667Z 01O 61 | (ctx->rasp_rule != NULL) + (ctx->subctx_id != NULL) * 2; -2026-04-08T19:21:27.805674Z 01O |  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -2026-04-08T19:21:27.805684Z 01O  |  ( ) -2026-04-08T19:21:27.805688Z 01O 954 warnings generated. -2026-04-08T19:21:27.805694Z 01O Suppressed 953 warnings (953 in non-user code). -2026-04-08T19:21:27.805702Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. -2026-04-08T19:21:27.805707Z 01O 1 warning treated as error -2026-04-08T19:21:27.805725Z 01O -2026-04-08T19:21:27.805734Z 01O [13/56][4.8s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/commands/request_init.c -2026-04-08T19:21:27.805741Z 01O 959 warnings generated. -2026-04-08T19:21:27.805747Z 01O Suppressed 959 warnings (959 in non-user code). -2026-04-08T19:21:27.805750Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. -2026-04-08T19:21:27.805754Z 01O -2026-04-08T19:21:27.805762Z 01O [14/56][5.3s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/backtrace.c -2026-04-08T19:21:27.805769Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/backtrace.c:324:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] -2026-04-08T19:21:27.805777Z 01O 324 | ZEND_RAW_FENTRY(DD_TESTING_NS "generate_backtrace", PHP_FN(datadog_appsec_testing_generate_backtrace), void_ret_array_arginfo,0, NULL, NULL) -2026-04-08T19:21:27.805783Z 01O |  ^ -2026-04-08T19:21:27.805786Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' -2026-04-08T19:21:27.805795Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, -2026-04-08T19:21:27.805820Z 01O |  ^ -2026-04-08T19:21:27.805832Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/backtrace.c:325:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] -2026-04-08T19:21:27.805851Z 01O 325 | ZEND_RAW_FENTRY(DD_TESTING_NS "report_exploit_backtrace", PHP_FN(datadog_appsec_testing_report_exploit_backtrace), void_ret_bool_arginfo, 0, NULL, NULL) -2026-04-08T19:21:27.805855Z 01O |  ^ -2026-04-08T19:21:27.805863Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' -2026-04-08T19:21:27.805873Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, -2026-04-08T19:21:27.805877Z 01O |  ^ -2026-04-08T19:21:27.805881Z 01O 1058 warnings generated. -2026-04-08T19:21:27.805886Z 01O Suppressed 1052 warnings (1050 in non-user code, 2 NOLINT). -2026-04-08T19:21:27.805888Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. -2026-04-08T19:21:27.805892Z 01O 2 warnings treated as errors -2026-04-08T19:21:27.805898Z 01O -2026-04-08T19:21:27.805902Z 01O [15/56][5.6s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/commands_helpers.c -2026-04-08T19:21:29.308421Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/commands_helpers.c:296:24: error: redundant explicit casting to the same type 'dd_imsg * _Nullable * _Nonnull' (aka 'struct _dd_imsg **') as the sub-expression, remove this casting [readability-redundant-casting,-warnings-as-errors] -2026-04-08T19:21:29.308441Z 01O 296 | dd_imsg **imsg_c = (dd_imsg * nullable * nonnull) imsg; -2026-04-08T19:21:29.308446Z 01O |  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -2026-04-08T19:21:29.308454Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/commands_helpers.c:294:46: note: source type originates from referencing this parameter -2026-04-08T19:21:29.308459Z 01O 294 | static void _imsg_cleanup(dd_imsg *nullable *imsg) -2026-04-08T19:21:29.308463Z 01O |  ~~~~~~~~~~~~~~~~~~~^ -2026-04-08T19:21:29.308470Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/commands_helpers.c:507:1: error: replace macro with enum [cppcoreguidelines-macro-to-enum,-warnings-as-errors] -2026-04-08T19:21:29.308474Z 01O 507 | #define RESP_INDEX_ACTION_PARAMS 0 -2026-04-08T19:21:29.308477Z 01O | ^~~~~~~ -2026-04-08T19:21:29.308482Z 01O  |  =, -2026-04-08T19:21:29.308485Z 01O  508 | #define RESP_INDEX_APPSEC_SPAN_DATA 1 -2026-04-08T19:21:29.308489Z 01O | ~~~~~~~ -2026-04-08T19:21:29.308495Z 01O  |  =, -2026-04-08T19:21:29.308499Z 01O  509 | #define RESP_INDEX_FORCE_KEEP 2 -2026-04-08T19:21:29.308503Z 01O | ~~~~~~~ -2026-04-08T19:21:29.308525Z 01O  |  =, -2026-04-08T19:21:29.308536Z 01O  510 | #define RESP_INDEX_SETTINGS 3 -2026-04-08T19:21:29.308593Z 01O | ~~~~~~~ -2026-04-08T19:21:29.308600Z 01O  |  =, -2026-04-08T19:21:29.308605Z 01O  511 | #define RESP_INDEX_SPAN_META 4 -2026-04-08T19:21:29.308611Z 01O | ~~~~~~~ -2026-04-08T19:21:29.308614Z 01O  |  =, -2026-04-08T19:21:29.308617Z 01O  512 | #define RESP_INDEX_SPAN_METRICS 5 -2026-04-08T19:21:29.308623Z 01O | ~~~~~~~ -2026-04-08T19:21:29.308625Z 01O  |  = -2026-04-08T19:21:29.308629Z 01O  513 |  -2026-04-08T19:21:29.308639Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/commands_helpers.c:507:9: error: macro 'RESP_INDEX_ACTION_PARAMS' defines an integral constant; prefer an enum instead [cppcoreguidelines-macro-to-enum,-warnings-as-errors] -2026-04-08T19:21:29.308643Z 01O 507 | #define RESP_INDEX_ACTION_PARAMS 0 -2026-04-08T19:21:29.308647Z 01O |  ^ -2026-04-08T19:21:29.308655Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/commands_helpers.c:508:9: error: macro 'RESP_INDEX_APPSEC_SPAN_DATA' defines an integral constant; prefer an enum instead [cppcoreguidelines-macro-to-enum,-warnings-as-errors] -2026-04-08T19:21:29.308659Z 01O 508 | #define RESP_INDEX_APPSEC_SPAN_DATA 1 -2026-04-08T19:21:29.308664Z 01O |  ^ -2026-04-08T19:21:29.308671Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/commands_helpers.c:509:9: error: macro 'RESP_INDEX_FORCE_KEEP' defines an integral constant; prefer an enum instead [cppcoreguidelines-macro-to-enum,-warnings-as-errors] -2026-04-08T19:21:29.308681Z 01O 509 | #define RESP_INDEX_FORCE_KEEP 2 -2026-04-08T19:21:29.308685Z 01O |  ^ -2026-04-08T19:21:29.308706Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/commands_helpers.c:510:9: error: macro 'RESP_INDEX_SETTINGS' defines an integral constant; prefer an enum instead [cppcoreguidelines-macro-to-enum,-warnings-as-errors] -2026-04-08T19:21:29.308713Z 01O 510 | #define RESP_INDEX_SETTINGS 3 -2026-04-08T19:21:29.308718Z 01O |  ^ -2026-04-08T19:21:29.308725Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/commands_helpers.c:511:9: error: macro 'RESP_INDEX_SPAN_META' defines an integral constant; prefer an enum instead [cppcoreguidelines-macro-to-enum,-warnings-as-errors] -2026-04-08T19:21:29.308732Z 01O 511 | #define RESP_INDEX_SPAN_META 4 -2026-04-08T19:21:29.308736Z 01O |  ^ -2026-04-08T19:21:29.308743Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/commands_helpers.c:512:9: error: macro 'RESP_INDEX_SPAN_METRICS' defines an integral constant; prefer an enum instead [cppcoreguidelines-macro-to-enum,-warnings-as-errors] -2026-04-08T19:21:29.308747Z 01O 512 | #define RESP_INDEX_SPAN_METRICS 5 -2026-04-08T19:21:29.308750Z 01O |  ^ -2026-04-08T19:21:29.308763Z 01O 961 warnings generated. -2026-04-08T19:21:29.308767Z 01O Suppressed 961 warnings (953 in non-user code, 8 NOLINT). -2026-04-08T19:21:29.308772Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. -2026-04-08T19:21:29.308783Z 01O 8 warnings treated as errors -2026-04-08T19:21:29.308786Z 01O -2026-04-08T19:21:29.308793Z 01O [16/56][4.7s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/commands/request_shutdown.c -2026-04-08T19:21:29.308801Z 01O 955 warnings generated. -2026-04-08T19:21:29.308828Z 01O Suppressed 955 warnings (955 in non-user code). -2026-04-08T19:21:29.308833Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. -2026-04-08T19:21:29.308838Z 01O -2026-04-08T19:21:29.308843Z 01O [17/56][4.4s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/user_tracking.c -2026-04-08T19:21:29.308850Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/user_tracking.c:432:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] -2026-04-08T19:21:29.308859Z 01O 432 | ZEND_RAW_FENTRY(DD_TESTING_NS "dump_user_collection_mode", PHP_FN(datadog_appsec_testing_dump_user_collection_mode), dump_user_collection_mode_arginfo, 0, NULL, NULL) -2026-04-08T19:21:29.308862Z 01O |  ^ -2026-04-08T19:21:29.308869Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' -2026-04-08T19:21:29.308878Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, -2026-04-08T19:21:29.308881Z 01O |  ^ -2026-04-08T19:21:29.308886Z 01O 961 warnings generated. -2026-04-08T19:21:29.308891Z 01O Suppressed 957 warnings (957 in non-user code). -2026-04-08T19:21:29.308894Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. -2026-04-08T19:21:29.308898Z 01O 1 warning treated as error -2026-04-08T19:21:29.308902Z 01O -2026-04-08T19:21:29.308908Z 01O [18/56][5.0s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/network.c -2026-04-08T19:21:29.308914Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/network.c:459:1: error: replace macro with enum [cppcoreguidelines-macro-to-enum,-warnings-as-errors] -2026-04-08T19:21:29.308919Z 01O 459 | #define ONE_E3 1000 -2026-04-08T19:21:29.308922Z 01O | ^~~~~~~ -2026-04-08T19:21:29.308925Z 01O  |  = , -2026-04-08T19:21:29.308930Z 01O  460 | #define ONE_E6 1000000 -2026-04-08T19:21:29.308933Z 01O | ~~~~~~~ -2026-04-08T19:21:29.308936Z 01O  |  = , -2026-04-08T19:21:29.308941Z 01O  461 | #define ONE_E9 1000000000 -2026-04-08T19:21:29.308943Z 01O | ~~~~~~~ -2026-04-08T19:21:29.308946Z 01O  |  = -2026-04-08T19:21:29.308953Z 01O  462 | static void _timespec_add_ms(struct timespec *ts, long num_ms) -2026-04-08T19:21:29.308958Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/network.c:459:9: error: macro 'ONE_E3' defines an integral constant; prefer an enum instead [cppcoreguidelines-macro-to-enum,-warnings-as-errors] -2026-04-08T19:21:29.308962Z 01O 459 | #define ONE_E3 1000 -2026-04-08T19:21:29.308967Z 01O |  ^ -2026-04-08T19:21:29.308971Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/network.c:460:9: error: macro 'ONE_E6' defines an integral constant; prefer an enum instead [cppcoreguidelines-macro-to-enum,-warnings-as-errors] -2026-04-08T19:21:29.308975Z 01O 460 | #define ONE_E6 1000000 -2026-04-08T19:21:29.308994Z 01O |  ^ -2026-04-08T19:21:29.309006Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/network.c:461:9: error: macro 'ONE_E9' defines an integral constant; prefer an enum instead [cppcoreguidelines-macro-to-enum,-warnings-as-errors] -2026-04-08T19:21:29.309011Z 01O 461 | #define ONE_E9 1000000000 -2026-04-08T19:21:29.309020Z 01O |  ^ -2026-04-08T19:21:29.309023Z 01O 925 warnings generated. -2026-04-08T19:21:31.310088Z 01O Suppressed 936 warnings (921 in non-user code, 15 NOLINT). -2026-04-08T19:21:31.310093Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. -2026-04-08T19:21:31.310100Z 01O 4 warnings treated as errors -2026-04-08T19:21:31.310102Z 01O -2026-04-08T19:21:31.310108Z 01O [19/56][7.5s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/request_abort.c -2026-04-08T19:21:31.310144Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/request_abort.c:543:27: error: multilevel pointer conversion from 'void *' to 'php_output_handler **' (aka 'struct _php_output_handler **'), please use explicit cast [bugprone-multi-level-implicit-pointer-conversion,-warnings-as-errors] -2026-04-08T19:21:31.310161Z 01O 543 | while ((handler = zend_stack_top(&OG(handlers)))) { -2026-04-08T19:21:31.310171Z 01O |  ^ -2026-04-08T19:21:31.310188Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/request_abort.c:720:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] -2026-04-08T19:21:31.310198Z 01O 720 | ZEND_RAW_FENTRY(DD_TESTING_NS "abort_static_page", PHP_FN(datadog_appsec_testing_abort_static_page), no_params_void_ret, 0, NULL, NULL) -2026-04-08T19:21:31.310203Z 01O |  ^ -2026-04-08T19:21:31.310214Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' -2026-04-08T19:21:31.310220Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, -2026-04-08T19:21:31.310224Z 01O |  ^ -2026-04-08T19:21:31.310231Z 01O 957 warnings generated. -2026-04-08T19:21:31.310233Z 01O Suppressed 958 warnings (952 in non-user code, 6 NOLINT). -2026-04-08T19:21:31.310237Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. -2026-04-08T19:21:31.310243Z 01O 2 warnings treated as errors -2026-04-08T19:21:31.310253Z 01O -2026-04-08T19:21:31.310261Z 01O [20/56][1.7s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/commands/client_init.c -2026-04-08T19:21:31.310274Z 01O 960 warnings generated. -2026-04-08T19:21:31.310279Z 01O Suppressed 962 warnings (960 in non-user code, 2 NOLINT). -2026-04-08T19:21:31.310285Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. -2026-04-08T19:21:31.310291Z 01O -2026-04-08T19:21:31.310296Z 01O [21/56][1.4s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/php_helpers.c -2026-04-08T19:21:31.310349Z 01O 902 warnings generated. -2026-04-08T19:21:31.310365Z 01O Suppressed 902 warnings (902 in non-user code). -2026-04-08T19:21:31.310368Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. -2026-04-08T19:21:31.310372Z 01O -2026-04-08T19:21:31.310381Z 01O [22/56][4.4s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/ddtrace.c -2026-04-08T19:21:31.310387Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/ddtrace.c:592:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] -2026-04-08T19:21:31.310394Z 01O 592 | ZEND_RAW_FENTRY(DD_TESTING_NS "ddtrace_rshutdown", PHP_FN(datadog_appsec_testing_ddtrace_rshutdown), void_ret_bool_arginfo, 0, NULL, NULL) -2026-04-08T19:21:31.310399Z 01O |  ^ -2026-04-08T19:21:31.310403Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' -2026-04-08T19:21:31.310410Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, -2026-04-08T19:21:31.310420Z 01O |  ^ -2026-04-08T19:21:31.310426Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/ddtrace.c:593:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] -2026-04-08T19:21:31.310438Z 01O 593 | ZEND_RAW_FENTRY(DD_TESTING_NS "root_span_add_tag", PHP_FN(datadog_appsec_testing_root_span_add_tag), arginfo_root_span_add_tag, 0, NULL, NULL) -2026-04-08T19:21:31.310459Z 01O |  ^ -2026-04-08T19:21:31.310464Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' -2026-04-08T19:21:31.310472Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, -2026-04-08T19:21:31.310481Z 01O |  ^ -2026-04-08T19:21:31.310486Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/ddtrace.c:594:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] -2026-04-08T19:21:31.310493Z 01O 594 | ZEND_RAW_FENTRY(DD_TESTING_NS "root_span_get_meta", PHP_FN(datadog_appsec_testing_root_span_get_meta), void_ret_nullable_array, 0, NULL, NULL) -2026-04-08T19:21:31.310501Z 01O |  ^ -2026-04-08T19:21:31.310505Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' -2026-04-08T19:21:31.310511Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, -2026-04-08T19:21:31.310517Z 01O |  ^ -2026-04-08T19:21:31.310522Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/ddtrace.c:595:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] -2026-04-08T19:21:31.310543Z 01O 595 | ZEND_RAW_FENTRY(DD_TESTING_NS "root_span_get_meta_struct", PHP_FN(datadog_appsec_testing_root_span_get_meta_struct), void_ret_nullable_array, 0, NULL, NULL) -2026-04-08T19:21:31.310548Z 01O |  ^ -2026-04-08T19:21:31.310556Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' -2026-04-08T19:21:31.310561Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, -2026-04-08T19:21:31.310566Z 01O |  ^ -2026-04-08T19:21:31.310583Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/ddtrace.c:596:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] -2026-04-08T19:21:31.310597Z 01O 596 | ZEND_RAW_FENTRY(DD_TESTING_NS "root_span_get_metrics", PHP_FN(datadog_appsec_testing_root_span_get_metrics), void_ret_nullable_array, 0, NULL, NULL) -2026-04-08T19:21:31.310603Z 01O |  ^ -2026-04-08T19:21:31.310609Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' -2026-04-08T19:21:31.310615Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, -2026-04-08T19:21:31.310620Z 01O |  ^ -2026-04-08T19:21:31.310628Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/ddtrace.c:597:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] -2026-04-08T19:21:31.310636Z 01O 597 | ZEND_RAW_FENTRY(DD_TESTING_NS "get_formatted_runtime_id", PHP_FN(datadog_appsec_testing_get_formatted_runtime_id), void_ret_nullable_string, 0, NULL, NULL) -2026-04-08T19:21:31.310641Z 01O |  ^ -2026-04-08T19:21:31.310647Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' -2026-04-08T19:21:31.310654Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, -2026-04-08T19:21:31.310659Z 01O |  ^ -2026-04-08T19:21:31.310670Z 01O 1750 warnings generated. -2026-04-08T19:21:31.310672Z 01O Suppressed 1767 warnings (1726 in non-user code, 41 NOLINT). -2026-04-08T19:21:31.310676Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. -2026-04-08T19:21:31.310682Z 01O 6 warnings treated as errors -2026-04-08T19:21:31.310684Z 01O -2026-04-08T19:21:31.310692Z 01O [23/56][9.2s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/compression.cpp -2026-04-08T19:21:31.310702Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/compression.cpp:22:40: error: redundant explicit casting to the same type 'double' as the sub-expression, remove this casting [readability-redundant-casting,-warnings-as-errors] -2026-04-08T19:21:31.310736Z 01O 22 | return (((size_t)((double)in_len * (double)1.015)) + 10 + 8 + 4 + 1); -2026-04-08T19:21:31.310741Z 01O |  ^~~~~~~~ -2026-04-08T19:21:31.310757Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/compression.cpp:34:9: error: the 'empty' method should be used to check for emptiness instead of 'length' [readability-container-size-empty,-warnings-as-errors] -2026-04-08T19:21:31.310774Z 01O 34 | if (text.length() == 0) { -2026-04-08T19:21:31.310778Z 01O |  ^~~~~~~~~~~~~~~~~~ -2026-04-08T19:21:31.310793Z 01O  |  text.empty() -2026-04-08T19:21:31.310805Z 01O /usr/bin/../include/c++/v1/string:1323:78: note: method 'basic_string'::empty() defined here -2026-04-08T19:21:31.310811Z 01O 1323 | _LIBCPP_NODISCARD _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 bool empty() const _NOEXCEPT { -2026-04-08T19:21:31.310819Z 01O |  ^ -2026-04-08T19:21:31.310823Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/compression.cpp:72:9: error: the 'empty' method should be used to check for emptiness instead of 'length' [readability-container-size-empty,-warnings-as-errors] -2026-04-08T19:21:31.310830Z 01O 72 | if (compressed.length() < 1 || Z_OK != inflateInit2(&strm, encoding)) { -2026-04-08T19:21:31.310836Z 01O |  ^~~~~~~~~~~~~~~~~~~~~~~ -2026-04-08T19:21:31.310838Z 01O  |  compressed.empty() -2026-04-08T19:21:31.310842Z 01O /usr/bin/../include/c++/v1/string:1323:78: note: method 'basic_string'::empty() defined here -2026-04-08T19:21:31.310849Z 01O 1323 | _LIBCPP_NODISCARD _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 bool empty() const _NOEXCEPT { -2026-04-08T19:21:31.310852Z 01O |  ^ -2026-04-08T19:21:31.310856Z 01O 8418 warnings generated. -2026-04-08T19:21:36.316177Z 01O Suppressed 8427 warnings (8415 in non-user code, 12 NOLINT). -2026-04-08T19:21:36.316183Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. -2026-04-08T19:21:36.316200Z 01O 3 warnings treated as errors -2026-04-08T19:21:36.316210Z 01O -2026-04-08T19:21:36.316218Z 01O [24/56][3.8s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/logging.c -2026-04-08T19:21:36.316240Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/logging.c:209:25: error: redundant explicit casting to the same type 'const char *' as the sub-expression, remove this casting [readability-redundant-casting,-warnings-as-errors] -2026-04-08T19:21:36.316253Z 01O 209 | size_t len = strlen((const char *)log_level); -2026-04-08T19:21:36.316258Z 01O |  ^~~~~~~~~~~~~~ -2026-04-08T19:21:36.316272Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/logging.c:203:56: note: source type originates from referencing this parameter -2026-04-08T19:21:36.316282Z 01O 203 | static int _dd_log_level_from_str(const char *nullable log_level) -2026-04-08T19:21:36.316287Z 01O |  ~~~~~~~~~~~~~~ ^ -2026-04-08T19:21:36.316303Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/logging.c:407:5: error: the value returned by this function should not be disregarded; neglecting it may lead to errors [cert-err33-c,-warnings-as-errors] -2026-04-08T19:21:36.316362Z 01O 407 | gmtime_r(&time->tv_sec, &tm); -2026-04-08T19:21:36.316369Z 01O |  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ -2026-04-08T19:21:36.316379Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/logging.c:407:5: note: cast the expression to void to silence this warning -2026-04-08T19:21:36.316387Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/logging.c:572:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] -2026-04-08T19:21:36.316394Z 01O 572 | ZEND_RAW_FENTRY(DD_TESTING_NS "mlog", PHP_FN(datadog_appsec_testing_mlog), mlog, 0, NULL, NULL) -2026-04-08T19:21:36.316401Z 01O |  ^ -2026-04-08T19:21:36.316405Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' -2026-04-08T19:21:36.316412Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, -2026-04-08T19:21:36.316418Z 01O |  ^ -2026-04-08T19:21:36.316424Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/logging.c:573:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] -2026-04-08T19:21:36.316438Z 01O 573 | ZEND_RAW_FENTRY(DD_TESTING_NS "fdclose", PHP_FN(datadog_appsec_testing_fdclose), fdclose, 0, NULL, NULL) -2026-04-08T19:21:36.316448Z 01O |  ^ -2026-04-08T19:21:36.316453Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' -2026-04-08T19:21:36.316463Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, -2026-04-08T19:21:36.316470Z 01O |  ^ -2026-04-08T19:21:36.316473Z 01O 1085 warnings generated. -2026-04-08T19:21:36.316477Z 01O Suppressed 1082 warnings (1075 in non-user code, 7 NOLINT). -2026-04-08T19:21:36.316482Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. -2026-04-08T19:21:36.316485Z 01O 4 warnings treated as errors -2026-04-08T19:21:36.316488Z 01O -2026-04-08T19:21:36.316497Z 01O [25/56][1.3s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/php_objects.c -2026-04-08T19:21:36.316502Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/php_objects.c:33:53: error: multilevel pointer conversion from 'const zend_function_entry **' (aka 'const struct _zend_function_entry **') to 'const void *', please use explicit cast [bugprone-multi-level-implicit-pointer-conversion,-warnings-as-errors] -2026-04-08T19:21:36.316508Z 01O 33 | zend_llist_add_element(&_function_entry_arrays, &entries); -2026-04-08T19:21:36.316514Z 01O |  ^ -2026-04-08T19:21:36.316523Z 01O 903 warnings generated. -2026-04-08T19:21:36.316536Z 01O Suppressed 902 warnings (902 in non-user code). -2026-04-08T19:21:36.316540Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. -2026-04-08T19:21:36.316548Z 01O 1 warning treated as error -2026-04-08T19:21:36.316550Z 01O -2026-04-08T19:21:36.316557Z 01O [26/56][1.7s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/commands/config_sync.c -2026-04-08T19:21:36.316563Z 01O 951 warnings generated. -2026-04-08T19:21:36.316566Z 01O Suppressed 951 warnings (951 in non-user code). -2026-04-08T19:21:36.316570Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. -2026-04-08T19:21:36.316581Z 01O -2026-04-08T19:21:36.316592Z 01O [27/56][12.4s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/parameter_base.cpp -2026-04-08T19:21:36.316598Z 01O 8199 warnings generated. -2026-04-08T19:21:36.316605Z 01O Suppressed 8204 warnings (8199 in non-user code, 5 NOLINT). -2026-04-08T19:21:36.316608Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. -2026-04-08T19:21:36.316611Z 01O -2026-04-08T19:21:36.316619Z 01O [28/56][13.5s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/parameter.cpp -2026-04-08T19:21:36.316629Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/parameter.cpp:87:36: error: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage,-warnings-as-errors] -2026-04-08T19:21:36.316636Z 01O 87 | ddwaf_object_stringl(&obj, str.data(), length); -2026-04-08T19:21:36.316642Z 01O |  ~~~~^~~~ -2026-04-08T19:21:36.316647Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/parameter.cpp:127:43: error: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage,-warnings-as-errors] -2026-04-08T19:21:36.316653Z 01O 127 | if (!ddwaf_object_map_addl(this, name.data(), length, entry)) { -2026-04-08T19:21:36.316658Z 01O |  ~~~~~^~~~ -2026-04-08T19:21:36.316661Z 01O 8126 warnings generated. -2026-04-08T19:21:36.316665Z 01O Suppressed 8133 warnings (8124 in non-user code, 9 NOLINT). -2026-04-08T19:21:36.316671Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. -2026-04-08T19:21:36.316679Z 01O 2 warnings treated as errors -2026-04-08T19:21:36.316683Z 01O -2026-04-08T19:21:36.316704Z 01O [29/56][12.6s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/request_lifecycle.c -2026-04-08T19:21:36.316719Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/request_lifecycle.c:54:1: error: replace macro with enum [cppcoreguidelines-macro-to-enum,-warnings-as-errors] -2026-04-08T19:21:36.316727Z 01O 54 | #define MAX_LENGTH_OF_REM_CFG_PATH 31 -2026-04-08T19:21:36.316736Z 01O | ^~~~~~~ -2026-04-08T19:21:36.316739Z 01O  |  = -2026-04-08T19:21:36.316742Z 01O  55 | static THREAD_LOCAL_ON_ZTS char -2026-04-08T19:21:36.316775Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/request_lifecycle.c:54:9: error: macro 'MAX_LENGTH_OF_REM_CFG_PATH' defines an integral constant; prefer an enum instead [cppcoreguidelines-macro-to-enum,-warnings-as-errors] -2026-04-08T19:21:36.316779Z 01O 54 | #define MAX_LENGTH_OF_REM_CFG_PATH 31 -2026-04-08T19:21:36.316782Z 01O |  ^ -2026-04-08T19:21:36.316791Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/request_lifecycle.c:1090:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] -2026-04-08T19:21:36.316797Z 01O 1090 | ZEND_RAW_FENTRY(DD_TESTING_NS "dump_req_lifecycle_state", PHP_FN(datadog_appsec_testing_dump_req_lifecycle_state), dump_arginfo, 0, NULL, NULL) -2026-04-08T19:21:36.316801Z 01O |  ^ -2026-04-08T19:21:36.316819Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' -2026-04-08T19:21:36.316832Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, -2026-04-08T19:21:36.316838Z 01O |  ^ -2026-04-08T19:21:36.316844Z 01O 970 warnings generated. -2026-04-08T19:21:36.316847Z 01O Suppressed 969 warnings (964 in non-user code, 5 NOLINT). -2026-04-08T19:21:36.316850Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. -2026-04-08T19:21:36.316856Z 01O 3 warnings treated as errors -2026-04-08T19:21:36.316858Z 01O -2026-04-08T19:21:36.316864Z 01O [30/56][14.3s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/tags.c -2026-04-08T19:21:36.316872Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/tags.c:1697:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] -2026-04-08T19:21:36.316878Z 01O 1697 | ZEND_RAW_FENTRY(DD_APPSEC_NS "track_user_signup_event_automated", PHP_FN(datadog_appsec_track_user_signup_event_automated), track_user_signup_event_automated_arginfo, 0, NULL, NULL) -2026-04-08T19:21:36.316883Z 01O |  ^ -2026-04-08T19:21:36.316889Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' -2026-04-08T19:21:36.316894Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, -2026-04-08T19:21:36.316906Z 01O |  ^ -2026-04-08T19:21:36.316916Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/tags.c:1698:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] -2026-04-08T19:21:36.316922Z 01O 1698 | ZEND_RAW_FENTRY(DD_APPSEC_NS "track_user_signup_event", PHP_FN(datadog_appsec_track_user_signup_event), track_user_signup_event_arginfo, 0, NULL, NULL) -2026-04-08T19:21:36.316926Z 01O |  ^ -2026-04-08T19:21:36.316932Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' -2026-04-08T19:21:36.316947Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, -2026-04-08T19:21:36.316953Z 01O |  ^ -2026-04-08T19:21:36.316960Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/tags.c:1699:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] -2026-04-08T19:21:36.316967Z 01O 1699 | ZEND_RAW_FENTRY(DD_APPSEC_NS "track_user_login_success_event_automated", PHP_FN(datadog_appsec_track_user_login_success_event_automated), track_user_login_success_event_automated_arginfo, 0, NULL, NULL) -2026-04-08T19:21:36.316971Z 01O |  ^ -2026-04-08T19:21:36.316988Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' -2026-04-08T19:21:36.316999Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, -2026-04-08T19:21:36.317005Z 01O |  ^ -2026-04-08T19:21:36.317013Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/tags.c:1700:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] -2026-04-08T19:21:36.317019Z 01O 1700 | ZEND_RAW_FENTRY(DD_APPSEC_NS "track_user_login_success_event", PHP_FN(datadog_appsec_track_user_login_success_event), track_user_login_success_event_arginfo, 0, NULL, NULL) -2026-04-08T19:21:36.317023Z 01O |  ^ -2026-04-08T19:21:36.317037Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' -2026-04-08T19:21:36.317043Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, -2026-04-08T19:21:36.317047Z 01O |  ^ -2026-04-08T19:21:36.317056Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/tags.c:1701:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] -2026-04-08T19:21:36.317062Z 01O 1701 | ZEND_RAW_FENTRY(DD_APPSEC_NS "track_user_login_failure_event_automated", PHP_FN(datadog_appsec_track_user_login_failure_event_automated), track_user_login_failure_event_automated_arginfo, 0, NULL, NULL) -2026-04-08T19:21:36.317072Z 01O |  ^ -2026-04-08T19:21:36.317081Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' -2026-04-08T19:21:36.317086Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, -2026-04-08T19:21:36.317091Z 01O |  ^ -2026-04-08T19:21:36.317130Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/tags.c:1702:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] -2026-04-08T19:21:36.317136Z 01O 1702 | ZEND_RAW_FENTRY(DD_APPSEC_NS "track_user_login_failure_event", PHP_FN(datadog_appsec_track_user_login_failure_event), track_user_login_failure_event_arginfo, 0, NULL, NULL) -2026-04-08T19:21:36.317140Z 01O |  ^ -2026-04-08T19:21:36.317155Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' -2026-04-08T19:21:36.317167Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, -2026-04-08T19:21:36.317174Z 01O |  ^ -2026-04-08T19:21:36.317182Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/tags.c:1703:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] -2026-04-08T19:21:36.317187Z 01O 1703 | ZEND_RAW_FENTRY(DD_APPSEC_NS "track_authenticated_user_event_automated", PHP_FN(datadog_appsec_track_authenticated_user_event_automated), track_authenticated_user_event_automated_arginfo, 0, NULL, NULL) -2026-04-08T19:21:36.317192Z 01O |  ^ -2026-04-08T19:21:36.317198Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' -2026-04-08T19:21:36.317203Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, -2026-04-08T19:21:36.317207Z 01O |  ^ -2026-04-08T19:21:36.317214Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/tags.c:1704:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] -2026-04-08T19:21:36.317219Z 01O 1704 | ZEND_RAW_FENTRY(DD_APPSEC_NS "track_authenticated_user_event", PHP_FN(datadog_appsec_track_authenticated_user_event), track_authenticated_user_event_arginfo, 0, NULL, NULL) -2026-04-08T19:21:36.317224Z 01O |  ^ -2026-04-08T19:21:36.317232Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' -2026-04-08T19:21:36.317260Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, -2026-04-08T19:21:36.317266Z 01O |  ^ -2026-04-08T19:21:36.317274Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/tags.c:1705:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] -2026-04-08T19:21:36.317279Z 01O 1705 | ZEND_RAW_FENTRY(DD_APPSEC_NS "track_custom_event", PHP_FN(datadog_appsec_track_custom_event), track_custom_event_arginfo, 0, NULL, NULL) -2026-04-08T19:21:36.317294Z 01O |  ^ -2026-04-08T19:21:36.317300Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' -2026-04-08T19:21:36.317306Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, -2026-04-08T19:21:36.317313Z 01O |  ^ -2026-04-08T19:21:36.317323Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/tags.c:1710:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] -2026-04-08T19:21:36.317332Z 01O 1710 | ZEND_RAW_FENTRY(DD_TESTING_NS "add_all_ancillary_tags", PHP_FN(datadog_appsec_testing_add_all_ancillary_tags), add_ancillary_tags, 0, NULL, NULL) -2026-04-08T19:21:36.317338Z 01O |  ^ -2026-04-08T19:21:36.317342Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' -2026-04-08T19:21:36.317348Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, -2026-04-08T19:21:36.317354Z 01O |  ^ -2026-04-08T19:21:36.317359Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/tags.c:1711:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] -2026-04-08T19:21:36.317366Z 01O 1711 | ZEND_RAW_FENTRY(DD_TESTING_NS "add_basic_ancillary_tags", PHP_FN(datadog_appsec_testing_add_basic_ancillary_tags), add_ancillary_tags, 0, NULL, NULL) -2026-04-08T19:21:36.317372Z 01O |  ^ -2026-04-08T19:21:36.317375Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' -2026-04-08T19:21:36.317381Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, -2026-04-08T19:21:36.317394Z 01O |  ^ -2026-04-08T19:21:36.317398Z 01O 1365 warnings generated. -2026-04-08T19:21:52.854682Z 01O Suppressed 1331 warnings (1321 in non-user code, 10 NOLINT). -2026-04-08T19:21:52.854688Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. -2026-04-08T19:21:52.854695Z 01O 11 warnings treated as errors -2026-04-08T19:21:52.854705Z 01O -2026-04-08T19:21:52.854724Z 01O [31/56][12.1s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/msgpack_helpers.c -2026-04-08T19:21:52.854743Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/msgpack_helpers.c:22:1: error: replace macro with enum [cppcoreguidelines-macro-to-enum,-warnings-as-errors] -2026-04-08T19:21:52.854752Z 01O 22 | #define MAX_RECURSION_DEPTH 50 // arbitrary limit to prevent stack overflow -2026-04-08T19:21:52.854756Z 01O | ^~~~~~~ -2026-04-08T19:21:52.854763Z 01O  |  = -2026-04-08T19:21:52.854765Z 01O  23 |  -2026-04-08T19:21:52.854772Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/msgpack_helpers.c:22:9: error: macro 'MAX_RECURSION_DEPTH' defines an integral constant; prefer an enum instead [cppcoreguidelines-macro-to-enum,-warnings-as-errors] -2026-04-08T19:21:52.854779Z 01O 22 | #define MAX_RECURSION_DEPTH 50 // arbitrary limit to prevent stack overflow -2026-04-08T19:21:52.854782Z 01O |  ^ -2026-04-08T19:21:52.854788Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/msgpack_helpers.c:637:5: error: '/' has higher precedence than '-'; add parentheses to explicitly specify the order of operations [readability-math-missing-parentheses,-warnings-as-errors] -2026-04-08T19:21:52.854800Z 01O 637 | ZEND_RAW_FENTRY(DD_TESTING_NS "decode_msgpack", PHP_FN(datadog_appsec_testing_decode_msgpack), void_ret_array_arginfo, 0, NULL, NULL) -2026-04-08T19:21:52.854805Z 01O |  ^ -2026-04-08T19:21:52.854810Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/compatibility.h:8:107: note: expanded from macro 'ZEND_RAW_FENTRY' -2026-04-08T19:21:52.854819Z 01O 8 | #define ZEND_RAW_FENTRY(zend_name, name, arg_info, flags, ...) { zend_name, name, arg_info, (uint32_t) (sizeof(arg_info)/sizeof(struct _zend_internal_arg_info)-1), flags }, -2026-04-08T19:21:52.854823Z 01O |  ^ -2026-04-08T19:21:52.854827Z 01O 1016 warnings generated. -2026-04-08T19:21:52.854833Z 01O Suppressed 1017 warnings (1010 in non-user code, 7 NOLINT). -2026-04-08T19:21:52.854836Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. -2026-04-08T19:21:52.854840Z 01O 3 warnings treated as errors -2026-04-08T19:21:52.854845Z 01O -2026-04-08T19:21:52.854850Z 01O [32/56][19.4s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/extension/json_truncated_parser.cpp -2026-04-08T19:21:52.854856Z 01O 19090 warnings generated. -2026-04-08T19:21:52.854869Z 01O Suppressed 19101 warnings (19090 in non-user code, 11 NOLINT). -2026-04-08T19:21:52.854879Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. -2026-04-08T19:21:52.854883Z 01O -2026-04-08T19:21:52.854894Z 01O [33/56][20.6s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/config.cpp -2026-04-08T19:21:52.854953Z 01O 19332 warnings generated. -2026-04-08T19:21:52.854959Z 01O Suppressed 19337 warnings (19332 in non-user code, 5 NOLINT). -2026-04-08T19:21:52.854965Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. -2026-04-08T19:21:52.854967Z 01O -2026-04-08T19:21:52.854974Z 01O [34/56][21.8s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/network/socket.cpp -2026-04-08T19:21:52.854985Z 01O 20161 warnings generated. -2026-04-08T19:21:52.854988Z 01O Suppressed 20165 warnings (20161 in non-user code, 4 NOLINT). -2026-04-08T19:21:52.854991Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. -2026-04-08T19:21:52.854997Z 01O -2026-04-08T19:21:52.855001Z 01O [35/56][23.2s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/utils.cpp -2026-04-08T19:21:52.855008Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/utils.cpp:18:33: error: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage,-warnings-as-errors] -2026-04-08T19:21:52.855015Z 01O 18 | std::ifstream file(filename.data(), std::ios::in); -2026-04-08T19:21:52.855023Z 01O |  ~~~~~~~~~^~~~ -2026-04-08T19:21:52.855036Z 01O 21135 warnings generated. -2026-04-08T19:21:52.855068Z 01O Suppressed 21139 warnings (21134 in non-user code, 5 NOLINT). -2026-04-08T19:21:52.855080Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. -2026-04-08T19:21:52.855086Z 01O 1 warning treated as error -2026-04-08T19:21:52.855104Z 01O -2026-04-08T19:21:52.855112Z 01O [36/56][26.0s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/worker_pool.cpp -2026-04-08T19:21:52.855118Z 01O 16273 warnings generated. -2026-04-08T19:21:52.855123Z 01O Suppressed 16278 warnings (16273 in non-user code, 5 NOLINT). -2026-04-08T19:21:52.855126Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. -2026-04-08T19:21:52.855130Z 01O -2026-04-08T19:21:52.855137Z 01O [37/56][30.2s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/network/acceptor.cpp -2026-04-08T19:21:52.855143Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/network/acceptor.cpp:104:25: error: use designated initializer list to initialize 'timeval' [modernize-use-designated-initializers,-warnings-as-errors] -2026-04-08T19:21:52.855147Z 01O 104 | struct timeval tv = {timeout.count(), 0}; -2026-04-08T19:21:52.855153Z 01O |  ^~~~~~~~~~~~~~~~~~~~ -2026-04-08T19:21:52.855156Z 01O  |  .tv_sec= .tv_usec= -2026-04-08T19:21:52.855160Z 01O /usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h:8:1: note: aggregate type is defined here -2026-04-08T19:21:52.855166Z 01O 8 | struct timeval -2026-04-08T19:21:52.855168Z 01O | ^ -2026-04-08T19:21:52.855182Z 01O 24051 warnings generated. -2026-04-08T19:21:52.855196Z 01O Suppressed 24063 warnings (24050 in non-user code, 13 NOLINT). -2026-04-08T19:21:52.855204Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. -2026-04-08T19:21:52.855221Z 01O 1 warning treated as error -2026-04-08T19:21:52.855225Z 01O -2026-04-08T19:21:52.855234Z 01O [38/56][27.2s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/network/msgpack_helpers.cpp -2026-04-08T19:21:52.855242Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/network/msgpack_helpers.cpp:73:12: error: returning a constant reference parameter may cause use-after-free when the parameter is constructed from a temporary [bugprone-return-const-ref-from-parameter,-warnings-as-errors] -2026-04-08T19:21:52.855247Z 01O 73 | return o; -2026-04-08T19:21:52.855252Z 01O |  ^ -2026-04-08T19:21:52.855254Z 01O 31893 warnings generated. -2026-04-08T19:21:52.855258Z 01O Suppressed 31899 warnings (31892 in non-user code, 7 NOLINT). -2026-04-08T19:21:52.855263Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. -2026-04-08T19:21:52.855267Z 01O 1 warning treated as error -2026-04-08T19:21:52.855269Z 01O -2026-04-08T19:21:52.855277Z 01O [39/56][31.1s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/remote_config/config.cpp -2026-04-08T19:21:52.855283Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/remote_config/config.cpp:45:12: error: use designated initializer list to initialize 'config' [modernize-use-designated-initializers,-warnings-as-errors] -2026-04-08T19:21:52.855289Z 01O 45 | return {std::string{shm_path}, std::move(rc_path)}; -2026-04-08T19:21:52.855294Z 01O |  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -2026-04-08T19:21:52.855297Z 01O  |  .shm_path= .rc_path= -2026-04-08T19:21:52.855304Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/remote_config/config.hpp:143:1: note: aggregate type is defined here -2026-04-08T19:21:52.855310Z 01O 143 | struct config { -2026-04-08T19:21:52.855312Z 01O | ^ -2026-04-08T19:21:52.855315Z 01O 26596 warnings generated. -2026-04-08T19:22:13.877716Z 01O Suppressed 26603 warnings (26595 in non-user code, 8 NOLINT). -2026-04-08T19:22:13.877722Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. -2026-04-08T19:22:13.877730Z 01O 1 warning treated as error -2026-04-08T19:22:13.877732Z 01O -2026-04-08T19:22:13.877739Z 01O [40/56][30.3s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/remote_config/listeners/asm_features_listener.cpp -2026-04-08T19:22:13.877746Z 01O 26894 warnings generated. -2026-04-08T19:22:13.877749Z 01O Suppressed 26905 warnings (26894 in non-user code, 11 NOLINT). -2026-04-08T19:22:13.877752Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. -2026-04-08T19:22:13.877758Z 01O -2026-04-08T19:22:13.877765Z 01O [41/56][23.9s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/remote_config/listeners/config_aggregators/asm_features_aggregator.cpp -2026-04-08T19:22:13.877771Z 01O 26742 warnings generated. -2026-04-08T19:22:13.877776Z 01O Suppressed 26753 warnings (26742 in non-user code, 11 NOLINT). -2026-04-08T19:22:13.877779Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. -2026-04-08T19:22:13.877827Z 01O -2026-04-08T19:22:13.877836Z 01O [42/56][31.7s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/remote_config/listeners/config_aggregators/asm_aggregator.cpp -2026-04-08T19:22:13.877840Z 01O 26662 warnings generated. -2026-04-08T19:22:13.877861Z 01O Suppressed 26677 warnings (26662 in non-user code, 15 NOLINT). -2026-04-08T19:22:13.877882Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. -2026-04-08T19:22:13.877893Z 01O -2026-04-08T19:22:13.877901Z 01O [43/56][40.2s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/remote_config/listeners/engine_listener.cpp -2026-04-08T19:22:13.877913Z 01O 45857 warnings generated. -2026-04-08T19:22:13.877922Z 01O Suppressed 45871 warnings (45857 in non-user code, 14 NOLINT). -2026-04-08T19:22:13.877926Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. -2026-04-08T19:22:13.877939Z 01O -2026-04-08T19:22:13.877951Z 01O [44/56][41.2s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/network/proto.cpp -2026-04-08T19:22:13.877958Z 01O 40403 warnings generated. -2026-04-08T19:22:13.877964Z 01O Suppressed 40416 warnings (40403 in non-user code, 13 NOLINT). -2026-04-08T19:22:13.877967Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. -2026-04-08T19:22:13.877970Z 01O -2026-04-08T19:22:13.877978Z 01O [45/56][41.8s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/json_helper.cpp -2026-04-08T19:22:13.877983Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/json_helper.cpp:94:23: error: use C++20 requires constraints instead of enable_if [modernize-use-constraints,-warnings-as-errors] -2026-04-08T19:22:13.877988Z 01O 94 | template >, -2026-04-08T19:22:13.878001Z 01O |  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -2026-04-08T19:22:13.878009Z 01O  96 | std::is_same>>>> -2026-04-08T19:22:13.878014Z 01O |  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -2026-04-08T19:22:13.878025Z 01O  97 | // NOLINTNEXTLINE(misc-no-recursion) -2026-04-08T19:22:13.878052Z 01O 98 | void json_to_object(ddwaf_object *object, T &doc) -2026-04-08T19:22:13.878061Z 01O 99 | { -2026-04-08T19:22:13.878068Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/json_helper.cpp:98:6: error: function 'json_to_object' can be made static or moved into an anonymous namespace to enforce internal linkage [misc-use-internal-linkage,-warnings-as-errors] -2026-04-08T19:22:13.878079Z 01O 98 | void json_to_object(ddwaf_object *object, T &doc) -2026-04-08T19:22:13.878084Z 01O |  ^ -2026-04-08T19:22:13.878088Z 01O  | static -2026-04-08T19:22:13.878100Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/json_helper.cpp:160:58: error: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage,-warnings-as-errors] -2026-04-08T19:22:13.878143Z 01O 160 | rapidjson::ParseResult const result = doc.Parse(json.data()); -2026-04-08T19:22:13.878148Z 01O |  ~~~~~^~~~ -2026-04-08T19:22:13.878156Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/json_helper.cpp:173:37: error: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage,-warnings-as-errors] -2026-04-08T19:22:13.878160Z 01O 173 | parent_field.FindMember(key.data()); -2026-04-08T19:22:13.878164Z 01O |  ~~~~^~~~ -2026-04-08T19:22:13.878179Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/json_helper.cpp:209:40: error: result of a `data()` call may not be null terminated, provide size information to the callee to prevent potential issues [bugprone-suspicious-stringview-data-usage,-warnings-as-errors] -2026-04-08T19:22:13.878187Z 01O 209 | return parent_field.FindMember(key.data()) != parent_field.MemberEnd(); -2026-04-08T19:22:13.878191Z 01O |  ~~~~^~~~ -2026-04-08T19:22:13.878203Z 01O 23792 warnings generated. -2026-04-08T19:22:13.878206Z 01O Suppressed 23798 warnings (23787 in non-user code, 11 NOLINT). -2026-04-08T19:22:13.878212Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. -2026-04-08T19:22:13.878218Z 01O 5 warnings treated as errors -2026-04-08T19:22:13.878220Z 01O -2026-04-08T19:22:13.878226Z 01O [46/56][35.4s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/engine_settings.cpp -2026-04-08T19:22:13.878235Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/engine_settings.cpp:56:43: error: initializer for member 'stored_file' is redundant [readability-redundant-member-init,-warnings-as-errors] -2026-04-08T19:22:13.878244Z 01O 56 | std::atomic stored_file{}; -2026-04-08T19:22:13.878249Z 01O |  ^~ -2026-04-08T19:22:13.878255Z 01O 40138 warnings generated. -2026-04-08T19:22:13.878257Z 01O Suppressed 40146 warnings (40137 in non-user code, 9 NOLINT). -2026-04-08T19:22:13.878261Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. -2026-04-08T19:22:13.878267Z 01O 1 warning treated as error -2026-04-08T19:22:13.878269Z 01O -2026-04-08T19:22:13.878274Z 01O [47/56][43.0s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/remote_config/client.cpp -2026-04-08T19:22:13.878281Z 01O 40855 warnings generated. -2026-04-08T19:22:13.878283Z 01O Suppressed 40890 warnings (40855 in non-user code, 35 NOLINT). -2026-04-08T19:22:13.878287Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. -2026-04-08T19:22:13.878292Z 01O -2026-04-08T19:22:13.878298Z 01O [48/56][42.6s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/network/broker.cpp -2026-04-08T19:22:13.878303Z 01O 40571 warnings generated. -2026-04-08T19:22:13.878308Z 01O Suppressed 40586 warnings (40571 in non-user code, 15 NOLINT). -2026-04-08T19:22:13.878314Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. -2026-04-08T19:22:13.878335Z 01O -2026-04-08T19:22:13.878343Z 01O [49/56][40.9s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/remote_config/client_handler.cpp -2026-04-08T19:22:13.878348Z 01O 46520 warnings generated. -2026-04-08T19:22:13.878352Z 01O Suppressed 46534 warnings (46520 in non-user code, 14 NOLINT). -2026-04-08T19:22:13.878358Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. -2026-04-08T19:22:13.878361Z 01O -2026-04-08T19:22:13.878367Z 01O [50/56][51.8s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/engine.cpp -2026-04-08T19:22:41.912097Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/engine.cpp:134:25: error: use designated initializer list to initialize 'action' [modernize-use-designated-initializers,-warnings-as-errors] -2026-04-08T19:22:41.912130Z 01O 134 | action record = {dds::action_type::record, {}}; -2026-04-08T19:22:41.912134Z 01O |  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -2026-04-08T19:22:41.912142Z 01O  |  .type= .parameters= -2026-04-08T19:22:41.912147Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/action.hpp:24:1: note: aggregate type is defined here -2026-04-08T19:22:41.912151Z 01O 24 | struct action { -2026-04-08T19:22:41.912156Z 01O | ^ -2026-04-08T19:22:41.912161Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/engine.cpp:138:28: error: use designated initializer list to initialize 'result' [modernize-use-designated-initializers,-warnings-as-errors] -2026-04-08T19:22:41.912169Z 01O 138 | dds::engine::result res{{}, std::move(event.triggers), force_keep}; -2026-04-08T19:22:41.912175Z 01O |  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -2026-04-08T19:22:41.912178Z 01O  |  .actions= .triggers= .force_keep= -2026-04-08T19:22:41.912184Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/engine.hpp:40:5: note: aggregate type is defined here -2026-04-08T19:22:41.912191Z 01O 40 | struct result { -2026-04-08T19:22:41.912193Z 01O |  ^ -2026-04-08T19:22:41.912197Z 01O 46986 warnings generated. -2026-04-08T19:22:41.912202Z 01O Suppressed 47004 warnings (46984 in non-user code, 20 NOLINT). -2026-04-08T19:22:41.912213Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. -2026-04-08T19:22:41.912224Z 01O 2 warnings treated as errors -2026-04-08T19:22:41.912231Z 01O -2026-04-08T19:22:41.912237Z 01O [51/56][52.1s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/runner.cpp -2026-04-08T19:22:41.912242Z 01O 47862 warnings generated. -2026-04-08T19:22:41.912248Z 01O Suppressed 47906 warnings (47862 in non-user code, 44 NOLINT). -2026-04-08T19:22:41.912250Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. -2026-04-08T19:22:41.912254Z 01O -2026-04-08T19:22:41.912261Z 01O [52/56][52.4s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/service_manager.cpp -2026-04-08T19:22:41.912267Z 01O 47297 warnings generated. -2026-04-08T19:22:41.912270Z 01O Suppressed 47316 warnings (47297 in non-user code, 19 NOLINT). -2026-04-08T19:22:41.912276Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. -2026-04-08T19:22:41.912278Z 01O -2026-04-08T19:22:41.912283Z 01O [53/56][48.0s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/main.cpp -2026-04-08T19:22:41.912302Z 01O 48256 warnings generated. -2026-04-08T19:22:41.912313Z 01O Suppressed 48288 warnings (48256 in non-user code, 32 NOLINT). -2026-04-08T19:22:41.912320Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. -2026-04-08T19:22:41.912343Z 01O -2026-04-08T19:22:41.912350Z 01O [54/56][56.2s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/service.cpp -2026-04-08T19:22:41.912398Z 01O 47290 warnings generated. -2026-04-08T19:22:41.912405Z 01O Suppressed 47362 warnings (47290 in non-user code, 72 NOLINT). -2026-04-08T19:22:41.912408Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. -2026-04-08T19:22:41.912422Z 01O -2026-04-08T19:22:41.912435Z 01O [55/56][56.5s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/subscriber/waf.cpp -2026-04-08T19:22:41.912443Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/subscriber/waf.cpp:218:30: error: use designated initializer list to initialize 'action' [modernize-use-designated-initializers,-warnings-as-errors] -2026-04-08T19:22:41.912448Z 01O 218 | dds::action a{ -2026-04-08T19:22:41.912453Z 01O |  ^ -2026-04-08T19:22:41.912457Z 01O  219 | parse_action_type_string(std::string(action.key())), {}}; -2026-04-08T19:22:41.912461Z 01O |  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -2026-04-08T19:22:41.912467Z 01O  |  .type= .parameters= -2026-04-08T19:22:41.912472Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/subscriber/../action.hpp:24:1: note: aggregate type is defined here -2026-04-08T19:22:41.912477Z 01O 24 | struct action { -2026-04-08T19:22:41.912482Z 01O | ^ -2026-04-08T19:22:41.912486Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/subscriber/waf.cpp:692:9: error: return statement within a void function should not have a specified return value [readability-avoid-return-with-void-value,-warnings-as-errors] -2026-04-08T19:22:41.912491Z 01O 692 | return format_waf_result(actions, events, event); -2026-04-08T19:22:41.912496Z 01O |  ^~~~~~ -2026-04-08T19:22:41.912499Z 01O  |  return; -2026-04-08T19:22:41.912503Z 01O 45681 warnings generated. -2026-04-08T19:22:41.912510Z 01O Suppressed 45708 warnings (45679 in non-user code, 29 NOLINT). -2026-04-08T19:22:41.912513Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. -2026-04-08T19:22:41.912517Z 01O 2 warnings treated as errors -2026-04-08T19:22:41.912521Z 01O -2026-04-08T19:22:41.912526Z 01O [56/56][76.8s] /usr/bin/clang-tidy-19 --use-color -p=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/build /go/src/github.com/DataDog/apm-reliability/dd-trace-php/appsec/src/helper/client.cpp -2026-04-08T19:22:41.912531Z 01O 48189 warnings generated. -2026-04-08T19:22:41.912536Z 01O Suppressed 48214 warnings (48189 in non-user code, 25 NOLINT). -2026-04-08T19:22:41.912539Z 01O Use -header-filter=.* to display errors from all non-system headers. Use -system-headers to display errors from system headers as well. -2026-04-08T19:22:41.912543Z 01O -2026-04-08T19:22:41.912551Z 01O make[3]: *** [CMakeFiles/tidy.dir/build.make:70: CMakeFiles/tidy] Error 1 -2026-04-08T19:22:41.912556Z 01O make[2]: *** [CMakeFiles/Makefile2:488: CMakeFiles/tidy.dir/all] Error 2 -2026-04-08T19:22:41.912559Z 01O make[1]: *** [CMakeFiles/Makefile2:495: CMakeFiles/tidy.dir/rule] Error 2 -2026-04-08T19:22:41.912575Z 01O make: *** [Makefile:294: tidy] Error 2 -2026-04-08T19:22:41.912578Z 01O -2026-04-08T19:22:41.912626Z 00O section_end:1775676161:step_script -2026-04-08T19:22:41.912628Z 00O+section_start:1775676161:cleanup_file_variables[collapsed=true] -2026-04-08T19:22:41.914280Z 00O+Cleaning up project directory and file based variables -2026-04-08T19:22:42.412873Z 01O -2026-04-08T19:22:42.412910Z 00O section_end:1775676162:cleanup_file_variables -2026-04-08T19:22:42.412911Z 00O+ -2026-04-08T19:22:42.632160Z 00O ERROR: Job failed: command terminated with exit code 1 -2026-04-08T19:22:42.632165Z 00O  diff --git a/patch.diff b/patch.diff deleted file mode 100644 index 3980840976d..00000000000 --- a/patch.diff +++ /dev/null @@ -1,14 +0,0 @@ -diff --git a/zend_abstract_interface/config/config_ini.c b/zend_abstract_interface/config/config_ini.c -index 888271399..5bb68f1f9 100644 ---- a/zend_abstract_interface/config/config_ini.c -+++ b/zend_abstract_interface/config/config_ini.c -@@ -401,7 +401,8 @@ void zai_config_ini_rinit(void) { - *ini = zend_hash_find_ptr(EG(ini_directives), source->name); - if (ini->modified) { - if (ini->orig_value == ini->value) { -- ini->value = source->value; -+ // Keep owned refs for both fields; failure cleanup releases ini->value. -+ ini->value = zend_string_copy(source->value); - } - zend_string_release(ini->orig_value); - ini->orig_value = zend_string_copy(source->value); diff --git a/plans/opcache.md b/plans/opcache.md deleted file mode 100644 index f60d0b6e4d6..00000000000 --- a/plans/opcache.md +++ /dev/null @@ -1,252 +0,0 @@ -# OPcache: Research Notes for Profiling Extension - -Source code for PHP versions can be found at, you are free to read things there: - -/usr/local/src/php/7.1 -/usr/local/src/php/7.2 -/usr/local/src/php/7.3 -/usr/local/src/php/7.4 -/usr/local/src/php/8.0 -/usr/local/src/php/8.1 -/usr/local/src/php/8.2 -/usr/local/src/php/8.3 -/usr/local/src/php/8.4 -/usr/local/src/php/8.5 - -## INI Defaults - -`opcache.file_cache` defaults to `NULL` (disabled) across all PHP versions 7.1–8.5. -File cache is an opt-in feature; the vast majority of deployments use SHM only. - -| INI | Default | Notes | -|--------------------------------------|---------|-----------------------------------------| -| `opcache.file_cache` | NULL | Path string; NULL = disabled | -| `opcache.file_cache_only` | 0 | 1 = no SHM at all | -| `opcache.file_cache_fallback` | 1 | Fall back to file cache on SHM failure | -| `opcache.file_cache_consistency_checks` | 1 | Checksum validation on load | -| `opcache.file_cache_read_only` | 0 | 8.5+ only; skip write-permission check | - -## Operating Modes - -**SHM only (default):** `opcache.file_cache = NULL`. Scripts compiled on first use, -persisted to SHM. `op_array_persist` hooks called. No file cache involvement. - -**SHM + file cache (hybrid):** `opcache.file_cache = `, `opcache.file_cache_only = 0`. -SHM is primary. On SHM miss, OPcache checks file cache before compiling. If the script -is found in file cache it's loaded into SHM (`memcpy`). Persist hooks are NOT called for -the file-cache-to-SHM path. - -**file_cache_only:** `opcache.file_cache = `, `opcache.file_cache_only = 1`. -No SHM. Scripts loaded from file cache into per-process memory. Persist hooks are -never called (they are only called from `cache_script_in_shared_memory`, which is -never reached in this mode). - -## When `op_array_persist` Is and Isn't Called - -`op_array_persist` (and `op_array_persist_calc`) on `zend_extension` are invoked via -`zend_extensions_op_array_persist*()` during OPcache's persistence pass -(`zend_accel_script_persist*()` / `zend_persist_op_array()`). That pass is used when -OPcache persists a newly compiled script into SHM, when it serializes a newly compiled -script into the file cache, and during preload. It is not used when OPcache later loads -an already-cached script back from the file cache. - -| Path | Persist hooks called? | -|-----------------------------------------|-----------------------| -| Fresh compilation → SHM | Yes | -| Fresh compilation → file cache | Yes | -| File cache → SHM (`zend_file_cache_script_load`) | No | -| File cache → process memory (`file_cache_only`, SHM full fallback, etc.) | No | -| Internal functions (never compiled) | Never | - -## File Cache Serialization / Unserialization - -`zend_file_cache_script_store()` writes a serialized `zend_persistent_script` to disk -using the current persisted op_array state. For this profiler's current design, the -`reserved[]` slot contains a raw `FunctionIndex` written by `op_array_persist`. - -`zend_file_cache_script_load()` reads the file and either: -- Copies the serialized blob into OPcache SHM via `zend_shared_alloc_aligned` + `memcpy`, - then unserializes it there (`cache_it = true`), or -- Uses the CG(arena) process-memory buffer directly, then unserializes it there - (`use_process_mem`, `cache_it = false`). - -During that unserialization path, no persist hooks fire. In the refreshed local PHP -7.1–8.5 trees, I did not find any special `reserved[]` handling in -`ext/opcache/zend_file_cache.c`, so for this profiler's current raw-`FunctionIndex` -slot the working assumption is that the cached value is carried forward into the live -op_array on file-cache load. - -## The Stale `reserved[]` Bug - -Our profiling extension writes a `FunctionIndex` (index into profiling SHM) into -`op_array->reserved[slot]` from the `op_array_persist` hook. After a PHP restart: - -1. Profiling SHM is recreated fresh (MAP_ANONYMOUS, not persistent). -2. OPcache SHM is also fresh. -3. A request loads `foo.php` from file cache → serialized blob is copied into new - OPcache SHM and then unserialized there. -4. `reserved[slot]` contains `FunctionIndex(42)` from the old profiling SHM. -5. New profiling SHM: index 42 may be a completely different function (e.g., a built-in - that `intern_all_functions` assigned index 42 to). -6. Stack walk reads `FunctionIndex(42)` → wrong function name in profiles. - -This is a correctness bug (wrong names), not just a missing-names issue. - -**When OPcache SHM restarts but PHP process does not** (OOM/hash overflow/`opcache_reset`): -the profiling SHM (MAP_ANONYMOUS inherited via fork) is NOT recreated. The stale -`reserved[]` values from the file cache still reference the same profiling SHM, so -they remain valid. The bug only manifests on PHP process restart with warm file cache. - -## `ZEND_ACC_IMMUTABLE` Flag - -Present in **PHP 7.3+**. Absent in 7.1–7.2. Its exact bit layout and surrounding -semantics changed significantly at 7.4; see per-version notes below. - -Set on functions and classes during `zend_persist_op_array()` (SHM persistence path). -The flag is baked into the file cache when the op_array is serialized to disk. - -### PHP 7.3 semantics (different from 7.4+) - -In PHP 7.3 the flag lives at bit 25 (`1 << 25` in `Zend/zend_compile.h`), versus bit 7 -in 7.4+. More importantly, the *runtime* behavior is different: `init_func_run_time_cache_i` -in `Zend/zend_execute.c` detects the flag, **copies the op_array into the per-process arena**, -and then **clears** the flag on the copy. By the time any user-mode code runs, the op_array -is already in per-process memory with the flag cleared. The flag therefore cannot be used as -a "this is in SHM" test in PHP 7.3. - -In PHP 7.4 this copy was eliminated via `ZEND_MAP_PTR` indirection, which is why immutable -op_arrays can stay in SHM from 7.4 onward. - -### Behavior when loading from file cache: - -**PHP 7.4 / 8.0:** `zend_file_cache_unserialize_op_array` mostly follows the serialized -`fn_flags` value rather than explicitly re-deriving `ZEND_ACC_IMMUTABLE` from -SHM-vs-process-memory placement. In `file_cache_only` mode the flag can therefore be -set even though the op_array is in process memory, so it is not a reliable -"this is in SHM" test in those versions. - -**PHP 8.1–8.5:** `zend_file_cache_unserialize_op_array` explicitly manages the flag for -non-main op_arrays based on whether the script was restored into SHM or process memory: -```c -if (!script->corrupted) { // in SHM - op_array->fn_flags |= ZEND_ACC_IMMUTABLE; -} else { // in process memory - op_array->fn_flags &= ~ZEND_ACC_IMMUTABLE; -} -``` -Important exception: `main_op_array` is special-cased and is **not** simply forced to -immutable on the SHM path, so this is only a reliable test for non-main op_arrays. - -### Implications for writing to `reserved[]` - -For a non-main op_array without `ZEND_ACC_IMMUTABLE` (on 8.1+), the op_array is in -per-process, per-request memory. Writing to its `reserved[]` is race-free (no other -workers see it). However: -- There is no `zend_extension` hook that fires when an op_array is loaded from file cache. - `op_array_handler` is compilation-only. -- Any write to a process-memory op_array evaporates at request end; the next request - gets a fresh copy from the file cache with the original stale value. -- Writing in the stack-walk signal handler requires acquiring the profiling SHM spinlock, - which is undesirable. - -The per-request limitation is a known tradeoff. Prior to the `reserved[]` + SHM approach -the profiler used the run-time cache (also per-request) and this was still considered -valuable — so a per-request fallback path for file-cache mode is viable in principle. - -## `opcache.file_cache` INI Validation History - -PHP 7.1–8.4: `OnUpdateFileCache` validates the path at INI registration time: -- Must be absolute (`IS_ABSOLUTE_PATH`) -- Must exist and be a directory (`zend_stat` + `S_ISDIR`) -- Must be accessible: `access(path, R_OK|W_OK|X_OK)` -- **Failure is silent**: value is set to NULL (file cache effectively disabled). - -PHP 8.5: validation removed from `OnUpdateFileCache`. Validation moved to -`accel_post_startup` instead: -- Same `IS_ABSOLUTE_PATH` + `zend_stat` + `S_ISDIR` checks, with the `access` mode - depending on `opcache.file_cache_read_only`. -- **Failure is fatal**: `ACCEL_LOG_FATAL` + `accel_startup_ok = false`. - -Because 8.5 failures are fatal, if PHP is running and we reach our startup hook, -any non-empty `opcache.file_cache` value has already passed validation (or PHP died). - -## Detecting File Cache at Startup (`cfg_get_string`) - -`cfg_get_string` reads from `configuration_hash`, populated when php.ini is parsed, -before normal module startup/MINIT runs. It returns the configured string regardless -of OPcache's load order. The signature changes from `int` (7.1–8.4) to `zend_result` -(8.5), but both use the same `SUCCESS` / `FAILURE` convention. - -To replicate OPcache's 7.1–8.4 validation and avoid false positives: - -```c -bool ddog_php_prof_opcache_file_cache_enabled(void) { - char *file_cache = NULL; - if (cfg_get_string("opcache.file_cache", &file_cache) != SUCCESS - || file_cache == NULL || *file_cache == '\0') { - return false; - } - if (!IS_ABSOLUTE_PATH(file_cache, strlen(file_cache))) { - return false; - } - zend_stat_t buf = {0}; - if (zend_stat(file_cache, &buf) != 0 || !S_ISDIR(buf.st_mode)) { - return false; - } -#ifndef ZEND_WIN32 - if (access(file_cache, R_OK | X_OK) != 0) { - return false; - } -#else - if (_access(file_cache, 05) != 0) { - return false; - } -#endif - return true; -} -``` - -Using `R_OK|X_OK` (not `R_OK|W_OK|X_OK`) intentionally matches the PHP 8.5 -`opcache.file_cache_read_only=1` behavior and correctly includes read-only cache -directories on that version. On 7.1–8.4, and on 8.5 when -`opcache.file_cache_read_only=0`, this may yield a minor false positive for -read-only cache dirs that OPcache would reject, but those are uncommon and the -consequence is only an unnecessary warning. - -## Runtime Write Policy for `reserved[]` - -Assumptions for the table below: - -- Only user `zend_op_array`s are in scope. -- Trampolines / synthetic reused engine frames are excluded. -- If file cache is enabled in any form, we never write `zend_op_array.reserved`. -- Our persist hook writes a non-zero `FunctionIndex` into the reserved slot for - SHM-persisted op_arrays. - -Under those assumptions, the practical policy is: - -| PHP versions | OPcache state | Safe to write when `reserved[slot] == 0 && !(fn_flags & ZEND_ACC_IMMUTABLE)`? | Why | -|--------------|---------------|---------------------------------------------------------------------------------|-----| -| 7.1–7.4, 8.0 | OPcache disabled | Yes | No OPcache SHM-backed op_arrays to worry about. The write is local. | -| 7.1–7.4, 8.0 | OPcache enabled, file cache disabled | No | `!ZEND_ACC_IMMUTABLE` is not a reliable "not in SHM" test in this band, and in 7.1/7.2 the flag is not even available. | -| 7.1–7.4, 8.0 | File cache enabled in any form | No | By policy, skip writes entirely and avoid stale file-cache replay issues. | -| 8.1–8.5 | OPcache disabled | Yes | No OPcache SHM-backed op_arrays to worry about. The write is local. | -| 8.1–8.5 | OPcache enabled, file cache disabled | Yes, under the assumptions above | SHM-persisted op_arrays should already have a non-zero slot from the persist hook, so `reserved == 0 && !IMMUTABLE` is a workable signal for a local/non-SHM case. | -| 8.1–8.5 | File cache enabled in any form | No | By policy, skip writes entirely and avoid stale file-cache replay issues. | - -Brief context behind the split: - -- `ext/opcache/zend_persist.c::zend_persist_op_array_ex()` is where OPcache calls - `zend_extensions_op_array_persist()`, so freshly SHM-persisted op_arrays do go - through the zend-extension persist hook. -- `ext/opcache/zend_file_cache.c::zend_file_cache_script_load()` restores cached - scripts from file cache without rerunning the persist hook, which is why file cache - must be treated as a separate unsafe case. -- `ext/opcache/zend_accelerator_util_funcs.c::zend_accel_load_script()` allocates a - fresh `main_op_array` copy for execution, so the executing main op_array is local. -- `ext/opcache/zend_persist.c::zend_persist_class_method()` can place class-method - op_arrays into OPcache SHM even when `ZEND_ACC_IMMUTABLE` is not set, which is why - `!ZEND_ACC_IMMUTABLE` by itself is not a safe test in 7.4/8.0 and earlier versions. -- In PHP 8.1+, `ext/opcache/zend_file_cache.c::zend_file_cache_unserialize_op_array()` - explicitly manages `ZEND_ACC_IMMUTABLE` based on SHM-vs-process-memory restore, but - the table above still assumes file cache is entirely opted out. diff --git a/raw.txt b/raw.txt deleted file mode 100644 index 6cd1cc17242..00000000000 --- a/raw.txt +++ /dev/null @@ -1,1898 +0,0 @@ -2026-04-08T22:02:40.176970Z 00O Running with gitlab-runner 17.9.3-544784f7 (544784f7) -2026-04-08T22:02:40.177040Z 00O  on gitlab-runner-amd64-shared-7b49977ffd-2wljp _xbvGsbV_, system ID: r_2L6KuvnuwoWh -2026-04-08T22:02:40.177110Z 00O  feature flags: FF_RETRIEVE_POD_WARNING_EVENTS:false -2026-04-08T22:02:40.177350Z 00O section_start:1775685760:prepare_executor[collapsed=true] -2026-04-08T22:02:40.177360Z 00O+Preparing the "kubernetes" executor -2026-04-08T22:02:40.177810Z 00O "CPURequest" overwritten with "12" -2026-04-08T22:02:40.178120Z 00O "ServiceMemoryLimit" overwritten with "512Mi" -2026-04-08T22:02:40.178160Z 00O "ServiceCPURequest" overwritten with "1" -2026-04-08T22:02:40.178190Z 00O "ServiceMemoryRequest" overwritten with "512Mi" -2026-04-08T22:02:40.178460Z 00O Using Kubernetes namespace: gitlab-runner -2026-04-08T22:02:40.182470Z 00O Using Kubernetes cluster domain: mudkip-f.us1.ddbuild.io -2026-04-08T22:02:40.182540Z 00O Using Kubernetes executor with image registry.ddbuild.io/images/mirror/datadog/dd-trace-ci:php-8.0_bookworm-7 ... -2026-04-08T22:02:40.182570Z 00O Using attach strategy to execute scripts... -2026-04-08T22:02:40.124234Z 00O section_end:1775685760:prepare_executor -2026-04-08T22:02:40.124241Z 00O+section_start:1775685760:prepare_script[collapsed=true] -2026-04-08T22:02:40.131807Z 00O+Preparing environment -2026-04-08T22:02:40.134306Z 00O Using FF_USE_POD_ACTIVE_DEADLINE_SECONDS, the Pod activeDeadlineSeconds will be set to the job timeout: 1h0m0s... -2026-04-08T22:02:40.141856Z 00O Using service account: dd-trace-php -2026-04-08T22:02:40.970221Z 00E Waiting for pod gitlab-runner/runner-xbvgsbv-project-355-concurrent-3-uvsaicnm to be running, status is Pending -2026-04-08T22:02:43.985194Z 00E Waiting for pod gitlab-runner/runner-xbvgsbv-project-355-concurrent-3-uvsaicnm to be running, status is Pending -2026-04-08T22:02:43.985203Z 00E ContainersNotInitialized: "containers with incomplete status: [emissary init-permissions]" -2026-04-08T22:02:43.985207Z 00E ContainersNotReady: "containers with unready status: [emissary build helper httpbin-integration request-replayer test-agent]" -2026-04-08T22:02:43.985211Z 00E ContainersNotReady: "containers with unready status: [emissary build helper httpbin-integration request-replayer test-agent]" -2026-04-08T22:02:48.263758Z 01O Running on runner-xbvgsbv-project-355-concurrent-3-uvsaicnm via gitlab-runner-amd64-shared-7b49977ffd-2wljp... -2026-04-08T22:02:48.263767Z 01O -2026-04-08T22:02:48.263797Z 00O section_end:1775685768:prepare_script -2026-04-08T22:02:48.263799Z 00O+section_start:1775685768:get_sources[collapsed=true] -2026-04-08T22:02:48.264650Z 00O+Getting source from Git repository -2026-04-08T22:02:48.764435Z 01O $ if [ -n "${VAULT_ADDR:-}" ]; then # collapsed multi-line command -2026-04-08T22:02:48.764446Z 01O section_start:1775685768:git_cache[collapsed=true] Git cache script -2026-04-08T22:02:48.764457Z 01O {"level":"INFO","ts":"2026-04-08T22:02:48.555579+00:00","caller":"git-cache-s3/main.go:23","msg":"Running git-cache-s3 go application"} -2026-04-08T22:02:48.764463Z 01O {"level":"INFO","ts":"2026-04-08T22:02:48.555762+00:00","caller":"git-cache-s3/main.go:24","msg":"Project name dd-trace-php"} -2026-04-08T22:02:48.764472Z 01O {"level":"INFO","ts":"2026-04-08T22:02:48.571107+00:00","caller":"metric/statsd.go:33","msg":"Creating the statsd instance."} -2026-04-08T22:02:48.764483Z 01O {"level":"INFO","ts":"2026-04-08T22:02:48.572833+00:00","caller":"git-cache-s3/main.go:82","msg":"Experiment is disabled for refreshing the repository cache, skipping refresh"} -2026-04-08T22:02:48.764489Z 01O {"level":"INFO","ts":"2026-04-08T22:02:48.574320+00:00","caller":"git/git.go:44","msg":"Retrieving repository from cache"} -2026-04-08T22:02:55.773746Z 01O {"level":"INFO","ts":"2026-04-08T22:02:55.662472+00:00","caller":"metric/statsd.go:39","msg":"Statsd Client already exists."} -2026-04-08T22:02:55.773767Z 01O {"level":"INFO","ts":"2026-04-08T22:02:55.662708+00:00","caller":"git-cache-s3/main.go:40","msg":"Arrive to the end of the script"} -2026-04-08T22:02:55.773778Z 01O section_end:1775685775:git_cache  -2026-04-08T22:02:55.773787Z 01O Fetching changes... -2026-04-08T22:02:55.773791Z 01O Reinitialized existing Git repository in /go/src/github.com/DataDog/apm-reliability/dd-trace-php/.git/ -2026-04-08T22:02:55.773796Z 01O Created fresh repository. -2026-04-08T22:02:55.773802Z 01O gitretriever: create-ref FAILED (pipeline=106784035 repo=DataDog/apm-reliability/dd-trace-php), falling back to GitLab -2026-04-08T22:02:56.273871Z 01O Checking out e340959b as detached HEAD (ref is levi/clang-17-to-19)... -2026-04-08T22:03:01.279548Z 01O -2026-04-08T22:03:01.279583Z 01O Updating/initializing submodules recursively... -2026-04-08T22:03:01.279590Z 01O Submodule 'appsec/third_party/cpp-base64' (https://github.com/ReneNyffenegger/cpp-base64) registered for path 'appsec/third_party/cpp-base64' -2026-04-08T22:03:01.279617Z 01O Submodule 'appsec/third_party/libddwaf' (https://github.com/DataDog/libddwaf.git) registered for path 'appsec/third_party/libddwaf' -2026-04-08T22:03:01.279632Z 01O Submodule 'appsec/third_party/libddwaf-rust' (https://github.com/DataDog/libddwaf-rust.git) registered for path 'appsec/third_party/libddwaf-rust' -2026-04-08T22:03:01.279640Z 01O Submodule 'appsec/third_party/msgpack-c' (https://github.com/msgpack/msgpack-c.git) registered for path 'appsec/third_party/msgpack-c' -2026-04-08T22:03:01.279663Z 01O Submodule 'libdatadog' (https://github.com/DataDog/libdatadog) registered for path 'libdatadog' -2026-04-08T22:03:01.279679Z 01O Submodule 'tea/benchmarks/google-benchmark' (https://github.com/google/benchmark.git) registered for path 'tea/benchmarks/google-benchmark' -2026-04-08T22:03:01.279747Z 01O Synchronizing submodule url for 'libdatadog' -2026-04-08T22:03:01.279755Z 01O Cloning into '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog'... -2026-04-08T22:03:06.786185Z 01O Submodule path 'libdatadog': checked out '11d4111c934d9af49d8124b8266dbbdda5857cb4' -2026-04-08T22:03:06.786198Z 01O Submodule 'libdd-libunwind-sys/libunwind' (https://github.com/DataDog/libunwind.git) registered for path 'libdatadog/libdd-libunwind-sys/libunwind' -2026-04-08T22:03:06.786207Z 01O Cloning into '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-libunwind-sys/libunwind'... -2026-04-08T22:03:07.286751Z 01O Submodule path 'libdatadog/libdd-libunwind-sys/libunwind': checked out 'cc1d07281b9e034c9e088733aeb4b94ffd91db9e' -2026-04-08T22:03:07.286760Z 01O Updated submodules -2026-04-08T22:03:07.286767Z 01O Synchronizing submodule url for 'libdatadog' -2026-04-08T22:03:07.286774Z 01O Synchronizing submodule url for 'libdatadog/libdd-libunwind-sys/libunwind' -2026-04-08T22:03:07.286777Z 01O Entering 'libdatadog' -2026-04-08T22:03:07.286782Z 01O Entering 'libdatadog/libdd-libunwind-sys/libunwind' -2026-04-08T22:03:07.286787Z 01O Entering 'libdatadog' -2026-04-08T22:03:07.787426Z 01O Entering 'libdatadog/libdd-libunwind-sys/libunwind' -2026-04-08T22:03:07.787441Z 01O $ export clone_after=$(date +%s) # collapsed multi-line command -2026-04-08T22:03:07.787446Z 01O Clone elapsed 19 -2026-04-08T22:03:07.787469Z 01O -2026-04-08T22:03:07.787526Z 00O section_end:1775685787:get_sources -2026-04-08T22:03:07.787528Z 00O+section_start:1775685787:download_artifacts[collapsed=true] -2026-04-08T22:03:07.788881Z 00O+Downloading artifacts -2026-04-08T22:03:08.288251Z 01O Downloading artifacts for compile extension: debug-zts-asan: [8.0, amd64] (1579621389)... -2026-04-08T22:03:09.289068Z 01O Downloading artifacts from coordinator... ok  host=gitlab.ddbuild.io id=1579621389 responseStatus=200 OK token=64_mjUGF_ -2026-04-08T22:03:10.790424Z 01O -2026-04-08T22:03:10.790483Z 00O section_end:1775685790:download_artifacts -2026-04-08T22:03:10.790485Z 00O+section_start:1775685790:step_script[collapsed=false] -2026-04-08T22:03:10.791498Z 00O+Executing "step_script" stage of the job script -2026-04-08T22:03:11.291236Z 01O $ export build_before=$(date +%s) # collapsed multi-line command -2026-04-08T22:03:11.291248Z 01O Starting pre-build script -2026-04-08T22:03:11.291257Z 01O Keeping environment unchanged -2026-04-08T22:03:11.291268Z 01O Terminating pre-build script -2026-04-08T22:03:11.291275Z 01O $ if command -v docker > /dev/null 2>&1; then .gitlab/dockerhub-login.sh; fi -2026-04-08T22:03:11.291294Z 01O $ unset DD_SERVICE -2026-04-08T22:03:11.291306Z 01O $ unset DD_ENV -2026-04-08T22:03:11.291311Z 01O $ unset DD_TAGS -2026-04-08T22:03:11.291335Z 01O $ unset DD_TRACE_REMOVE_INTEGRATION_SERVICE_NAMES_ENABLED -2026-04-08T22:03:11.291347Z 01O $ switch-php "${SWITCH_PHP_VERSION}" -2026-04-08T22:03:11.291352Z 01O $ git config --global --add safe.directory "${CI_PROJECT_DIR}" -2026-04-08T22:03:11.291365Z 01O $ git config --global --add safe.directory "${CI_PROJECT_DIR}/*" -2026-04-08T22:03:11.291374Z 01O $ mkdir -p tmp/build_extension/modules artifacts -2026-04-08T22:03:11.291380Z 01O $ mv "modules/${PHP_MAJOR_MINOR}-${SWITCH_PHP_VERSION}-${host_os}-${ARCH}/ddtrace.so" "tmp/build_extension/modules/" -2026-04-08T22:03:11.291392Z 01O $ .gitlab/wait-for-service-ready.sh -2026-04-08T22:03:11.291405Z 01O Waiting for test-agent:9126 to be reachable... -2026-04-08T22:03:11.291410Z 01O Test agent is ready -2026-04-08T22:03:11.291417Z 01O $ mkdir -p "${CI_PROJECT_DIR}/tmp/build_extension/artifacts/tests" -2026-04-08T22:03:11.291420Z 01O $ make test_c_observer -2026-04-08T22:03:16.797050Z 01O Copying tests/ext/DDTrace/ContainsBinaryCharacter.php to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/DDTrace/ContainsBinaryCharacter.php -2026-04-08T22:03:16.797154Z 01O Copying tests/ext/DDTrace/OpenBaseDir.php to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/DDTrace/OpenBaseDir.php -2026-04-08T22:03:16.797163Z 01O Copying tests/ext/DDTrace/RaisesException.php to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/DDTrace/RaisesException.php -2026-04-08T22:03:16.797171Z 01O Copying tests/ext/DDTrace/RaisesFatalError.php to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/DDTrace/RaisesFatalError.php -2026-04-08T22:03:16.797175Z 01O Copying tests/ext/DDTrace/RaisesNotice.php to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/DDTrace/RaisesNotice.php -2026-04-08T22:03:16.797180Z 01O Copying tests/ext/DDTrace/SanityCheck.php to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/DDTrace/SanityCheck.php -2026-04-08T22:03:16.797190Z 01O Copying tests/ext/active_span.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/active_span.phpt -2026-04-08T22:03:16.797196Z 01O Copying tests/ext/add_global_tag_on_userland_and_internal_spans.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/add_global_tag_on_userland_and_internal_spans.phpt -2026-04-08T22:03:17.297649Z 01O Copying tests/ext/alias_logs.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/alias_logs.phpt -2026-04-08T22:03:17.297661Z 01O Copying tests/ext/appsec/sca_flag_is_sent_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/appsec/sca_flag_is_sent_01.phpt -2026-04-08T22:03:17.297670Z 01O Copying tests/ext/appsec/sca_flag_is_sent_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/appsec/sca_flag_is_sent_02.phpt -2026-04-08T22:03:17.297679Z 01O Copying tests/ext/appsec/sca_flag_is_sent_03.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/appsec/sca_flag_is_sent_03.phpt -2026-04-08T22:03:17.297684Z 01O Copying tests/ext/appsec/sca_flag_is_sent_04.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/appsec/sca_flag_is_sent_04.phpt -2026-04-08T22:03:17.297690Z 01O Copying tests/ext/appsec/sca_flag_is_sent_05.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/appsec/sca_flag_is_sent_05.phpt -2026-04-08T22:03:17.297707Z 01O Copying tests/ext/appsec/sca_test.inc to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/appsec/sca_test.inc -2026-04-08T22:03:17.798290Z 01O Copying tests/ext/autoload-php-files/dd_init_open_basedir.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/autoload-php-files/dd_init_open_basedir.phpt -2026-04-08T22:03:17.798301Z 01O Copying tests/ext/autoload-php-files/default_spl_autoloader.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/autoload-php-files/default_spl_autoloader.phpt -2026-04-08T22:03:17.798308Z 01O Copying tests/ext/autoload-php-files/error_get_last_is_unaffected.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/autoload-php-files/error_get_last_is_unaffected.phpt -2026-04-08T22:03:17.798329Z 01O Copying tests/ext/autoload-php-files/file_contains_non_printable_character.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/autoload-php-files/file_contains_non_printable_character.phpt -2026-04-08T22:03:17.798338Z 01O Copying tests/ext/autoload-php-files/file_not_found.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/autoload-php-files/file_not_found.phpt -2026-04-08T22:03:17.798345Z 01O Copying tests/ext/autoload-php-files/ignores_exceptions.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/autoload-php-files/ignores_exceptions.phpt -2026-04-08T22:03:17.798412Z 01O Copying tests/ext/autoload-php-files/ignores_fatal_errors.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/autoload-php-files/ignores_fatal_errors.phpt -2026-04-08T22:03:17.798421Z 01O Copying tests/ext/autoload-php-files/legacy_autoloader.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/autoload-php-files/legacy_autoloader.phpt -2026-04-08T22:03:18.298975Z 01O Copying tests/ext/autoload-php-files/skip_default_autoloader.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/autoload-php-files/skip_default_autoloader.phpt -2026-04-08T22:03:18.298988Z 01O Copying tests/ext/autoload-php-files/skip_registered_autoloader_match.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/autoload-php-files/skip_registered_autoloader_match.phpt -2026-04-08T22:03:18.298995Z 01O Copying tests/ext/autoload-php-files/splautoload.inc to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/autoload-php-files/splautoload.inc -2026-04-08T22:03:18.299004Z 01O Copying tests/ext/background-sender/agent_headers.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/background-sender/agent_headers.phpt -2026-04-08T22:03:18.299009Z 01O Copying tests/ext/background-sender/agent_headers_container_id.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/background-sender/agent_headers_container_id.phpt -2026-04-08T22:03:18.299019Z 01O Copying tests/ext/background-sender/agent_headers_container_id_empty.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/background-sender/agent_headers_container_id_empty.phpt -2026-04-08T22:03:18.299045Z 01O Copying tests/ext/background-sender/agent_headers_container_id_fargate.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/background-sender/agent_headers_container_id_fargate.phpt -2026-04-08T22:03:18.299057Z 01O Copying tests/ext/background-sender/agent_headers_ignore_userland.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/background-sender/agent_headers_ignore_userland.phpt -2026-04-08T22:03:18.799476Z 01O Copying tests/ext/background-sender/agent_headers_unix_domain_socket.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/background-sender/agent_headers_unix_domain_socket.phpt -2026-04-08T22:03:18.799498Z 01O Copying tests/ext/background-sender/agent_sampling-standalone-asm_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/background-sender/agent_sampling-standalone-asm_01.phpt -2026-04-08T22:03:18.799507Z 01O Copying tests/ext/background-sender/agent_sampling-standalone-asm_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/background-sender/agent_sampling-standalone-asm_02.phpt -2026-04-08T22:03:18.799519Z 01O Copying tests/ext/background-sender/agent_sampling-standalone-asm_03.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/background-sender/agent_sampling-standalone-asm_03.phpt -2026-04-08T22:03:18.799526Z 01O Copying tests/ext/background-sender/agent_sampling.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/background-sender/agent_sampling.phpt -2026-04-08T22:03:18.799533Z 01O Copying tests/ext/background-sender/agent_sampling_sidecar.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/background-sender/agent_sampling_sidecar.phpt -2026-04-08T22:03:18.799541Z 01O Copying tests/ext/background-sender/background_sender_ipv6_support.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/background-sender/background_sender_ipv6_support.phpt -2026-04-08T22:03:19.300220Z 01O Copying tests/ext/background-sender/background_sender_restores_capabilities.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/background-sender/background_sender_restores_capabilities.phpt -2026-04-08T22:03:19.300234Z 01O Copying tests/ext/background-sender/background_sender_survives_setuid.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/background-sender/background_sender_survives_setuid.phpt -2026-04-08T22:03:19.300245Z 01O Copying tests/ext/background-sender/default_unix_domain_socket_agent.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/background-sender/default_unix_domain_socket_agent.phpt -2026-04-08T22:03:19.300257Z 01O Copying tests/ext/background-sender/sidecar_fallback.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/background-sender/sidecar_fallback.phpt -2026-04-08T22:03:19.300273Z 01O Copying tests/ext/background-sender/sidecar_handles_invalid_agent_url.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/background-sender/sidecar_handles_invalid_agent_url.phpt -2026-04-08T22:03:19.300281Z 01O Copying tests/ext/background-sender/sidecar_thread_mode_permissions.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/background-sender/sidecar_thread_mode_permissions.phpt -2026-04-08T22:03:19.300292Z 01O Copying tests/ext/bailout_double_hook_clear.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/bailout_double_hook_clear.phpt -2026-04-08T22:03:19.300297Z 01O Copying tests/ext/base_service.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/base_service.phpt -2026-04-08T22:03:19.800452Z 01O Copying tests/ext/bridge/_files_tracer.php to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/bridge/_files_tracer.php -2026-04-08T22:03:19.800462Z 01O Copying tests/ext/call_user_func/namespaced-array.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/call_user_func/namespaced-array.phpt -2026-04-08T22:03:19.800469Z 01O Copying tests/ext/call_user_func/namespaced.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/call_user_func/namespaced.phpt -2026-04-08T22:03:19.800476Z 01O Copying tests/ext/call_user_func/not-namespaced-array.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/call_user_func/not-namespaced-array.phpt -2026-04-08T22:03:19.800481Z 01O Copying tests/ext/call_user_func/not-namespaced.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/call_user_func/not-namespaced.phpt -2026-04-08T22:03:19.800487Z 01O Copying tests/ext/check_memory_under_limit_default.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/check_memory_under_limit_default.phpt -2026-04-08T22:03:19.800495Z 01O Copying tests/ext/check_memory_under_limit_high_limit.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/check_memory_under_limit_high_limit.phpt -2026-04-08T22:03:19.800507Z 01O Copying tests/ext/check_memory_under_limit_high_user_limit.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/check_memory_under_limit_high_user_limit.phpt -2026-04-08T22:03:20.301191Z 01O Copying tests/ext/check_memory_under_limit_low_user_limit.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/check_memory_under_limit_low_user_limit.phpt -2026-04-08T22:03:20.301202Z 01O Copying tests/ext/close_spans_until.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/close_spans_until.phpt -2026-04-08T22:03:20.301248Z 01O Copying tests/ext/crashtracker_and_backtrace_are_mutually_exclusive.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/crashtracker_and_backtrace_are_mutually_exclusive.phpt -2026-04-08T22:03:20.301257Z 01O Copying tests/ext/crashtracker_jit_tags.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/crashtracker_jit_tags.phpt -2026-04-08T22:03:20.301275Z 01O Copying tests/ext/crashtracker_segfault.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/crashtracker_segfault.phpt -2026-04-08T22:03:20.301281Z 01O Copying tests/ext/crashtracker_segfault_disabled.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/crashtracker_segfault_disabled.phpt -2026-04-08T22:03:20.301289Z 01O Copying tests/ext/crashtracker_segfault_windows.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/crashtracker_segfault_windows.phpt -2026-04-08T22:03:20.801897Z 01O Copying tests/ext/dd_trace_coms_empty_stacks_correctly_recycled.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/dd_trace_coms_empty_stacks_correctly_recycled.phpt -2026-04-08T22:03:20.801918Z 01O Copying tests/ext/dd_trace_current_context.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/dd_trace_current_context.phpt -2026-04-08T22:03:20.801925Z 01O Copying tests/ext/dd_trace_current_context_noenv.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/dd_trace_current_context_noenv.phpt -2026-04-08T22:03:20.801954Z 01O Copying tests/ext/dd_trace_log_file.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/dd_trace_log_file.phpt -2026-04-08T22:03:20.801968Z 01O Copying tests/ext/dd_trace_multiple_write.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/dd_trace_multiple_write.phpt -2026-04-08T22:03:20.801977Z 01O Copying tests/ext/dd_trace_send_traces_via_thread_001.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/dd_trace_send_traces_via_thread_001.phpt -2026-04-08T22:03:20.801986Z 01O Copying tests/ext/dd_trace_send_traces_via_thread_002.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/dd_trace_send_traces_via_thread_002.phpt -2026-04-08T22:03:20.801991Z 01O Copying tests/ext/dd_trace_serialize_header_to_meta.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/dd_trace_serialize_header_to_meta.phpt -2026-04-08T22:03:21.302484Z 01O Copying tests/ext/dd_trace_serialize_msgpack.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/dd_trace_serialize_msgpack.phpt -2026-04-08T22:03:21.302496Z 01O Copying tests/ext/dd_trace_serialize_msgpack_error.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/dd_trace_serialize_msgpack_error.phpt -2026-04-08T22:03:21.302506Z 01O Copying tests/ext/dd_trace_serialize_msgpack_id_in_meta.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/dd_trace_serialize_msgpack_id_in_meta.phpt -2026-04-08T22:03:21.302517Z 01O Copying tests/ext/dd_trace_serialize_msgpack_reference.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/dd_trace_serialize_msgpack_reference.phpt -2026-04-08T22:03:21.302531Z 01O Copying tests/ext/dd_trace_span_data_get_link.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/dd_trace_span_data_get_link.phpt -2026-04-08T22:03:21.302543Z 01O Copying tests/ext/dd_trace_span_data_serialization_with_links.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/dd_trace_span_data_serialization_with_links.phpt -2026-04-08T22:03:21.302552Z 01O Copying tests/ext/dd_trace_tracer_is_limited_memory.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/dd_trace_tracer_is_limited_memory.phpt -2026-04-08T22:03:21.302619Z 01O Copying tests/ext/disabling_root_span_generation_at_runtime.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/disabling_root_span_generation_at_runtime.phpt -2026-04-08T22:03:21.803249Z 01O Copying tests/ext/distributed_tracestate_consumption.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracestate_consumption.phpt -2026-04-08T22:03:21.803272Z 01O Copying tests/ext/distributed_tracing/baggage/baggage_span_tags.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/baggage/baggage_span_tags.phpt -2026-04-08T22:03:21.803284Z 01O Copying tests/ext/distributed_tracing/baggage/baggage_span_tags_empty.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/baggage/baggage_span_tags_empty.phpt -2026-04-08T22:03:21.803297Z 01O Copying tests/ext/distributed_tracing/baggage/baggage_span_tags_keys.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/baggage/baggage_span_tags_keys.phpt -2026-04-08T22:03:21.803307Z 01O Copying tests/ext/distributed_tracing/baggage/baggage_span_tags_wildcard.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/baggage/baggage_span_tags_wildcard.phpt -2026-04-08T22:03:21.803318Z 01O Copying tests/ext/distributed_tracing/baggage/distributed_trace_baggage_alone.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/baggage/distributed_trace_baggage_alone.phpt -2026-04-08T22:03:21.803331Z 01O Copying tests/ext/distributed_tracing/baggage/distributed_trace_baggage_configured_bytes.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/baggage/distributed_trace_baggage_configured_bytes.phpt -2026-04-08T22:03:21.803347Z 01O Copying tests/ext/distributed_tracing/baggage/distributed_trace_baggage_configured_items.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/baggage/distributed_trace_baggage_configured_items.phpt -2026-04-08T22:03:22.303976Z 01O Copying tests/ext/distributed_tracing/baggage/distributed_trace_baggage_context_propagated.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/baggage/distributed_trace_baggage_context_propagated.phpt -2026-04-08T22:03:22.303995Z 01O Copying tests/ext/distributed_tracing/baggage/distributed_trace_baggage_decoding_encoding.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/baggage/distributed_trace_baggage_decoding_encoding.phpt -2026-04-08T22:03:22.304008Z 01O Copying tests/ext/distributed_tracing/baggage/distributed_trace_baggage_default.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/baggage/distributed_trace_baggage_default.phpt -2026-04-08T22:03:22.304030Z 01O Copying tests/ext/distributed_tracing/baggage/distributed_trace_baggage_first.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/baggage/distributed_trace_baggage_first.phpt -2026-04-08T22:03:22.304042Z 01O Copying tests/ext/distributed_tracing/distributed_trace_asm_standalone_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_asm_standalone_01.phpt -2026-04-08T22:03:22.304049Z 01O Copying tests/ext/distributed_tracing/distributed_trace_asm_standalone_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_asm_standalone_02.phpt -2026-04-08T22:03:22.304106Z 01O Copying tests/ext/distributed_tracing/distributed_trace_asm_standalone_03.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_asm_standalone_03.phpt -2026-04-08T22:03:22.804661Z 01O Copying tests/ext/distributed_tracing/distributed_trace_asm_standalone_04.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_asm_standalone_04.phpt -2026-04-08T22:03:22.804674Z 01O Copying tests/ext/distributed_tracing/distributed_trace_asm_standalone_05.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_asm_standalone_05.phpt -2026-04-08T22:03:22.804681Z 01O Copying tests/ext/distributed_tracing/distributed_trace_asm_standalone_06.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_asm_standalone_06.phpt -2026-04-08T22:03:22.804691Z 01O Copying tests/ext/distributed_tracing/distributed_trace_asm_standalone_07.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_asm_standalone_07.phpt -2026-04-08T22:03:22.804704Z 01O Copying tests/ext/distributed_tracing/distributed_trace_asm_standalone_08.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_asm_standalone_08.phpt -2026-04-08T22:03:22.804711Z 01O Copying tests/ext/distributed_tracing/distributed_trace_asm_standalone_09.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_asm_standalone_09.phpt -2026-04-08T22:03:22.804722Z 01O Copying tests/ext/distributed_tracing/distributed_trace_bogus_ids.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_bogus_ids.phpt -2026-04-08T22:03:22.804729Z 01O Copying tests/ext/distributed_tracing/distributed_trace_conflicting_span_ids_dd_tracecontext.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_conflicting_span_ids_dd_tracecontext.phpt -2026-04-08T22:03:23.305255Z 01O Copying tests/ext/distributed_tracing/distributed_trace_conflicting_span_ids_tracecontext.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_conflicting_span_ids_tracecontext.phpt -2026-04-08T22:03:23.305277Z 01O Copying tests/ext/distributed_tracing/distributed_trace_consume_array.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_consume_array.phpt -2026-04-08T22:03:23.305285Z 01O Copying tests/ext/distributed_tracing/distributed_trace_consume_func.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_consume_func.phpt -2026-04-08T22:03:23.305295Z 01O Copying tests/ext/distributed_tracing/distributed_trace_generate.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_generate.phpt -2026-04-08T22:03:23.305310Z 01O Copying tests/ext/distributed_tracing/distributed_trace_inherit.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_inherit.phpt -2026-04-08T22:03:23.305318Z 01O Copying tests/ext/distributed_tracing/distributed_trace_inherit_b3-single-span.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_inherit_b3-single-span.phpt -2026-04-08T22:03:23.305328Z 01O Copying tests/ext/distributed_tracing/distributed_trace_inherit_b3-single-span_no_sampling.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_inherit_b3-single-span_no_sampling.phpt -2026-04-08T22:03:23.305382Z 01O Copying tests/ext/distributed_tracing/distributed_trace_inherit_b3.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_inherit_b3.phpt -2026-04-08T22:03:23.305389Z 01O Copying tests/ext/distributed_tracing/distributed_trace_overwrite.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_overwrite.phpt -2026-04-08T22:03:23.805936Z 01O Copying tests/ext/distributed_tracing/distributed_trace_overwrite_active_span.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_overwrite_active_span.phpt -2026-04-08T22:03:23.805949Z 01O Copying tests/ext/distributed_tracing/distributed_trace_reset_context_on_init.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_reset_context_on_init.phpt -2026-04-08T22:03:23.805960Z 01O Copying tests/ext/distributed_tracing/distributed_trace_span_link_from_headers.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_span_link_from_headers.phpt -2026-04-08T22:03:23.805970Z 01O Copying tests/ext/distributed_tracing/distributed_trace_span_link_from_headers_invalid_tags.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_span_link_from_headers_invalid_tags.phpt -2026-04-08T22:03:23.805980Z 01O Copying tests/ext/do_not_check_if_class_or_function_exists_by_default.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/do_not_check_if_class_or_function_exists_by_default.phpt -2026-04-08T22:03:23.805988Z 01O Copying tests/ext/dogstatsd/disabled_if_agentless.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/dogstatsd/disabled_if_agentless.phpt -2026-04-08T22:03:23.805998Z 01O Copying tests/ext/dogstatsd/metrics_over_udp.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/dogstatsd/metrics_over_udp.phpt -2026-04-08T22:03:23.806003Z 01O Copying tests/ext/dogstatsd/metrics_over_udp_unreachable.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/dogstatsd/metrics_over_udp_unreachable.phpt -2026-04-08T22:03:24.306620Z 01O Copying tests/ext/dogstatsd/metrics_over_uds.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/dogstatsd/metrics_over_uds.phpt -2026-04-08T22:03:24.306655Z 01O Copying tests/ext/dogstatsd/metrics_over_uds_unreachable.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/dogstatsd/metrics_over_uds_unreachable.phpt -2026-04-08T22:03:24.306662Z 01O Copying tests/ext/dogstatsd/metrics_uds.inc to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/dogstatsd/metrics_uds.inc -2026-04-08T22:03:24.306673Z 01O Copying tests/ext/dropped_spans_have_negative_duration.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/dropped_spans_have_negative_duration.phpt -2026-04-08T22:03:24.306679Z 01O Copying tests/ext/error_status_configuration/http_error_status_client_configuration.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/error_status_configuration/http_error_status_client_configuration.phpt -2026-04-08T22:03:24.306687Z 01O Copying tests/ext/error_status_configuration/http_error_status_parsing.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/error_status_configuration/http_error_status_parsing.phpt -2026-04-08T22:03:24.306695Z 01O Copying tests/ext/extension_disabled.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/extension_disabled.phpt -2026-04-08T22:03:24.306754Z 01O Copying tests/ext/extension_no_static_tls.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/extension_no_static_tls.phpt -2026-04-08T22:03:24.807418Z 01O Copying tests/ext/extract_ip_addr.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/extract_ip_addr.phpt -2026-04-08T22:03:24.807430Z 01O Copying tests/ext/extract_ip_addr_header_env.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/extract_ip_addr_header_env.phpt -2026-04-08T22:03:24.807437Z 01O Copying tests/ext/extract_ip_addr_header_ini.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/extract_ip_addr_header_ini.phpt -2026-04-08T22:03:24.807445Z 01O Copying tests/ext/extract_ip_addr_precedence.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/extract_ip_addr_precedence.phpt -2026-04-08T22:03:24.807450Z 01O Copying tests/ext/extract_ip_private_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/extract_ip_private_01.phpt -2026-04-08T22:03:24.807455Z 01O Copying tests/ext/extract_server_values.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/extract_server_values.phpt -2026-04-08T22:03:24.807462Z 01O Copying tests/ext/fibers/enable_tracer_in_fiber.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/fibers/enable_tracer_in_fiber.phpt -2026-04-08T22:03:25.308096Z 01O Copying tests/ext/fibers/fiber_observer_bailout.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/fibers/fiber_observer_bailout.phpt -2026-04-08T22:03:25.308114Z 01O Copying tests/ext/fibers/fiber_stack_switch.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/fibers/fiber_stack_switch.phpt -2026-04-08T22:03:25.308121Z 01O Copying tests/ext/fibers/fiber_switch_tracer_disabled.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/fibers/fiber_switch_tracer_disabled.phpt -2026-04-08T22:03:25.308145Z 01O Copying tests/ext/flush-autofinish.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/flush-autofinish.phpt -2026-04-08T22:03:25.308160Z 01O Copying tests/ext/force_flush_traces.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/force_flush_traces.phpt -2026-04-08T22:03:25.308169Z 01O Copying tests/ext/from_php_7_3_bug61728.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/from_php_7_3_bug61728.phpt -2026-04-08T22:03:25.308193Z 01O Copying tests/ext/from_php_7_3_test_user_streams_consumed_bug.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/from_php_7_3_test_user_streams_consumed_bug.phpt -2026-04-08T22:03:25.308206Z 01O Copying tests/ext/generate_128_bit_trace_id.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/generate_128_bit_trace_id.phpt -2026-04-08T22:03:25.808676Z 01O Copying tests/ext/get_memory_limit_0_percent.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/get_memory_limit_0_percent.phpt -2026-04-08T22:03:25.808696Z 01O Copying tests/ext/get_memory_limit_default.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/get_memory_limit_default.phpt -2026-04-08T22:03:25.808717Z 01O Copying tests/ext/get_memory_limit_set_by_absolute.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/get_memory_limit_set_by_absolute.phpt -2026-04-08T22:03:25.808746Z 01O Copying tests/ext/get_memory_limit_set_by_percentage.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/get_memory_limit_set_by_percentage.phpt -2026-04-08T22:03:25.808811Z 01O Copying tests/ext/get_memory_limit_unlimited_default.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/get_memory_limit_unlimited_default.phpt -2026-04-08T22:03:25.808822Z 01O Copying tests/ext/get_memory_limit_unlimited_set_by_absolute.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/get_memory_limit_unlimited_set_by_absolute.phpt -2026-04-08T22:03:25.808848Z 01O Copying tests/ext/get_memory_limit_unlimited_set_by_percentage.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/get_memory_limit_unlimited_set_by_percentage.phpt -2026-04-08T22:03:25.808854Z 01O Copying tests/ext/http_endpoint_resource_renaming_always_simplified.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/http_endpoint_resource_renaming_always_simplified.phpt -2026-04-08T22:03:26.309386Z 01O Copying tests/ext/http_endpoint_resource_renaming_basic.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/http_endpoint_resource_renaming_basic.phpt -2026-04-08T22:03:26.309402Z 01O Copying tests/ext/includes/clear_skipif_telemetry.inc to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/includes/clear_skipif_telemetry.inc -2026-04-08T22:03:26.309412Z 01O Copying tests/ext/includes/dummy_filesystem_integration.inc to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/includes/dummy_filesystem_integration.inc -2026-04-08T22:03:26.309438Z 01O Copying tests/ext/includes/fake_global_tracer.inc to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/includes/fake_global_tracer.inc -2026-04-08T22:03:26.309453Z 01O Copying tests/ext/includes/fake_scope.inc to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/includes/fake_scope.inc -2026-04-08T22:03:26.309462Z 01O Copying tests/ext/includes/fake_span.inc to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/includes/fake_span.inc -2026-04-08T22:03:26.309483Z 01O Copying tests/ext/includes/fake_tracer.inc to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/includes/fake_tracer.inc -2026-04-08T22:03:26.309491Z 01O Copying tests/ext/includes/fake_tracer_exception.inc to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/includes/fake_tracer_exception.inc -2026-04-08T22:03:26.810117Z 01O Copying tests/ext/includes/git_functions.inc to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/includes/git_functions.inc -2026-04-08T22:03:26.810129Z 01O Copying tests/ext/includes/intermediary_call.inc to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/includes/intermediary_call.inc -2026-04-08T22:03:26.810136Z 01O Copying tests/ext/includes/request_init_hook.inc to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/includes/request_init_hook.inc -2026-04-08T22:03:26.810145Z 01O Copying tests/ext/includes/request_replayer.inc to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/includes/request_replayer.inc -2026-04-08T22:03:26.810150Z 01O Copying tests/ext/includes/sanity_check.php to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/includes/sanity_check.php -2026-04-08T22:03:26.810156Z 01O Copying tests/ext/includes/skipif_no_dev_env.inc to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/includes/skipif_no_dev_env.inc -2026-04-08T22:03:26.810174Z 01O Copying tests/ext/inferred_proxy/alter_service.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/inferred_proxy/alter_service.phpt -2026-04-08T22:03:26.810185Z 01O Copying tests/ext/inferred_proxy/basic_test.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/inferred_proxy/basic_test.phpt -2026-04-08T22:03:27.310616Z 01O Copying tests/ext/inferred_proxy/consume_distributed_tracing_headers.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/inferred_proxy/consume_distributed_tracing_headers.phpt -2026-04-08T22:03:27.310636Z 01O Copying tests/ext/inferred_proxy/distributed_tracing.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/inferred_proxy/distributed_tracing.phpt -2026-04-08T22:03:27.310643Z 01O Copying tests/ext/inferred_proxy/error_propagated.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/inferred_proxy/error_propagated.phpt -2026-04-08T22:03:27.310653Z 01O Copying tests/ext/inferred_proxy/fallback_service_name.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/inferred_proxy/fallback_service_name.phpt -2026-04-08T22:03:27.310658Z 01O Copying tests/ext/inferred_proxy/incomplete_headers.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/inferred_proxy/incomplete_headers.phpt -2026-04-08T22:03:27.310664Z 01O Copying tests/ext/inferred_proxy/multiple_traces.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/inferred_proxy/multiple_traces.phpt -2026-04-08T22:03:27.310673Z 01O Copying tests/ext/inferred_proxy/propagated_tags_after_span_start.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/inferred_proxy/propagated_tags_after_span_start.phpt -2026-04-08T22:03:27.310680Z 01O Copying tests/ext/inferred_proxy/propagated_tags_before_span_start.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/inferred_proxy/propagated_tags_before_span_start.phpt -2026-04-08T22:03:27.811281Z 01O Copying tests/ext/inferred_proxy/sampling_rules.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/inferred_proxy/sampling_rules.phpt -2026-04-08T22:03:27.811294Z 01O Copying tests/ext/inherit_meta_from_parent.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/inherit_meta_from_parent.phpt -2026-04-08T22:03:27.811300Z 01O Copying tests/ext/integrations/curl/curl_helper.inc to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/curl/curl_helper.inc -2026-04-08T22:03:27.811310Z 01O Copying tests/ext/integrations/curl/curl_release_on_shutdown.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/curl/curl_release_on_shutdown.phpt -2026-04-08T22:03:27.811319Z 01O Copying tests/ext/integrations/curl/distributed_tracing.inc to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/curl/distributed_tracing.inc -2026-04-08T22:03:27.811328Z 01O Copying tests/ext/integrations/curl/distributed_tracing_curl.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl.phpt -2026-04-08T22:03:27.811338Z 01O Copying tests/ext/integrations/curl/distributed_tracing_curl_copy_handle.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_copy_handle.phpt -2026-04-08T22:03:27.811347Z 01O Copying tests/ext/integrations/curl/distributed_tracing_curl_disabled_baggage.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_disabled_baggage.phpt -2026-04-08T22:03:28.312046Z 01O Copying tests/ext/integrations/curl/distributed_tracing_curl_drop_dm.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_drop_dm.phpt -2026-04-08T22:03:28.312059Z 01O Copying tests/ext/integrations/curl/distributed_tracing_curl_existing_headers_001.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_existing_headers_001.phpt -2026-04-08T22:03:28.312109Z 01O Copying tests/ext/integrations/curl/distributed_tracing_curl_existing_headers_002.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_existing_headers_002.phpt -2026-04-08T22:03:28.312119Z 01O Copying tests/ext/integrations/curl/distributed_tracing_curl_existing_headers_003.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_existing_headers_003.phpt -2026-04-08T22:03:28.312129Z 01O Copying tests/ext/integrations/curl/distributed_tracing_curl_existing_headers_004.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_existing_headers_004.phpt -2026-04-08T22:03:28.312135Z 01O Copying tests/ext/integrations/curl/distributed_tracing_curl_existing_headers_005.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_existing_headers_005.phpt -2026-04-08T22:03:28.312142Z 01O Copying tests/ext/integrations/curl/distributed_tracing_curl_existing_headers_006.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_existing_headers_006.phpt -2026-04-08T22:03:28.312151Z 01O Copying tests/ext/integrations/curl/distributed_tracing_curl_existing_headers_007.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_existing_headers_007.phpt -2026-04-08T22:03:28.812608Z 01O Copying tests/ext/integrations/curl/distributed_tracing_curl_invalid_tags.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_invalid_tags.phpt -2026-04-08T22:03:28.812620Z 01O Copying tests/ext/integrations/curl/distributed_tracing_curl_multi_exec_001.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_multi_exec_001.phpt -2026-04-08T22:03:28.812630Z 01O Copying tests/ext/integrations/curl/distributed_tracing_curl_multi_exec_002.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_multi_exec_002.phpt -2026-04-08T22:03:28.812640Z 01O Copying tests/ext/integrations/curl/distributed_tracing_curl_multi_exec_003.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_multi_exec_003.phpt -2026-04-08T22:03:28.812648Z 01O Copying tests/ext/integrations/curl/distributed_tracing_curl_multi_exec_copy_handle.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_multi_exec_copy_handle.phpt -2026-04-08T22:03:28.812655Z 01O Copying tests/ext/integrations/curl/distributed_tracing_curl_multi_exec_disable.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_multi_exec_disable.phpt -2026-04-08T22:03:28.812665Z 01O Copying tests/ext/integrations/curl/distributed_tracing_curl_multi_exec_existing_headers_001.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_multi_exec_existing_headers_001.phpt -2026-04-08T22:03:28.812672Z 01O Copying tests/ext/integrations/curl/distributed_tracing_curl_multi_exec_existing_headers_002.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_multi_exec_existing_headers_002.phpt -2026-04-08T22:03:29.313458Z 01O Copying tests/ext/integrations/curl/distributed_tracing_curl_propagate_asm_event.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_propagate_asm_event.phpt -2026-04-08T22:03:29.313473Z 01O Copying tests/ext/integrations/curl/distributed_tracing_curl_propagate_custom_tags.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_propagate_custom_tags.phpt -2026-04-08T22:03:29.313482Z 01O Copying tests/ext/integrations/curl/distributed_tracing_curl_propagate_tags.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_propagate_tags.phpt -2026-04-08T22:03:29.313493Z 01O Copying tests/ext/integrations/curl/distributed_tracing_curl_sampling_priority.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_sampling_priority.phpt -2026-04-08T22:03:29.313499Z 01O Copying tests/ext/integrations/curl/distributed_tracing_curl_tracestate.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_tracestate.phpt -2026-04-08T22:03:29.313507Z 01O Copying tests/ext/integrations/http_streams/distributed_tracing.inc to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/http_streams/distributed_tracing.inc -2026-04-08T22:03:29.313516Z 01O Copying tests/ext/integrations/http_streams/distributed_tracing_http_streams.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/http_streams/distributed_tracing_http_streams.phpt -2026-04-08T22:03:29.313523Z 01O Copying tests/ext/integrations/http_streams/distributed_tracing_http_streams_disabled.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/http_streams/distributed_tracing_http_streams_disabled.phpt -2026-04-08T22:03:29.814028Z 01O Copying tests/ext/integrations/http_streams/distributed_tracing_http_streams_with_headers_array.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/http_streams/distributed_tracing_http_streams_with_headers_array.phpt -2026-04-08T22:03:29.814043Z 01O Copying tests/ext/integrations/http_streams/distributed_tracing_http_streams_with_headers_string.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/http_streams/distributed_tracing_http_streams_with_headers_string.phpt -2026-04-08T22:03:29.814051Z 01O Copying tests/ext/integrations/source_code/001/git_metadata_injection_from_valid_files.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/source_code/001/git_metadata_injection_from_valid_files.phpt -2026-04-08T22:03:29.814072Z 01O Copying tests/ext/integrations/source_code/002/git_metadata_injection_from_invalid_files.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/source_code/002/git_metadata_injection_from_invalid_files.phpt -2026-04-08T22:03:29.814086Z 01O Copying tests/ext/integrations/source_code/commit_sha_env_var.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/source_code/commit_sha_env_var.phpt -2026-04-08T22:03:29.814094Z 01O Copying tests/ext/integrations/source_code/git_metadata_injection_from_env.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/source_code/git_metadata_injection_from_env.phpt -2026-04-08T22:03:29.814104Z 01O Copying tests/ext/integrations/source_code/git_metadata_injection_from_global_tags.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/source_code/git_metadata_injection_from_global_tags.phpt -2026-04-08T22:03:30.314623Z 01O Copying tests/ext/integrations/source_code/git_metadata_injection_remove_credentials_from_env.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/source_code/git_metadata_injection_remove_credentials_from_env.phpt -2026-04-08T22:03:30.314635Z 01O Copying tests/ext/integrations/source_code/repository_url_env_var.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/integrations/source_code/repository_url_env_var.phpt -2026-04-08T22:03:30.314642Z 01O Copying tests/ext/ip_collection_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/ip_collection_01.phpt -2026-04-08T22:03:30.314649Z 01O Copying tests/ext/ip_collection_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/ip_collection_02.phpt -2026-04-08T22:03:30.314654Z 01O Copying tests/ext/ip_collection_03.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/ip_collection_03.phpt -2026-04-08T22:03:30.314659Z 01O Copying tests/ext/ip_collection_04.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/ip_collection_04.phpt -2026-04-08T22:03:30.314667Z 01O Copying tests/ext/ip_collection_05.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/ip_collection_05.phpt -2026-04-08T22:03:30.314674Z 01O Copying tests/ext/library_config/CONFLICTS to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/library_config/CONFLICTS -2026-04-08T22:03:30.815400Z 01O Copying tests/ext/library_config/fleet_config.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/library_config/fleet_config.phpt -2026-04-08T22:03:30.815417Z 01O Copying tests/ext/library_config/fleet_config.yaml to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/library_config/fleet_config.yaml -2026-04-08T22:03:30.815427Z 01O Copying tests/ext/library_config/fleet_config_overloads_env.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/library_config/fleet_config_overloads_env.phpt -2026-04-08T22:03:30.815437Z 01O Copying tests/ext/library_config/fleet_config_overloads_ini.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/library_config/fleet_config_overloads_ini.phpt -2026-04-08T22:03:30.815450Z 01O Copying tests/ext/library_config/local_config.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/library_config/local_config.phpt -2026-04-08T22:03:30.815459Z 01O Copying tests/ext/library_config/local_config.yaml to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/library_config/local_config.yaml -2026-04-08T22:03:30.815468Z 01O Copying tests/ext/library_config/local_config_does_not_overload_env.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/library_config/local_config_does_not_overload_env.phpt -2026-04-08T22:03:31.316091Z 01O Copying tests/ext/library_config/local_config_overloads_ini.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/library_config/local_config_overloads_ini.phpt -2026-04-08T22:03:31.316104Z 01O Copying tests/ext/limiter/001-limiter-disabled.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/limiter/001-limiter-disabled.phpt -2026-04-08T22:03:31.316111Z 01O Copying tests/ext/limiter/002-limiter-reached.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/limiter/002-limiter-reached.phpt -2026-04-08T22:03:31.316119Z 01O Copying tests/ext/limiter/003-limiter-with-asm-standalone.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/limiter/003-limiter-with-asm-standalone.phpt -2026-04-08T22:03:31.316178Z 01O Copying tests/ext/live-debugger/debugger_enable_dynamic_config.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/live-debugger/debugger_enable_dynamic_config.phpt -2026-04-08T22:03:31.316190Z 01O Copying tests/ext/live-debugger/debugger_log_probe.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/live-debugger/debugger_log_probe.phpt -2026-04-08T22:03:31.316204Z 01O Copying tests/ext/live-debugger/debugger_log_probe_process_tags.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/live-debugger/debugger_log_probe_process_tags.phpt -2026-04-08T22:03:31.316211Z 01O Copying tests/ext/live-debugger/debugger_metric_probe.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/live-debugger/debugger_metric_probe.phpt -2026-04-08T22:03:31.816696Z 01O Copying tests/ext/live-debugger/debugger_span_decoration_probe.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/live-debugger/debugger_span_decoration_probe.phpt -2026-04-08T22:03:31.816710Z 01O Copying tests/ext/live-debugger/debugger_span_probe.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/live-debugger/debugger_span_probe.phpt -2026-04-08T22:03:31.816719Z 01O Copying tests/ext/live-debugger/debugger_span_probe_class.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/live-debugger/debugger_span_probe_class.phpt -2026-04-08T22:03:31.816729Z 01O Copying tests/ext/live-debugger/exception-replay_001.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/live-debugger/exception-replay_001.phpt -2026-04-08T22:03:31.816739Z 01O Copying tests/ext/live-debugger/exception-replay_002.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/live-debugger/exception-replay_002.phpt -2026-04-08T22:03:31.816747Z 01O Copying tests/ext/live-debugger/exception-replay_non_regression_2989_mysqli.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/live-debugger/exception-replay_non_regression_2989_mysqli.phpt -2026-04-08T22:03:31.816758Z 01O Copying tests/ext/live-debugger/live_debugger.inc to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/live-debugger/live_debugger.inc -2026-04-08T22:03:31.816767Z 01O Copying tests/ext/logging_default_value.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/logging_default_value.phpt -2026-04-08T22:03:32.317562Z 01O Copying tests/ext/meta_struct.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/meta_struct.phpt -2026-04-08T22:03:32.317573Z 01O Copying tests/ext/nested_exceptions.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/nested_exceptions.phpt -2026-04-08T22:03:32.317581Z 01O Copying tests/ext/otel_config_remapping.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/otel_config_remapping.phpt -2026-04-08T22:03:32.317590Z 01O Copying tests/ext/otel_http_response_status_code_remapping.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/otel_http_response_status_code_remapping.phpt -2026-04-08T22:03:32.317597Z 01O Copying tests/ext/otel_http_response_status_code_remapping_precedence.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/otel_http_response_status_code_remapping_precedence.phpt -2026-04-08T22:03:32.317604Z 01O Copying tests/ext/otel_http_status_code_remapping.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/otel_http_status_code_remapping.phpt -2026-04-08T22:03:32.317640Z 01O Copying tests/ext/otel_propagators_empty_dd_propagation_style.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/otel_propagators_empty_dd_propagation_style.phpt -2026-04-08T22:03:32.317698Z 01O Copying tests/ext/pcntl/functions.inc to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/pcntl/functions.inc -2026-04-08T22:03:32.818257Z 01O Copying tests/ext/pcntl/pcntl_fork_long_running_autoflush.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/pcntl/pcntl_fork_long_running_autoflush.phpt -2026-04-08T22:03:32.818271Z 01O Copying tests/ext/pcntl/pcntl_fork_long_running_manual.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/pcntl/pcntl_fork_long_running_manual.phpt -2026-04-08T22:03:32.818278Z 01O Copying tests/ext/pcntl/pcntl_fork_reseed_span_id.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/pcntl/pcntl_fork_reseed_span_id.phpt -2026-04-08T22:03:32.818287Z 01O Copying tests/ext/pcntl/pcntl_fork_short_running_multiple.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/pcntl/pcntl_fork_short_running_multiple.phpt -2026-04-08T22:03:32.818292Z 01O Copying tests/ext/pcntl/pcntl_fork_short_running_nested.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/pcntl/pcntl_fork_short_running_nested.phpt -2026-04-08T22:03:32.818299Z 01O Copying tests/ext/pcntl/pcntl_fork_short_running_single.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/pcntl/pcntl_fork_short_running_single.phpt -2026-04-08T22:03:32.818307Z 01O Copying tests/ext/pcntl/pcntl_fork_thread_mode_orphan.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/pcntl/pcntl_fork_thread_mode_orphan.phpt -2026-04-08T22:03:32.818313Z 01O Copying tests/ext/peer_service_disabled_default.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/peer_service_disabled_default.phpt -2026-04-08T22:03:33.318941Z 01O Copying tests/ext/peer_service_honor_user_value.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/peer_service_honor_user_value.phpt -2026-04-08T22:03:33.318968Z 01O Copying tests/ext/peer_service_remapping.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/peer_service_remapping.phpt -2026-04-08T22:03:33.318988Z 01O Copying tests/ext/peer_service_sources_not_serialized_when_set.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/peer_service_sources_not_serialized_when_set.phpt -2026-04-08T22:03:33.319000Z 01O Copying tests/ext/peer_service_sources_not_serialized_when_unset.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/peer_service_sources_not_serialized_when_unset.phpt -2026-04-08T22:03:33.319006Z 01O Copying tests/ext/peer_service_use_first_available_tag.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/peer_service_use_first_available_tag.phpt -2026-04-08T22:03:33.319012Z 01O Copying tests/ext/peer_service_wrong_values.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/peer_service_wrong_values.phpt -2026-04-08T22:03:33.319021Z 01O Copying tests/ext/priority_sampling/001-default-sampling.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/001-default-sampling.phpt -2026-04-08T22:03:33.819453Z 01O Copying tests/ext/priority_sampling/002-user-reject.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/002-user-reject.phpt -2026-04-08T22:03:33.819465Z 01O Copying tests/ext/priority_sampling/003-user-keep.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/003-user-keep.phpt -2026-04-08T22:03:33.819471Z 01O Copying tests/ext/priority_sampling/004-rule-basic.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/004-rule-basic.phpt -2026-04-08T22:03:33.819524Z 01O Copying tests/ext/priority_sampling/005-rule-name.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/005-rule-name.phpt -2026-04-08T22:03:33.819532Z 01O Copying tests/ext/priority_sampling/006-rule-name-reject.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/006-rule-name-reject.phpt -2026-04-08T22:03:33.819541Z 01O Copying tests/ext/priority_sampling/007-rule-service.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/007-rule-service.phpt -2026-04-08T22:03:33.819546Z 01O Copying tests/ext/priority_sampling/008-rule-service-reject.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/008-rule-service-reject.phpt -2026-04-08T22:03:33.819552Z 01O Copying tests/ext/priority_sampling/009-rule-name-service.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/009-rule-name-service.phpt -2026-04-08T22:03:34.320106Z 01O Copying tests/ext/priority_sampling/010-rule-name-service-reject.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/010-rule-name-service-reject.phpt -2026-04-08T22:03:34.320127Z 01O Copying tests/ext/priority_sampling/011-preset.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/011-preset.phpt -2026-04-08T22:03:34.320134Z 01O Copying tests/ext/priority_sampling/012-default.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/012-default.phpt -2026-04-08T22:03:34.320143Z 01O Copying tests/ext/priority_sampling/013-rule-service-mapped.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/013-rule-service-mapped.phpt -2026-04-08T22:03:34.320148Z 01O Copying tests/ext/priority_sampling/014-rule-resource.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/014-rule-resource.phpt -2026-04-08T22:03:34.320154Z 01O Copying tests/ext/priority_sampling/015-rule-resource-reject.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/015-rule-resource-reject.phpt -2026-04-08T22:03:34.320163Z 01O Copying tests/ext/priority_sampling/016-rule-tag.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/016-rule-tag.phpt -2026-04-08T22:03:34.320169Z 01O Copying tests/ext/priority_sampling/017-rule-tag-reject.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/017-rule-tag-reject.phpt -2026-04-08T22:03:34.820544Z 01O Copying tests/ext/priority_sampling/018-manual.drop.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/018-manual.drop.phpt -2026-04-08T22:03:34.820565Z 01O Copying tests/ext/priority_sampling/019-manual.keep.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/019-manual.keep.phpt -2026-04-08T22:03:34.820572Z 01O Copying tests/ext/priority_sampling/020-rule-nonroot.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/020-rule-nonroot.phpt -2026-04-08T22:03:34.820602Z 01O Copying tests/ext/priority_sampling/021-rule-name-as-glob-with-question-mark.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/021-rule-name-as-glob-with-question-mark.phpt -2026-04-08T22:03:34.820622Z 01O Copying tests/ext/priority_sampling/022-rule-name-as-glob-with-multiple-criterias.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/022-rule-name-as-glob-with-multiple-criterias.phpt -2026-04-08T22:03:34.820678Z 01O Copying tests/ext/priority_sampling/023-manual.keep-distributed_overwrite.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/023-manual.keep-distributed_overwrite.phpt -2026-04-08T22:03:34.820688Z 01O Copying tests/ext/priority_sampling/024-deterministic-sampling.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/024-deterministic-sampling.phpt -2026-04-08T22:03:34.820699Z 01O Copying tests/ext/priority_sampling/025-ksr-tag-rule-sampling.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/025-ksr-tag-rule-sampling.phpt -2026-04-08T22:03:35.321096Z 01O Copying tests/ext/priority_sampling/026-ksr-tag-default-sampling.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/026-ksr-tag-default-sampling.phpt -2026-04-08T22:03:35.321118Z 01O Copying tests/ext/priority_sampling/027-ksr-tag-not-set-manual.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/027-ksr-tag-not-set-manual.phpt -2026-04-08T22:03:35.321127Z 01O Copying tests/ext/priority_sampling/028-ksr-tag-formatting.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/028-ksr-tag-formatting.phpt -2026-04-08T22:03:35.321137Z 01O Copying tests/ext/priority_sampling/029-ksr-tag-small-rate-formatting.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/029-ksr-tag-small-rate-formatting.phpt -2026-04-08T22:03:35.321144Z 01O Copying tests/ext/priority_sampling/030-ksr-tag-rounding-boundary.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/030-ksr-tag-rounding-boundary.phpt -2026-04-08T22:03:35.321150Z 01O Copying tests/ext/priority_sampling/031-ksr-tag-exact-sixth-decimal.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/031-ksr-tag-exact-sixth-decimal.phpt -2026-04-08T22:03:35.321160Z 01O Copying tests/ext/priority_sampling/032-ksr-tag-below-precision-rounds-to-zero.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/032-ksr-tag-below-precision-rounds-to-zero.phpt -2026-04-08T22:03:35.321165Z 01O Copying tests/ext/priority_sampling/asm-standalone.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/asm-standalone.phpt -2026-04-08T22:03:35.821582Z 01O Copying tests/ext/priority_sampling/gh-1828.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/gh-1828.phpt -2026-04-08T22:03:35.821605Z 01O Copying tests/ext/priority_sampling/invalid-json-rule.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/invalid-json-rule.phpt -2026-04-08T22:03:35.821616Z 01O Copying tests/ext/priority_sampling/invalid-regex-rule.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/invalid-regex-rule.phpt -2026-04-08T22:03:35.821630Z 01O Copying tests/ext/priority_sampling/manual_global_override.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/priority_sampling/manual_global_override.phpt -2026-04-08T22:03:35.821636Z 01O Copying tests/ext/process_tag_value_normalization.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/process_tag_value_normalization.phpt -2026-04-08T22:03:35.821657Z 01O Copying tests/ext/process_tags.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/process_tags.phpt -2026-04-08T22:03:35.821705Z 01O Copying tests/ext/profiling/runtime_id_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/profiling/runtime_id_01.phpt -2026-04-08T22:03:35.821714Z 01O Copying tests/ext/profiling/runtime_id_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/profiling/runtime_id_02.phpt -2026-04-08T22:03:36.322114Z 01O Copying tests/ext/read_c_configuration.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/read_c_configuration.phpt -2026-04-08T22:03:36.322132Z 01O Copying tests/ext/referrer_extraction_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/referrer_extraction_01.phpt -2026-04-08T22:03:36.322139Z 01O Copying tests/ext/referrer_extraction_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/referrer_extraction_02.phpt -2026-04-08T22:03:36.322172Z 01O Copying tests/ext/referrer_extraction_03.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/referrer_extraction_03.phpt -2026-04-08T22:03:36.322188Z 01O Copying tests/ext/referrer_extraction_04.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/referrer_extraction_04.phpt -2026-04-08T22:03:36.322197Z 01O Copying tests/ext/referrer_extraction_05.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/referrer_extraction_05.phpt -2026-04-08T22:03:36.322207Z 01O Copying tests/ext/remote_config/dynamic_config_auto_update.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/remote_config/dynamic_config_auto_update.phpt -2026-04-08T22:03:36.322218Z 01O Copying tests/ext/remote_config/dynamic_config_update.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/remote_config/dynamic_config_update.phpt -2026-04-08T22:03:36.822567Z 01O Copying tests/ext/remote_config/rc_process_tags.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/remote_config/rc_process_tags.phpt -2026-04-08T22:03:36.822604Z 01O Copying tests/ext/remote_config/remote_config.inc to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/remote_config/remote_config.inc -2026-04-08T22:03:36.822615Z 01O Copying tests/ext/request-replayer/dd_trace_agent_env.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/request-replayer/dd_trace_agent_env.phpt -2026-04-08T22:03:36.822628Z 01O Copying tests/ext/request-replayer/dd_trace_exception_span_event.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/request-replayer/dd_trace_exception_span_event.phpt -2026-04-08T22:03:36.822633Z 01O Copying tests/ext/request-replayer/dd_trace_span_event.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/request-replayer/dd_trace_span_event.phpt -2026-04-08T22:03:36.822639Z 01O Copying tests/ext/request-replayer/dd_trace_span_link_with_exception.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/request-replayer/dd_trace_span_link_with_exception.phpt -2026-04-08T22:03:36.822647Z 01O Copying tests/ext/request_timeout_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/request_timeout_01.phpt -2026-04-08T22:03:37.323316Z 01O Copying tests/ext/retrieve_128_bit_trace_id.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/retrieve_128_bit_trace_id.phpt -2026-04-08T22:03:37.323328Z 01O Copying tests/ext/root_span_http_client_ip.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/root_span_http_client_ip.phpt -2026-04-08T22:03:37.323334Z 01O Copying tests/ext/root_span_http_client_ip_custom_header.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/root_span_http_client_ip_custom_header.phpt -2026-04-08T22:03:37.323390Z 01O Copying tests/ext/root_span_http_client_ip_duplicate_ip_headers.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/root_span_http_client_ip_duplicate_ip_headers.phpt -2026-04-08T22:03:37.323399Z 01O Copying tests/ext/root_span_http_client_ip_x_forwarded_for.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/root_span_http_client_ip_x_forwarded_for.phpt -2026-04-08T22:03:37.323409Z 01O Copying tests/ext/root_span_http_useragent.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/root_span_http_useragent.phpt -2026-04-08T22:03:37.323413Z 01O Copying tests/ext/root_span_url_as_resource_names.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/root_span_url_as_resource_names.phpt -2026-04-08T22:03:37.323419Z 01O Copying tests/ext/root_span_url_as_resource_names_no_host.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/root_span_url_as_resource_names_no_host.phpt -2026-04-08T22:03:37.823985Z 01O Copying tests/ext/root_span_url_with_post_array.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/root_span_url_with_post_array.phpt -2026-04-08T22:03:37.824006Z 01O Copying tests/ext/root_span_url_with_post_array_allowed.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/root_span_url_with_post_array_allowed.phpt -2026-04-08T22:03:37.824013Z 01O Copying tests/ext/root_span_url_with_post_fields.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/root_span_url_with_post_fields.phpt -2026-04-08T22:03:37.824037Z 01O Copying tests/ext/root_span_url_with_post_implicit_array_key.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/root_span_url_with_post_implicit_array_key.phpt -2026-04-08T22:03:37.824048Z 01O Copying tests/ext/root_span_url_with_post_no_param.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/root_span_url_with_post_no_param.phpt -2026-04-08T22:03:37.824055Z 01O Copying tests/ext/root_span_url_with_post_no_param_set.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/root_span_url_with_post_no_param_set.phpt -2026-04-08T22:03:37.824063Z 01O Copying tests/ext/root_span_url_with_post_only_allowed_params.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/root_span_url_with_post_only_allowed_params.phpt -2026-04-08T22:03:37.824068Z 01O Copying tests/ext/root_span_url_with_post_simple_whitelist.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/root_span_url_with_post_simple_whitelist.phpt -2026-04-08T22:03:38.324429Z 01O Copying tests/ext/root_span_url_with_query_params.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/root_span_url_with_query_params.phpt -2026-04-08T22:03:38.324440Z 01O Copying tests/ext/root_span_url_with_query_params_obfuscation.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/root_span_url_with_query_params_obfuscation.phpt -2026-04-08T22:03:38.324447Z 01O Copying tests/ext/root_span_url_with_query_params_obfuscation_empty.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/root_span_url_with_query_params_obfuscation_empty.phpt -2026-04-08T22:03:38.324455Z 01O Copying tests/ext/root_span_url_with_query_params_whitelist.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/root_span_url_with_query_params_whitelist.phpt -2026-04-08T22:03:38.324460Z 01O Copying tests/ext/root_span_url_without_query_params.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/root_span_url_without_query_params.phpt -2026-04-08T22:03:38.324521Z 01O Copying tests/ext/runtime_ini_env_version_change.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/runtime_ini_env_version_change.phpt -2026-04-08T22:03:38.324530Z 01O Copying tests/ext/sandbox-prehook/access_modifier_method_access_hook.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-prehook/access_modifier_method_access_hook.phpt -2026-04-08T22:03:38.324538Z 01O Copying tests/ext/sandbox-prehook/access_modifier_property_access_hook.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-prehook/access_modifier_property_access_hook.phpt -2026-04-08T22:03:38.825150Z 01O Copying tests/ext/sandbox-prehook/args_copy_before_mutation.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-prehook/args_copy_before_mutation.phpt -2026-04-08T22:03:38.825164Z 01O Copying tests/ext/sandbox-prehook/close_on_exit.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-prehook/close_on_exit.phpt -2026-04-08T22:03:38.825173Z 01O Copying tests/ext/sandbox-prehook/closure_arg_exception.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-prehook/closure_arg_exception.phpt -2026-04-08T22:03:38.825184Z 01O Copying tests/ext/sandbox-prehook/closure_arg_retval.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-prehook/closure_arg_retval.phpt -2026-04-08T22:03:38.825189Z 01O Copying tests/ext/sandbox-prehook/dd_trace_function_internal.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-prehook/dd_trace_function_internal.phpt -2026-04-08T22:03:38.825195Z 01O Copying tests/ext/sandbox-prehook/dd_trace_function_userland.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-prehook/dd_trace_function_userland.phpt -2026-04-08T22:03:38.825203Z 01O Copying tests/ext/sandbox-prehook/dd_trace_method.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-prehook/dd_trace_method.phpt -2026-04-08T22:03:38.825208Z 01O Copying tests/ext/sandbox-prehook/dd_trace_method_binds_called_object.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-prehook/dd_trace_method_binds_called_object.phpt -2026-04-08T22:03:39.325793Z 01O Copying tests/ext/sandbox-prehook/drop_spans.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-prehook/drop_spans.phpt -2026-04-08T22:03:39.325812Z 01O Copying tests/ext/sandbox-prehook/exception_error_log.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-prehook/exception_error_log.phpt -2026-04-08T22:03:39.325820Z 01O Copying tests/ext/sandbox-prehook/exception_handling.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-prehook/exception_handling.phpt -2026-04-08T22:03:39.325851Z 01O Copying tests/ext/sandbox-prehook/exceptions_and_errors_are_ignored_in_tracing_closure.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-prehook/exceptions_and_errors_are_ignored_in_tracing_closure.phpt -2026-04-08T22:03:39.325876Z 01O Copying tests/ext/sandbox-prehook/exit_and_drop_span.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-prehook/exit_and_drop_span.phpt -2026-04-08T22:03:39.325884Z 01O Copying tests/ext/sandbox-prehook/keep_spans_in_limited_tracing_userland_functions.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-prehook/keep_spans_in_limited_tracing_userland_functions.phpt -2026-04-08T22:03:39.325893Z 01O Copying tests/ext/sandbox-prehook/new_static.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-prehook/new_static.phpt -2026-04-08T22:03:39.325944Z 01O Copying tests/ext/sandbox-prehook/trace_static_method.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-prehook/trace_static_method.phpt -2026-04-08T22:03:39.826664Z 01O Copying tests/ext/sandbox-prehook/variable_length_parameter_list.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-prehook/variable_length_parameter_list.phpt -2026-04-08T22:03:39.826679Z 01O Copying tests/ext/sandbox-prehook/variadic_args_internal.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-prehook/variadic_args_internal.phpt -2026-04-08T22:03:39.826689Z 01O Copying tests/ext/sandbox-regression/abstract_method_hook.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/abstract_method_hook.phpt -2026-04-08T22:03:39.826700Z 01O Copying tests/ext/sandbox-regression/access_modifier_method_access_hook.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/access_modifier_method_access_hook.phpt -2026-04-08T22:03:39.826705Z 01O Copying tests/ext/sandbox-regression/access_modifier_property_access_hook.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/access_modifier_property_access_hook.phpt -2026-04-08T22:03:39.826714Z 01O Copying tests/ext/sandbox-regression/allow_overriding_before_overrided_methods_functions_are_defined.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/allow_overriding_before_overrided_methods_functions_are_defined.phpt -2026-04-08T22:03:39.826732Z 01O Copying tests/ext/sandbox-regression/case_insensitive_method_hook.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/case_insensitive_method_hook.phpt -2026-04-08T22:03:39.826742Z 01O Copying tests/ext/sandbox-regression/class_resolver_bailout_hook.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/class_resolver_bailout_hook.phpt -2026-04-08T22:03:40.327232Z 01O Copying tests/ext/sandbox-regression/closure_accessing_outside_variables.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/closure_accessing_outside_variables.phpt -2026-04-08T22:03:40.327244Z 01O Copying tests/ext/sandbox-regression/closure_set_inside_object_methods.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/closure_set_inside_object_methods.phpt -2026-04-08T22:03:40.327255Z 01O Copying tests/ext/sandbox-regression/dd_trace_tracer_is_limited_hard.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/dd_trace_tracer_is_limited_hard.phpt -2026-04-08T22:03:40.327264Z 01O Copying tests/ext/sandbox-regression/dd_trace_tracer_limiter_reset_flush.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/dd_trace_tracer_limiter_reset_flush.phpt -2026-04-08T22:03:40.327270Z 01O Copying tests/ext/sandbox-regression/destructor_called_when_this_gets_out_of_scope.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/destructor_called_when_this_gets_out_of_scope.phpt -2026-04-08T22:03:40.327278Z 01O Copying tests/ext/sandbox-regression/disable_tracing_disables_tracing.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/disable_tracing_disables_tracing.phpt -2026-04-08T22:03:40.327302Z 01O Copying tests/ext/sandbox-regression/do_not_check_if_class_or_function_exists_by_default.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/do_not_check_if_class_or_function_exists_by_default.phpt -2026-04-08T22:03:40.327367Z 01O Copying tests/ext/sandbox-regression/extension_disabled.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/extension_disabled.phpt -2026-04-08T22:03:40.327375Z 01O Copying tests/ext/sandbox-regression/handle_many_hooks.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/handle_many_hooks.phpt -2026-04-08T22:03:40.827427Z 01O Copying tests/ext/sandbox-regression/limiter_reset_flush_with_open_spans.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/limiter_reset_flush_with_open_spans.phpt -2026-04-08T22:03:40.827446Z 01O Copying tests/ext/sandbox-regression/method_invoked_via_reflection.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/method_invoked_via_reflection.phpt -2026-04-08T22:03:40.827454Z 01O Copying tests/ext/sandbox-regression/method_returning_array.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/method_returning_array.phpt -2026-04-08T22:03:40.827463Z 01O Copying tests/ext/sandbox-regression/multiple_instrumentations.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/multiple_instrumentations.phpt -2026-04-08T22:03:40.827468Z 01O Copying tests/ext/sandbox-regression/namespaces.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/namespaces.phpt -2026-04-08T22:03:40.827475Z 01O Copying tests/ext/sandbox-regression/nested_dropped_spans.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/nested_dropped_spans.phpt -2026-04-08T22:03:40.827484Z 01O Copying tests/ext/sandbox-regression/overriding_construct.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/overriding_construct.phpt -2026-04-08T22:03:40.827491Z 01O Copying tests/ext/sandbox-regression/overriding_method_defined_in_parent.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/overriding_method_defined_in_parent.phpt -2026-04-08T22:03:41.328139Z 01O Copying tests/ext/sandbox-regression/private_method_hook.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/private_method_hook.phpt -2026-04-08T22:03:41.328154Z 01O Copying tests/ext/sandbox-regression/private_self_access.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/private_self_access.phpt -2026-04-08T22:03:41.328162Z 01O Copying tests/ext/sandbox-regression/protected_method_hook.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/protected_method_hook.phpt -2026-04-08T22:03:41.328171Z 01O Copying tests/ext/sandbox-regression/recursion.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/recursion.phpt -2026-04-08T22:03:41.328177Z 01O Copying tests/ext/sandbox-regression/reset_configured_overrides.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/reset_configured_overrides.phpt -2026-04-08T22:03:41.328184Z 01O Copying tests/ext/sandbox-regression/reset_function_tracing.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/reset_function_tracing.phpt -2026-04-08T22:03:41.328193Z 01O Copying tests/ext/sandbox-regression/return_value_passed.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/return_value_passed.phpt -2026-04-08T22:03:41.328198Z 01O Copying tests/ext/sandbox-regression/simple_function_hook.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/simple_function_hook.phpt -2026-04-08T22:03:41.828569Z 01O Copying tests/ext/sandbox-regression/simple_method_hook.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/simple_method_hook.phpt -2026-04-08T22:03:41.828583Z 01O Copying tests/ext/sandbox-regression/throw_exception.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/throw_exception.phpt -2026-04-08T22:03:41.828590Z 01O Copying tests/ext/sandbox-regression/trace_method_or_function_that_will_exist_later.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/trace_method_or_function_that_will_exist_later.phpt -2026-04-08T22:03:41.828599Z 01O Copying tests/ext/sandbox-regression/trace_static_method.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/trace_static_method.phpt -2026-04-08T22:03:41.828605Z 01O Copying tests/ext/sandbox-regression/trampoline_install_fake_closure_hook.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/trampoline_install_fake_closure_hook.phpt -2026-04-08T22:03:41.828612Z 01O Copying tests/ext/sandbox-regression/uncaught_exception_with_finally.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/uncaught_exception_with_finally.phpt -2026-04-08T22:03:41.828622Z 01O Copying tests/ext/sandbox-regression/used_dispatch_should_not_free.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/used_dispatch_should_not_free.phpt -2026-04-08T22:03:41.828628Z 01O Copying tests/ext/sandbox-regression/variable_length_parameter_list.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/variable_length_parameter_list.phpt -2026-04-08T22:03:42.331158Z 01O Copying tests/ext/sandbox-regression/very_nested_functions.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/very_nested_functions.phpt -2026-04-08T22:03:42.331170Z 01O Copying tests/ext/sandbox-regression/with_params_function_hook.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/with_params_function_hook.phpt -2026-04-08T22:03:42.331180Z 01O Copying tests/ext/sandbox-regression/with_params_method_hook.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox-regression/with_params_method_hook.phpt -2026-04-08T22:03:42.331191Z 01O Copying tests/ext/sandbox/abstract_trait_hook.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/abstract_trait_hook.phpt -2026-04-08T22:03:42.331195Z 01O Copying tests/ext/sandbox/abstract_trait_hook_inherit.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/abstract_trait_hook_inherit.phpt -2026-04-08T22:03:42.331202Z 01O Copying tests/ext/sandbox/auto_flush.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/auto_flush.phpt -2026-04-08T22:03:42.331239Z 01O Copying tests/ext/sandbox/auto_flush_attach_exception.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/auto_flush_attach_exception.phpt -2026-04-08T22:03:42.331258Z 01O Copying tests/ext/sandbox/auto_flush_disables_tracing.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/auto_flush_disables_tracing.phpt -2026-04-08T22:03:42.829423Z 01O Copying tests/ext/sandbox/auto_flush_sandbox_exception.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/auto_flush_sandbox_exception.phpt -2026-04-08T22:03:42.829489Z 01O Copying tests/ext/sandbox/auto_flush_userland_root_span.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/auto_flush_userland_root_span.phpt -2026-04-08T22:03:42.829499Z 01O Copying tests/ext/sandbox/cake_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/cake_01.phpt -2026-04-08T22:03:42.829509Z 01O Copying tests/ext/sandbox/cake_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/cake_02.phpt -2026-04-08T22:03:42.829513Z 01O Copying tests/ext/sandbox/close-on-exit-retval.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/close-on-exit-retval.phpt -2026-04-08T22:03:42.829521Z 01O Copying tests/ext/sandbox/close-on-exit.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/close-on-exit.phpt -2026-04-08T22:03:42.829530Z 01O Copying tests/ext/sandbox/dd_dumper.inc to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/dd_dumper.inc -2026-04-08T22:03:42.829535Z 01O Copying tests/ext/sandbox/dd_trace_closed_spans_count.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/dd_trace_closed_spans_count.phpt -2026-04-08T22:03:43.330149Z 01O Copying tests/ext/sandbox/dd_trace_function_alias.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/dd_trace_function_alias.phpt -2026-04-08T22:03:43.330162Z 01O Copying tests/ext/sandbox/dd_trace_function_alias_overwrite.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/dd_trace_function_alias_overwrite.phpt -2026-04-08T22:03:43.330168Z 01O Copying tests/ext/sandbox/dd_trace_function_complex.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/dd_trace_function_complex.phpt -2026-04-08T22:03:43.330176Z 01O Copying tests/ext/sandbox/dd_trace_function_internal.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/dd_trace_function_internal.phpt -2026-04-08T22:03:43.330180Z 01O Copying tests/ext/sandbox/dd_trace_function_userland.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/dd_trace_function_userland.phpt -2026-04-08T22:03:43.330186Z 01O Copying tests/ext/sandbox/dd_trace_method.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/dd_trace_method.phpt -2026-04-08T22:03:43.330194Z 01O Copying tests/ext/sandbox/dd_trace_method_alias.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/dd_trace_method_alias.phpt -2026-04-08T22:03:43.330202Z 01O Copying tests/ext/sandbox/dd_trace_method_binds_called_object.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/dd_trace_method_binds_called_object.phpt -2026-04-08T22:03:43.830471Z 01O Copying tests/ext/sandbox/default_span_properties.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/default_span_properties.phpt -2026-04-08T22:03:43.830484Z 01O Copying tests/ext/sandbox/default_span_properties_method.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/default_span_properties_method.phpt -2026-04-08T22:03:43.830494Z 01O Copying tests/ext/sandbox/deferred_load_attempt_loading_once.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/deferred_load_attempt_loading_once.phpt -2026-04-08T22:03:43.830504Z 01O Copying tests/ext/sandbox/deferred_load_fatal.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/deferred_load_fatal.phpt -2026-04-08T22:03:43.830509Z 01O Copying tests/ext/sandbox/deferred_load_missing_interface.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/deferred_load_missing_interface.phpt -2026-04-08T22:03:43.830516Z 01O Copying tests/ext/sandbox/deferred_load_using_function.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/deferred_load_using_function.phpt -2026-04-08T22:03:43.830524Z 01O Copying tests/ext/sandbox/die_in_sandbox.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/die_in_sandbox.phpt -2026-04-08T22:03:43.830529Z 01O Copying tests/ext/sandbox/drop_spans.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/drop_spans.phpt -2026-04-08T22:03:44.331115Z 01O Copying tests/ext/sandbox/errors_are_flagged_from_userland.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/errors_are_flagged_from_userland.phpt -2026-04-08T22:03:44.331128Z 01O Copying tests/ext/sandbox/exception_does_not_close_span_that_catches.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/exception_does_not_close_span_that_catches.phpt -2026-04-08T22:03:44.331135Z 01O Copying tests/ext/sandbox/exception_error_log.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/exception_error_log.phpt -2026-04-08T22:03:44.331197Z 01O Copying tests/ext/sandbox/exception_from_user_error_handler_internal.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/exception_from_user_error_handler_internal.phpt -2026-04-08T22:03:44.331212Z 01O Copying tests/ext/sandbox/exception_handled_for_correct_catch_block.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/exception_handled_for_correct_catch_block.phpt -2026-04-08T22:03:44.331242Z 01O Copying tests/ext/sandbox/exception_handled_in_correct_catch_frame.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/exception_handled_in_correct_catch_frame.phpt -2026-04-08T22:03:44.331258Z 01O Copying tests/ext/sandbox/exception_handled_in_multicatch.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/exception_handled_in_multicatch.phpt -2026-04-08T22:03:44.331268Z 01O Copying tests/ext/sandbox/exception_handled_with_finally.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/exception_handled_with_finally.phpt -2026-04-08T22:03:44.832097Z 01O Copying tests/ext/sandbox/exception_handling.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/exception_handling.phpt -2026-04-08T22:03:44.832109Z 01O Copying tests/ext/sandbox/exception_is_defined.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/exception_is_defined.phpt -2026-04-08T22:03:44.832117Z 01O Copying tests/ext/sandbox/exceptions_and_errors_are_ignored_in_tracing_closure.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/exceptions_and_errors_are_ignored_in_tracing_closure.phpt -2026-04-08T22:03:44.832126Z 01O Copying tests/ext/sandbox/exceptions_are_passed_to_the_tracing_closure.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/exceptions_are_passed_to_the_tracing_closure.phpt -2026-04-08T22:03:44.832132Z 01O Copying tests/ext/sandbox/exceptions_in_original_call_rethrown_in_tracing_closure.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/exceptions_in_original_call_rethrown_in_tracing_closure.phpt -2026-04-08T22:03:44.832140Z 01O Copying tests/ext/sandbox/exceptions_in_tracing_closure_and_original_call.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/exceptions_in_tracing_closure_and_original_call.phpt -2026-04-08T22:03:44.832153Z 01O Copying tests/ext/sandbox/exit_and_drop_span.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/exit_and_drop_span.phpt -2026-04-08T22:03:44.832158Z 01O Copying tests/ext/sandbox/fatal_errors_are_tracked_001.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/fatal_errors_are_tracked_001.phpt -2026-04-08T22:03:45.335171Z 01O Copying tests/ext/sandbox/fatal_errors_are_tracked_002.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/fatal_errors_are_tracked_002.phpt -2026-04-08T22:03:45.335188Z 01O Copying tests/ext/sandbox/fatal_errors_are_tracked_003.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/fatal_errors_are_tracked_003.phpt -2026-04-08T22:03:45.335198Z 01O Copying tests/ext/sandbox/fatal_errors_are_tracked_004.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/fatal_errors_are_tracked_004.phpt -2026-04-08T22:03:45.335215Z 01O Copying tests/ext/sandbox/fatal_errors_are_tracked_005.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/fatal_errors_are_tracked_005.phpt -2026-04-08T22:03:45.335230Z 01O Copying tests/ext/sandbox/fatal_errors_ignored_in_shutdown.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/fatal_errors_ignored_in_shutdown.phpt -2026-04-08T22:03:45.335287Z 01O Copying tests/ext/sandbox/fatal_errors_ignored_in_tracing_closure.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/fatal_errors_ignored_in_tracing_closure.phpt -2026-04-08T22:03:45.335296Z 01O Copying tests/ext/sandbox/generator.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/generator.phpt -2026-04-08T22:03:45.335305Z 01O Copying tests/ext/sandbox/generator_in_object.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/generator_in_object.phpt -2026-04-08T22:03:45.833097Z 01O Copying tests/ext/sandbox/generator_with_exception.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/generator_with_exception.phpt -2026-04-08T22:03:45.833110Z 01O Copying tests/ext/sandbox/generator_with_return.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/generator_with_return.phpt -2026-04-08T22:03:45.833118Z 01O Copying tests/ext/sandbox/generator_yield_from.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/generator_yield_from.phpt -2026-04-08T22:03:45.833126Z 01O Copying tests/ext/sandbox/get_last_error.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/get_last_error.phpt -2026-04-08T22:03:45.833130Z 01O Copying tests/ext/sandbox/hook_function/01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/01.phpt -2026-04-08T22:03:45.833136Z 01O Copying tests/ext/sandbox/hook_function/02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/02.phpt -2026-04-08T22:03:45.833146Z 01O Copying tests/ext/sandbox/hook_function/03.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/03.phpt -2026-04-08T22:03:45.833152Z 01O Copying tests/ext/sandbox/hook_function/dropping_trace_hook.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/dropping_trace_hook.phpt -2026-04-08T22:03:46.333887Z 01O Copying tests/ext/sandbox/hook_function/hook_does_not_leak_error.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/hook_does_not_leak_error.phpt -2026-04-08T22:03:46.333922Z 01O Copying tests/ext/sandbox/hook_function/hook_internal_fake_closure.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/hook_internal_fake_closure.phpt -2026-04-08T22:03:46.333930Z 01O Copying tests/ext/sandbox/hook_function/posthook_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/posthook_01.phpt -2026-04-08T22:03:46.333968Z 01O Copying tests/ext/sandbox/hook_function/posthook_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/posthook_02.phpt -2026-04-08T22:03:46.333984Z 01O Copying tests/ext/sandbox/hook_function/posthook_03.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/posthook_03.phpt -2026-04-08T22:03:46.333995Z 01O Copying tests/ext/sandbox/hook_function/posthook_access_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/posthook_access_01.phpt -2026-04-08T22:03:46.334021Z 01O Copying tests/ext/sandbox/hook_function/posthook_error_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/posthook_error_01.phpt -2026-04-08T22:03:46.334036Z 01O Copying tests/ext/sandbox/hook_function/posthook_error_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/posthook_error_02.phpt -2026-04-08T22:03:46.834499Z 01O Copying tests/ext/sandbox/hook_function/posthook_exceptions_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/posthook_exceptions_01.phpt -2026-04-08T22:03:46.834512Z 01O Copying tests/ext/sandbox/hook_function/posthook_exceptions_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/posthook_exceptions_02.phpt -2026-04-08T22:03:46.834520Z 01O Copying tests/ext/sandbox/hook_function/posthook_exceptions_03.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/posthook_exceptions_03.phpt -2026-04-08T22:03:46.834528Z 01O Copying tests/ext/sandbox/hook_function/posthook_exceptions_04.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/posthook_exceptions_04.phpt -2026-04-08T22:03:46.834533Z 01O Copying tests/ext/sandbox/hook_function/posthook_exit_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/posthook_exit_01.phpt -2026-04-08T22:03:46.834539Z 01O Copying tests/ext/sandbox/hook_function/posthook_exit_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/posthook_exit_02.phpt -2026-04-08T22:03:46.834565Z 01O Copying tests/ext/sandbox/hook_function/posthook_limited_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/posthook_limited_01.phpt -2026-04-08T22:03:46.834580Z 01O Copying tests/ext/sandbox/hook_function/posthook_variadic.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/posthook_variadic.phpt -2026-04-08T22:03:47.335180Z 01O Copying tests/ext/sandbox/hook_function/prehook_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/prehook_01.phpt -2026-04-08T22:03:47.335192Z 01O Copying tests/ext/sandbox/hook_function/prehook_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/prehook_02.phpt -2026-04-08T22:03:47.335198Z 01O Copying tests/ext/sandbox/hook_function/prehook_03.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/prehook_03.phpt -2026-04-08T22:03:47.335206Z 01O Copying tests/ext/sandbox/hook_function/prehook_access_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/prehook_access_01.phpt -2026-04-08T22:03:47.335211Z 01O Copying tests/ext/sandbox/hook_function/prehook_error_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/prehook_error_01.phpt -2026-04-08T22:03:47.335222Z 01O Copying tests/ext/sandbox/hook_function/prehook_error_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/prehook_error_02.phpt -2026-04-08T22:03:47.335258Z 01O Copying tests/ext/sandbox/hook_function/prehook_exceptions_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/prehook_exceptions_01.phpt -2026-04-08T22:03:47.335282Z 01O Copying tests/ext/sandbox/hook_function/prehook_exceptions_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/prehook_exceptions_02.phpt -2026-04-08T22:03:47.335292Z 01O Copying tests/ext/sandbox/hook_function/prehook_exceptions_03.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/prehook_exceptions_03.phpt -2026-04-08T22:03:47.836003Z 01O Copying tests/ext/sandbox/hook_function/prehook_exceptions_04.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/prehook_exceptions_04.phpt -2026-04-08T22:03:47.836015Z 01O Copying tests/ext/sandbox/hook_function/prehook_variadic.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/prehook_variadic.phpt -2026-04-08T22:03:47.836022Z 01O Copying tests/ext/sandbox/hook_function/recursion.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_function/recursion.phpt -2026-04-08T22:03:47.836030Z 01O Copying tests/ext/sandbox/hook_limit.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_limit.phpt -2026-04-08T22:03:47.836034Z 01O Copying tests/ext/sandbox/hook_method/01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/01.phpt -2026-04-08T22:03:47.836039Z 01O Copying tests/ext/sandbox/hook_method/02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/02.phpt -2026-04-08T22:03:47.836047Z 01O Copying tests/ext/sandbox/hook_method/03.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/03.phpt -2026-04-08T22:03:47.836052Z 01O Copying tests/ext/sandbox/hook_method/hook_extended_internal_class.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/hook_extended_internal_class.phpt -2026-04-08T22:03:48.336422Z 01O Copying tests/ext/sandbox/hook_method/posthook_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/posthook_01.phpt -2026-04-08T22:03:48.336434Z 01O Copying tests/ext/sandbox/hook_method/posthook_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/posthook_02.phpt -2026-04-08T22:03:48.336444Z 01O Copying tests/ext/sandbox/hook_method/posthook_03.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/posthook_03.phpt -2026-04-08T22:03:48.336452Z 01O Copying tests/ext/sandbox/hook_method/posthook_04.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/posthook_04.phpt -2026-04-08T22:03:48.336456Z 01O Copying tests/ext/sandbox/hook_method/posthook_05.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/posthook_05.phpt -2026-04-08T22:03:48.336462Z 01O Copying tests/ext/sandbox/hook_method/posthook_06.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/posthook_06.phpt -2026-04-08T22:03:48.336497Z 01O Copying tests/ext/sandbox/hook_method/posthook_07.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/posthook_07.phpt -2026-04-08T22:03:48.336514Z 01O Copying tests/ext/sandbox/hook_method/posthook_access_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/posthook_access_01.phpt -2026-04-08T22:03:48.837061Z 01O Copying tests/ext/sandbox/hook_method/posthook_error_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/posthook_error_01.phpt -2026-04-08T22:03:48.837073Z 01O Copying tests/ext/sandbox/hook_method/posthook_error_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/posthook_error_02.phpt -2026-04-08T22:03:48.837080Z 01O Copying tests/ext/sandbox/hook_method/posthook_exceptions_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/posthook_exceptions_01.phpt -2026-04-08T22:03:48.837138Z 01O Copying tests/ext/sandbox/hook_method/posthook_exceptions_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/posthook_exceptions_02.phpt -2026-04-08T22:03:48.837148Z 01O Copying tests/ext/sandbox/hook_method/posthook_exit_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/posthook_exit_01.phpt -2026-04-08T22:03:48.837170Z 01O Copying tests/ext/sandbox/hook_method/posthook_exit_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/posthook_exit_02.phpt -2026-04-08T22:03:48.837179Z 01O Copying tests/ext/sandbox/hook_method/posthook_scope_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/posthook_scope_01.phpt -2026-04-08T22:03:48.837185Z 01O Copying tests/ext/sandbox/hook_method/posthook_scope_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/posthook_scope_02.phpt -2026-04-08T22:03:49.337819Z 01O Copying tests/ext/sandbox/hook_method/posthook_scope_03.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/posthook_scope_03.phpt -2026-04-08T22:03:49.337859Z 01O Copying tests/ext/sandbox/hook_method/posthook_span_ids_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/posthook_span_ids_01.phpt -2026-04-08T22:03:49.337866Z 01O Copying tests/ext/sandbox/hook_method/posthook_span_ids_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/posthook_span_ids_02.phpt -2026-04-08T22:03:49.337874Z 01O Copying tests/ext/sandbox/hook_method/prehook_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/prehook_01.phpt -2026-04-08T22:03:49.337879Z 01O Copying tests/ext/sandbox/hook_method/prehook_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/prehook_02.phpt -2026-04-08T22:03:49.337884Z 01O Copying tests/ext/sandbox/hook_method/prehook_03.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/prehook_03.phpt -2026-04-08T22:03:49.337891Z 01O Copying tests/ext/sandbox/hook_method/prehook_04.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/prehook_04.phpt -2026-04-08T22:03:49.337895Z 01O Copying tests/ext/sandbox/hook_method/prehook_05.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/prehook_05.phpt -2026-04-08T22:03:49.337902Z 01O Copying tests/ext/sandbox/hook_method/prehook_access_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/prehook_access_01.phpt -2026-04-08T22:03:49.838894Z 01O Copying tests/ext/sandbox/hook_method/prehook_error_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/prehook_error_01.phpt -2026-04-08T22:03:49.838907Z 01O Copying tests/ext/sandbox/hook_method/prehook_error_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/prehook_error_02.phpt -2026-04-08T22:03:49.838913Z 01O Copying tests/ext/sandbox/hook_method/prehook_exceptions_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/prehook_exceptions_01.phpt -2026-04-08T22:03:49.838922Z 01O Copying tests/ext/sandbox/hook_method/prehook_exceptions_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/prehook_exceptions_02.phpt -2026-04-08T22:03:49.838931Z 01O Copying tests/ext/sandbox/hook_method/prehook_scope_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/prehook_scope_01.phpt -2026-04-08T22:03:49.838992Z 01O Copying tests/ext/sandbox/hook_method/prehook_scope_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/prehook_scope_02.phpt -2026-04-08T22:03:49.839000Z 01O Copying tests/ext/sandbox/hook_method/prehook_scope_03.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/prehook_scope_03.phpt -2026-04-08T22:03:49.839026Z 01O Copying tests/ext/sandbox/hook_method/prehook_span_ids_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/prehook_span_ids_01.phpt -2026-04-08T22:03:50.339219Z 01O Copying tests/ext/sandbox/hook_method/prehook_span_ids_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/hook_method/prehook_span_ids_02.phpt -2026-04-08T22:03:50.339236Z 01O Copying tests/ext/sandbox/install_hook/allow_nested_hook.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/allow_nested_hook.phpt -2026-04-08T22:03:50.339246Z 01O Copying tests/ext/sandbox/install_hook/exclude_inherited_hook.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/exclude_inherited_hook.phpt -2026-04-08T22:03:50.339257Z 01O Copying tests/ext/sandbox/install_hook/get_source_file.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/get_source_file.phpt -2026-04-08T22:03:50.339262Z 01O Copying tests/ext/sandbox/install_hook/hook_file.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/hook_file.phpt -2026-04-08T22:03:50.339268Z 01O Copying tests/ext/sandbox/install_hook/hook_internal_fake_closure.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/hook_internal_fake_closure.phpt -2026-04-08T22:03:50.339276Z 01O Copying tests/ext/sandbox/install_hook/hook_internal_inherited_constructor.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/hook_internal_inherited_constructor.phpt -2026-04-08T22:03:50.339281Z 01O Copying tests/ext/sandbox/install_hook/hook_not_invoked_if_tracer_disabled.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/hook_not_invoked_if_tracer_disabled.phpt -2026-04-08T22:03:50.839848Z 01O Copying tests/ext/sandbox/install_hook/hook_scoped_file.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/hook_scoped_file.phpt -2026-04-08T22:03:50.839861Z 01O Copying tests/ext/sandbox/install_hook/install_hook_return_by_ref.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/install_hook_return_by_ref.phpt -2026-04-08T22:03:50.839868Z 01O Copying tests/ext/sandbox/install_hook/internal_fake_closure_forced_parse_error_asan.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/internal_fake_closure_forced_parse_error_asan.phpt -2026-04-08T22:03:50.839879Z 01O Copying tests/ext/sandbox/install_hook/override_argument_jit.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/override_argument_jit.phpt -2026-04-08T22:03:50.839885Z 01O Copying tests/ext/sandbox/install_hook/override_default_argument.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/override_default_argument.phpt -2026-04-08T22:03:50.839891Z 01O Copying tests/ext/sandbox/install_hook/override_exception.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/override_exception.phpt -2026-04-08T22:03:50.839961Z 01O Copying tests/ext/sandbox/install_hook/remove_executing_hook.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/remove_executing_hook.phpt -2026-04-08T22:03:50.839980Z 01O Copying tests/ext/sandbox/install_hook/remove_hook_null_logger.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/remove_hook_null_logger.phpt -2026-04-08T22:03:51.340615Z 01O Copying tests/ext/sandbox/install_hook/replace_generator.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/replace_generator.phpt -2026-04-08T22:03:51.340628Z 01O Copying tests/ext/sandbox/install_hook/replace_hook_args.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/replace_hook_args.phpt -2026-04-08T22:03:51.340635Z 01O Copying tests/ext/sandbox/install_hook/replace_hook_args_internal.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/replace_hook_args_internal.phpt -2026-04-08T22:03:51.340648Z 01O Copying tests/ext/sandbox/install_hook/replace_hook_retval.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/replace_hook_retval.phpt -2026-04-08T22:03:51.340655Z 01O Copying tests/ext/sandbox/install_hook/suppress_call.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/suppress_call.phpt -2026-04-08T22:03:51.340661Z 01O Copying tests/ext/sandbox/install_hook/suppress_call_jit.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/suppress_call_jit.phpt -2026-04-08T22:03:51.340668Z 01O Copying tests/ext/sandbox/install_hook/testinclude.inc to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/testinclude.inc -2026-04-08T22:03:51.340673Z 01O Copying tests/ext/sandbox/install_hook/trace_callable.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/trace_callable.phpt -2026-04-08T22:03:51.340679Z 01O Copying tests/ext/sandbox/install_hook/trace_closure.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/trace_closure.phpt -2026-04-08T22:03:51.841463Z 01O Copying tests/ext/sandbox/install_hook/trace_closure_from_callable.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/trace_closure_from_callable.phpt -2026-04-08T22:03:51.841478Z 01O Copying tests/ext/sandbox/install_hook/trace_closure_ge_php_84.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/trace_closure_ge_php_84.phpt -2026-04-08T22:03:51.841488Z 01O Copying tests/ext/sandbox/install_hook/trace_file.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/trace_file.phpt -2026-04-08T22:03:51.841497Z 01O Copying tests/ext/sandbox/install_hook/trace_function.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/trace_function.phpt -2026-04-08T22:03:51.841512Z 01O Copying tests/ext/sandbox/install_hook/trace_generator.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/trace_generator.phpt -2026-04-08T22:03:51.841521Z 01O Copying tests/ext/sandbox/install_hook/trace_generator_ge_php_84.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/trace_generator_ge_php_84.phpt -2026-04-08T22:03:51.841550Z 01O Copying tests/ext/sandbox/install_hook/trace_generator_jit.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/install_hook/trace_generator_jit.phpt -2026-04-08T22:03:51.841606Z 01O Copying tests/ext/sandbox/interface_hook.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/interface_hook.phpt -2026-04-08T22:03:52.341939Z 01O Copying tests/ext/sandbox/interface_hook_internal.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/interface_hook_internal.phpt -2026-04-08T22:03:52.341951Z 01O Copying tests/ext/sandbox/interface_inherit_hook.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/interface_inherit_hook.phpt -2026-04-08T22:03:52.341957Z 01O Copying tests/ext/sandbox/interface_inherit_hook_explicit_reimplement.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/interface_inherit_hook_explicit_reimplement.phpt -2026-04-08T22:03:52.341972Z 01O Copying tests/ext/sandbox/interface_inherit_hook_multiple.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/interface_inherit_hook_multiple.phpt -2026-04-08T22:03:52.341977Z 01O Copying tests/ext/sandbox/internal_hook_jit.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/internal_hook_jit.phpt -2026-04-08T22:03:52.341984Z 01O Copying tests/ext/sandbox/keep_spans_in_limited_tracing_internal_functions.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/keep_spans_in_limited_tracing_internal_functions.phpt -2026-04-08T22:03:52.341993Z 01O Copying tests/ext/sandbox/keep_spans_in_limited_tracing_internal_methods.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/keep_spans_in_limited_tracing_internal_methods.phpt -2026-04-08T22:03:52.342000Z 01O Copying tests/ext/sandbox/keep_spans_in_limited_tracing_userland_functions.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/keep_spans_in_limited_tracing_userland_functions.phpt -2026-04-08T22:03:52.342007Z 01O Copying tests/ext/sandbox/keep_spans_in_limited_tracing_userland_methods.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/keep_spans_in_limited_tracing_userland_methods.phpt -2026-04-08T22:03:52.842619Z 01O Copying tests/ext/sandbox/manual_flush.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/manual_flush.phpt -2026-04-08T22:03:52.842642Z 01O Copying tests/ext/sandbox/new_static.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/new_static.phpt -2026-04-08T22:03:52.842648Z 01O Copying tests/ext/sandbox/non-zero_duration.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/non-zero_duration.phpt -2026-04-08T22:03:52.842657Z 01O Copying tests/ext/sandbox/preinitialized_tracing_of_method.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/preinitialized_tracing_of_method.phpt -2026-04-08T22:03:52.842669Z 01O Copying tests/ext/sandbox/return_by_ref.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/return_by_ref.phpt -2026-04-08T22:03:52.842675Z 01O Copying tests/ext/sandbox/retval_is_null_with_exception.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/retval_is_null_with_exception.phpt -2026-04-08T22:03:52.842686Z 01O Copying tests/ext/sandbox/safe_to_string_metadata.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/safe_to_string_metadata.phpt -2026-04-08T22:03:52.842692Z 01O Copying tests/ext/sandbox/safe_to_string_metadata_drops_invalid_keys.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/safe_to_string_metadata_drops_invalid_keys.phpt -2026-04-08T22:03:53.343377Z 01O Copying tests/ext/sandbox/safe_to_string_metadata_ge_php_84.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/safe_to_string_metadata_ge_php_84.phpt -2026-04-08T22:03:53.343395Z 01O Copying tests/ext/sandbox/safe_to_string_metrics.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/safe_to_string_metrics.phpt -2026-04-08T22:03:53.343416Z 01O Copying tests/ext/sandbox/safe_to_string_properties.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/safe_to_string_properties.phpt -2026-04-08T22:03:53.343425Z 01O Copying tests/ext/sandbox/span_clone.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/span_clone.phpt -2026-04-08T22:03:53.343431Z 01O Copying tests/ext/sandbox/span_resource_serialization.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/span_resource_serialization.phpt -2026-04-08T22:03:53.343439Z 01O Copying tests/ext/sandbox/spans_out_of_sync_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/spans_out_of_sync_01.phpt -2026-04-08T22:03:53.343444Z 01O Copying tests/ext/sandbox/spans_out_of_sync_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/spans_out_of_sync_02.phpt -2026-04-08T22:03:53.343450Z 01O Copying tests/ext/sandbox/spans_out_of_sync_03.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/spans_out_of_sync_03.phpt -2026-04-08T22:03:53.844113Z 01O Copying tests/ext/sandbox/spans_out_of_sync_04.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/spans_out_of_sync_04.phpt -2026-04-08T22:03:53.844127Z 01O Copying tests/ext/sandbox/spans_out_of_sync_05.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/spans_out_of_sync_05.phpt -2026-04-08T22:03:53.844134Z 01O Copying tests/ext/sandbox/spans_out_of_sync_06.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/spans_out_of_sync_06.phpt -2026-04-08T22:03:53.844144Z 01O Copying tests/ext/sandbox/static_tracing_closures_will_not_bind_this.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/static_tracing_closures_will_not_bind_this.phpt -2026-04-08T22:03:53.844149Z 01O Copying tests/ext/sandbox/variadic_args_internal.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/variadic_args_internal.phpt -2026-04-08T22:03:53.844156Z 01O Copying tests/ext/sandbox/variadic_no_args.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/variadic_no_args.phpt -2026-04-08T22:03:53.844181Z 01O Copying tests/ext/sandbox/vm_var_types_return.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sandbox/vm_var_types_return.phpt -2026-04-08T22:03:53.844196Z 01O Copying tests/ext/segfault_backtrace_disabled.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/segfault_backtrace_disabled.phpt -2026-04-08T22:03:54.344699Z 01O Copying tests/ext/segfault_backtrace_enabled.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/segfault_backtrace_enabled.phpt -2026-04-08T22:03:54.344713Z 01O Copying tests/ext/set_distributed_tracing_context_wrong_param.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/set_distributed_tracing_context_wrong_param.phpt -2026-04-08T22:03:54.344722Z 01O Copying tests/ext/set_user_no_metadata.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/set_user_no_metadata.phpt -2026-04-08T22:03:54.344731Z 01O Copying tests/ext/set_user_with_metadata.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/set_user_with_metadata.phpt -2026-04-08T22:03:54.344799Z 01O Copying tests/ext/set_user_with_propagation_by_default.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/set_user_with_propagation_by_default.phpt -2026-04-08T22:03:54.344808Z 01O Copying tests/ext/set_user_with_propagation_override_default.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/set_user_with_propagation_override_default.phpt -2026-04-08T22:03:54.344817Z 01O Copying tests/ext/set_user_without_propagation_override_default.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/set_user_without_propagation_override_default.phpt -2026-04-08T22:03:54.344822Z 01O Copying tests/ext/show_actual_active_span_in_hook.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/show_actual_active_span_in_hook.phpt -2026-04-08T22:03:54.344837Z 01O Copying tests/ext/sidecar_connection_mode_auto.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sidecar_connection_mode_auto.phpt -2026-04-08T22:03:54.845448Z 01O Copying tests/ext/sidecar_connection_mode_config.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sidecar_connection_mode_config.phpt -2026-04-08T22:03:54.845476Z 01O Copying tests/ext/sidecar_connection_mode_invalid.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sidecar_connection_mode_invalid.phpt -2026-04-08T22:03:54.845485Z 01O Copying tests/ext/sidecar_connection_mode_subprocess.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sidecar_connection_mode_subprocess.phpt -2026-04-08T22:03:54.845510Z 01O Copying tests/ext/sidecar_disabled_when_telemetry_disabled.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sidecar_disabled_when_telemetry_disabled.phpt -2026-04-08T22:03:54.845526Z 01O Copying tests/ext/sidecar_enabled.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/sidecar_enabled.phpt -2026-04-08T22:03:54.845539Z 01O Copying tests/ext/single-span_sampling/accept-single-span.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/single-span_sampling/accept-single-span.phpt -2026-04-08T22:03:54.845549Z 01O Copying tests/ext/single-span_sampling/check-sample-rate.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/single-span_sampling/check-sample-rate.phpt -2026-04-08T22:03:54.845556Z 01O Copying tests/ext/single-span_sampling/limited-single-span-with-match.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/single-span_sampling/limited-single-span-with-match.phpt -2026-04-08T22:03:55.346148Z 01O Copying tests/ext/single-span_sampling/limited-single-span.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/single-span_sampling/limited-single-span.phpt -2026-04-08T22:03:55.346162Z 01O Copying tests/ext/single-span_sampling/name-matching-single-span.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/single-span_sampling/name-matching-single-span.phpt -2026-04-08T22:03:55.346172Z 01O Copying tests/ext/single-span_sampling/read-single-span-sampling-config-from-file.config.json to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/single-span_sampling/read-single-span-sampling-config-from-file.config.json -2026-04-08T22:03:55.346184Z 01O Copying tests/ext/single-span_sampling/read-single-span-sampling-config-from-file.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/single-span_sampling/read-single-span-sampling-config-from-file.phpt -2026-04-08T22:03:55.346241Z 01O Copying tests/ext/span_create_observer.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/span_create_observer.phpt -2026-04-08T22:03:55.346247Z 01O Copying tests/ext/span_on_close.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/span_on_close.phpt -2026-04-08T22:03:55.346257Z 01O Copying tests/ext/span_stack/span_stack_clone.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/span_stack/span_stack_clone.phpt -2026-04-08T22:03:55.346262Z 01O Copying tests/ext/span_stack/span_stack_swap.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/span_stack/span_stack_swap.phpt -2026-04-08T22:03:55.846843Z 01O Copying tests/ext/span_stack/span_stack_swap_traced_function.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/span_stack/span_stack_swap_traced_function.phpt -2026-04-08T22:03:55.846866Z 01O Copying tests/ext/span_stack/span_trace_stack_autoclose.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/span_stack/span_trace_stack_autoclose.phpt -2026-04-08T22:03:55.846874Z 01O Copying tests/ext/span_stack/span_trace_swap.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/span_stack/span_trace_swap.phpt -2026-04-08T22:03:55.846883Z 01O Copying tests/ext/span_stack/stack_dropped_parent.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/span_stack/stack_dropped_parent.phpt -2026-04-08T22:03:55.846887Z 01O Copying tests/ext/span_stack/start_span_new_trace.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/span_stack/start_span_new_trace.phpt -2026-04-08T22:03:55.846895Z 01O Copying tests/ext/span_stack/start_span_stack.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/span_stack/start_span_stack.phpt -2026-04-08T22:03:55.846903Z 01O Copying tests/ext/span_stack/start_top_level_span_stack.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/span_stack/start_top_level_span_stack.phpt -2026-04-08T22:03:55.846908Z 01O Copying tests/ext/span_with_parent_property_access.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/span_with_parent_property_access.phpt -2026-04-08T22:03:56.347490Z 01O Copying tests/ext/span_with_removed_exception.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/span_with_removed_exception.phpt -2026-04-08T22:03:56.347500Z 01O Copying tests/ext/start_span_with_all_properties.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/start_span_with_all_properties.phpt -2026-04-08T22:03:56.347507Z 01O Copying tests/ext/start_span_without_closing.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/start_span_without_closing.phpt -2026-04-08T22:03:56.347516Z 01O Copying tests/ext/start_span_without_closing_autofinish.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/start_span_without_closing_autofinish.phpt -2026-04-08T22:03:56.347523Z 01O Copying tests/ext/startup_logging.inc to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/startup_logging.inc -2026-04-08T22:03:56.347530Z 01O Copying tests/ext/startup_logging.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/startup_logging.phpt -2026-04-08T22:03:56.347551Z 01O Copying tests/ext/startup_logging_config.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/startup_logging_config.phpt -2026-04-08T22:03:56.347569Z 01O Copying tests/ext/startup_logging_diagnostics.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/startup_logging_diagnostics.phpt -2026-04-08T22:03:56.850085Z 01O Copying tests/ext/startup_logging_disabled.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/startup_logging_disabled.phpt -2026-04-08T22:03:56.850102Z 01O Copying tests/ext/startup_logging_json.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/startup_logging_json.phpt -2026-04-08T22:03:56.850114Z 01O Copying tests/ext/startup_logging_json_config.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/startup_logging_json_config.phpt -2026-04-08T22:03:56.850125Z 01O Copying tests/ext/startup_logging_skipif.inc to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/startup_logging_skipif.inc -2026-04-08T22:03:56.850131Z 01O Copying tests/ext/startup_logging_skipif_unix.inc to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/startup_logging_skipif_unix.inc -2026-04-08T22:03:56.850139Z 01O Copying tests/ext/startup_logging_skipif_unix_83.inc to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/startup_logging_skipif_unix_83.inc -2026-04-08T22:03:56.850146Z 01O Copying tests/ext/telemetry/broken_pipe.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/telemetry/broken_pipe.phpt -2026-04-08T22:03:56.850151Z 01O Copying tests/ext/telemetry/composer.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/telemetry/composer.phpt -2026-04-08T22:03:56.850160Z 01O Copying tests/ext/telemetry/config.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/telemetry/config.phpt -2026-04-08T22:03:57.348586Z 01O Copying tests/ext/telemetry/curl_helper.inc to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/telemetry/curl_helper.inc -2026-04-08T22:03:57.348597Z 01O Copying tests/ext/telemetry/disabled.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/telemetry/disabled.phpt -2026-04-08T22:03:57.348603Z 01O Copying tests/ext/telemetry/integration.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/telemetry/integration.phpt -2026-04-08T22:03:57.348612Z 01O Copying tests/ext/telemetry/integration_filesystem_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/telemetry/integration_filesystem_01.phpt -2026-04-08T22:03:57.348617Z 01O Copying tests/ext/telemetry/integration_filesystem_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/telemetry/integration_filesystem_02.phpt -2026-04-08T22:03:57.348623Z 01O Copying tests/ext/telemetry/integration_filesystem_03.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/telemetry/integration_filesystem_03.phpt -2026-04-08T22:03:57.348631Z 01O Copying tests/ext/telemetry/integration_filesystem_04.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/telemetry/integration_filesystem_04.phpt -2026-04-08T22:03:57.348643Z 01O Copying tests/ext/telemetry/integration_runtime_error.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/telemetry/integration_runtime_error.phpt -2026-04-08T22:03:57.849315Z 01O Copying tests/ext/telemetry/metrics_logs_created.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/telemetry/metrics_logs_created.phpt -2026-04-08T22:03:57.849328Z 01O Copying tests/ext/telemetry/metrics_spans_created.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/telemetry/metrics_spans_created.phpt -2026-04-08T22:03:57.849334Z 01O Copying tests/ext/telemetry/simple.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/telemetry/simple.phpt -2026-04-08T22:03:57.849343Z 01O Copying tests/ext/telemetry/telemetry_process_tags.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/telemetry/telemetry_process_tags.phpt -2026-04-08T22:03:57.849399Z 01O Copying tests/ext/telemetry/vendor/autoload.php to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/telemetry/vendor/autoload.php -2026-04-08T22:03:57.849406Z 01O Copying tests/ext/telemetry/vendor/composer/installed.json to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/telemetry/vendor/composer/installed.json -2026-04-08T22:03:57.849414Z 01O Copying tests/ext/test_special_attributes.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/test_special_attributes.phpt -2026-04-08T22:03:57.849419Z 01O Copying tests/ext/test_special_attributes_bis.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/test_special_attributes_bis.phpt -2026-04-08T22:03:57.849424Z 01O Copying tests/ext/traced_attribute.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/traced_attribute.phpt -2026-04-08T22:03:58.349643Z 01O Copying tests/ext/traced_attribute_delayed.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/traced_attribute_delayed.phpt -2026-04-08T22:03:58.349655Z 01O Copying tests/ext/traced_internal_functions_override_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/traced_internal_functions_override_01.phpt -2026-04-08T22:03:58.349661Z 01O Copying tests/ext/ust.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/ust.phpt -2026-04-08T22:03:58.349684Z 01O Copying tests/ext/traced_internal_functions_override_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/traced_internal_functions_override_02.phpt -2026-04-08T22:03:58.349702Z 01O Copying tests/ext/track_user_login_failure_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/track_user_login_failure_01.phpt -2026-04-08T22:03:58.349712Z 01O Copying tests/ext/track_user_login_failure_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/track_user_login_failure_02.phpt -2026-04-08T22:03:58.349722Z 01O Copying tests/ext/track_user_login_failure_03.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/track_user_login_failure_03.phpt -2026-04-08T22:03:58.349728Z 01O Copying tests/ext/track_user_login_success_01.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/track_user_login_success_01.phpt -2026-04-08T22:03:58.349734Z 01O Copying tests/ext/track_user_login_success_02.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/track_user_login_success_02.phpt -2026-04-08T22:03:58.849818Z 01O Copying tests/ext/track_user_login_success_03.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/track_user_login_success_03.phpt -2026-04-08T22:03:58.849849Z 01O Copying tests/ext/track_user_login_success_04.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/track_user_login_success_04.phpt -2026-04-08T22:03:58.849859Z 01O Copying tests/ext/track_user_login_success_05.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/track_user_login_success_05.phpt -2026-04-08T22:03:58.849894Z 01O Copying tests/ext/track_user_login_success_06.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/track_user_login_success_06.phpt -2026-04-08T22:03:58.849910Z 01O Copying tests/ext/track_user_login_success_07.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/track_user_login_success_07.phpt -2026-04-08T22:03:58.849920Z 01O Copying tests/ext/try_drop_span.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/try_drop_span.phpt -2026-04-08T22:03:58.849984Z 01O Copying tests/ext/try_drop_span_root.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/try_drop_span_root.phpt -2026-04-08T22:03:58.849995Z 01O Copying tests/ext/ust_precedence_over_ddtags.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/ust_precedence_over_ddtags.phpt -2026-04-08T22:03:59.350488Z 01O Copying tests/ext/ust_via_ddtags.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/ust_via_ddtags.phpt -2026-04-08T22:03:59.350501Z 01O Copying tests/ext/wrong-parameter-errors/DDTrace_hook_function.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/wrong-parameter-errors/DDTrace_hook_function.phpt -2026-04-08T22:03:59.350508Z 01O Copying tests/ext/wrong-parameter-errors/DDTrace_hook_method.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/wrong-parameter-errors/DDTrace_hook_method.phpt -2026-04-08T22:03:59.350517Z 01O Copying tests/ext/wrong-parameter-errors/DDTrace_trace_function.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/wrong-parameter-errors/DDTrace_trace_function.phpt -2026-04-08T22:03:59.350522Z 01O Copying tests/ext/wrong-parameter-errors/DDTrace_trace_id.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/wrong-parameter-errors/DDTrace_trace_id.phpt -2026-04-08T22:03:59.350529Z 01O Copying tests/ext/wrong-parameter-errors/DDTrace_trace_method.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/wrong-parameter-errors/DDTrace_trace_method.phpt -2026-04-08T22:03:59.350556Z 01O Copying tests/ext/wrong-parameter-errors/dd_trace_send_traces_via_thread.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/wrong-parameter-errors/dd_trace_send_traces_via_thread.phpt -2026-04-08T22:03:59.350574Z 01O Copying tests/ext/wrong-parameter-errors/set_distributed_tracing_context.phpt to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/wrong-parameter-errors/set_distributed_tracing_context.phpt -2026-04-08T22:03:59.851231Z 01O Copying tests/ext/background-sender/stubs/cgroup.docker to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/background-sender/stubs/cgroup.docker -2026-04-08T22:03:59.851272Z 01O Copying tests/ext/background-sender/stubs/cgroup.empty to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/background-sender/stubs/cgroup.empty -2026-04-08T22:03:59.851284Z 01O Copying tests/ext/background-sender/stubs/cgroup.fargate.1.4 to /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/tests/ext/background-sender/stubs/cgroup.fargate.1.4 -2026-04-08T22:03:59.851295Z 01O cp /opt/php/debug-zts-asan/bin/../lib/php/build/run-tests.php /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/run-tests.php -2026-04-08T22:03:59.851300Z 01O sed -i 's/\bdl(/(bool)(/' /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/run-tests.php # this dl() stuff in run-tests.php is for --EXTENSIONS-- sections, which we don't use; just strip it away (see https://github.com/php/php-src/issues/15367) -2026-04-08T22:03:59.851311Z 01O USE_ZEND_ALLOC=0 USE_TRACKED_ALLOC=1 DD_TRACE_GIT_METADATA_ENABLED=0 DD_CRASHTRACKER_RECEIVER_TIMEOUT_MS=15000 DD_EXPERIMENTAL_PROPAGATE_PROCESS_TAGS_ENABLED=0 DD_SERVICE= DD_ENV= REPORT_EXIT_STATUS=1 TEST_PHP_SRCDIR=/go/src/github.com/DataDog/apm-reliability/dd-trace-php USE_TRACKED_ALLOC=1 php -n -d 'memory_limit=-1' /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/run-tests.php --asan --show-diff -n -p /usr/local/bin/php -q --shuffle -j4 -d extension=/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/modules/ddtrace.so -d extension=zend_test.so -d zend_test.observer.enabled=1 -d zend_test.observer.observe_all=1 -d zend_test.observer.show_output=0 /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ -2026-04-08T22:04:00.351806Z 01O -2026-04-08T22:04:00.351815Z 01O ===================================================================== -2026-04-08T22:04:00.351820Z 01O PHP : /usr/local/bin/php -2026-04-08T22:04:00.351851Z 01O PHP_SAPI : cli -2026-04-08T22:04:00.351854Z 01O PHP_VERSION : 8.0.30 -2026-04-08T22:04:00.351858Z 01O ZEND_VERSION: 4.0.30 -2026-04-08T22:04:00.351866Z 01O PHP_OS : Linux - Linux runner-xbvgsbv-project-355-concurrent-3-uvsaicnm 6.8.0-1050-aws #53~22.04.1-Ubuntu SMP Fri Mar 13 21:34:27 UTC 2026 x86_64 -2026-04-08T22:04:00.351870Z 01O INI actual : /go/src/github.com/DataDog/apm-reliability/dd-trace-php -2026-04-08T22:04:00.351874Z 01O More .INIs : -2026-04-08T22:04:00.351880Z 01O CWD : /go/src/github.com/DataDog/apm-reliability/dd-trace-php -2026-04-08T22:04:00.351882Z 01O Extra dirs : -2026-04-08T22:04:00.351888Z 01O VALGRIND : Not used -2026-04-08T22:04:00.351893Z 01O ===================================================================== -2026-04-08T22:04:00.351896Z 01O Running selected tests. -2026-04-08T22:04:00.351899Z 01O ===================================================================== -2026-04-08T22:04:00.351905Z 01O ========= WELCOME TO THE FUTURE: run-tests PARALLEL EDITION ========= -2026-04-08T22:04:00.351908Z 01O ===================================================================== -2026-04-08T22:04:00.351912Z 01O Spawning 4 workers... Done in 0.14s -2026-04-08T22:04:00.351923Z 01O ===================================================================== -2026-04-08T22:04:00.351926Z 01O -2026-04-08T22:04:00.852467Z 01O PASS Test that call_user_func_array can trace inside a namespace [tmp/build_extension/tests/ext/call_user_func/namespaced-array.phpt] -2026-04-08T22:04:00.852480Z 01O TEST 1/647 [4/4 concurrent test workers running] PASS [Sandbox] Hook implementations of interface methods on direct implementor only [tmp/build_extension/tests/ext/sandbox/interface_inherit_hook.phpt] -2026-04-08T22:04:00.852490Z 01O TEST 2/647 [4/4 concurrent test workers running] PASS [regression] Properly skip nested dropped spans [tmp/build_extension/tests/ext/sandbox-regression/nested_dropped_spans.phpt] -2026-04-08T22:04:00.852500Z 01O TEST 3/647 [4/4 concurrent test workers running] PASS [Prehook] Variadic arguments are passed to tracing closure for internal functions [tmp/build_extension/tests/ext/sandbox-prehook/variadic_args_internal.phpt] -2026-04-08T22:04:00.852505Z 01O TEST 4/647 [4/4 concurrent test workers running] PASS Exceptions do not close the span that catches it [tmp/build_extension/tests/ext/sandbox/exception_does_not_close_span_that_catches.phpt] -2026-04-08T22:04:00.852511Z 01O TEST 5/647 [4/4 concurrent test workers running] SKIP E_ERROR fatal errors are tracked from hitting the memory limit [tmp/build_extension/tests/ext/sandbox/fatal_errors_are_tracked_002.phpt] reason: Zend memory manager required -2026-04-08T22:04:00.852529Z 01O TEST 6/647 [4/4 concurrent test workers running] PASS Tracing Fake Closures via install_hook() [tmp/build_extension/tests/ext/sandbox/install_hook/trace_closure_from_callable.phpt] -2026-04-08T22:04:00.852539Z 01O TEST 7/647 [4/4 concurrent test workers running] PASS Post fields parameters should be retrieved and redacted if needed [tmp/build_extension/tests/ext/root_span_url_with_post_fields.phpt] -2026-04-08T22:04:00.852545Z 01O TEST 8/647 [4/4 concurrent test workers running] PASS Empty post request without whitelisting [tmp/build_extension/tests/ext/root_span_url_with_post_no_param_set.phpt] -2026-04-08T22:04:00.852599Z 01O TEST 9/647 [4/4 concurrent test workers running] PASS rate limiter disabled [tmp/build_extension/tests/ext/limiter/001-limiter-disabled.phpt] -2026-04-08T22:04:00.852603Z 01O TEST 10/647 [4/4 concurrent test workers running] PASS All open internal spans are marked with the fatal error [tmp/build_extension/tests/ext/sandbox/fatal_errors_are_tracked_005.phpt] -2026-04-08T22:04:00.852611Z 01O TEST 11/647 [4/4 concurrent test workers running] PASS Transmit distributed header information to spans via single B3 header without sampling decision [tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_inherit_b3-single-span_no_sampling.phpt] -2026-04-08T22:04:00.852618Z 01O TEST 12/647 [4/4 concurrent test workers running] PASS DDTrace\hook_function posthook is called at exit [tmp/build_extension/tests/ext/sandbox/hook_function/posthook_exit_01.phpt] -2026-04-08T22:04:00.852623Z 01O TEST 13/647 [4/4 concurrent test workers running] SKIP background sender restores effective capabilities from permitted set [tmp/build_extension/tests/ext/background-sender/background_sender_restores_capabilities.phpt] reason: leak sanitizer crashes -2026-04-08T22:04:00.852628Z 01O TEST 14/647 [4/4 concurrent test workers running] PASS DDTrace\hook_function returns false quietly when no hook is passed [tmp/build_extension/tests/ext/sandbox/hook_function/02.phpt] -2026-04-08T22:04:00.852636Z 01O TEST 15/647 [4/4 concurrent test workers running] PASS Override arguments of a function with default arguments [tmp/build_extension/tests/ext/sandbox/install_hook/override_default_argument.phpt] -2026-04-08T22:04:00.852641Z 01O TEST 16/647 [4/4 concurrent test workers running] PASS Test \datadog\appsec\v2\track_user_login_failure [tmp/build_extension/tests/ext/track_user_login_failure_01.phpt] -2026-04-08T22:04:00.852646Z 01O TEST 17/647 [4/4 concurrent test workers running] PASS Setting custom distributed header information [tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_overwrite.phpt] -2026-04-08T22:04:00.852656Z 01O TEST 18/647 [4/4 concurrent test workers running] PASS Exceptions from original call rethrown in tracing closure [tmp/build_extension/tests/ext/sandbox/exceptions_in_original_call_rethrown_in_tracing_closure.phpt] -2026-04-08T22:04:00.852662Z 01O TEST 19/647 [4/4 concurrent test workers running] PASS priority_sampling rule with name match, using glob [tmp/build_extension/tests/ext/priority_sampling/021-rule-name-as-glob-with-question-mark.phpt] -2026-04-08T22:04:00.852679Z 01O TEST 20/647 [4/4 concurrent test workers running] -2026-04-08T22:04:01.353205Z 01O+ PASS Test baggage span tags default behavior [tmp/build_extension/tests/ext/distributed_tracing/baggage/baggage_span_tags.phpt] -2026-04-08T22:04:01.353215Z 01O TEST 21/647 [4/4 concurrent test workers running] PASS priority_sampling is ignored when asm standalone is enabled [tmp/build_extension/tests/ext/priority_sampling/asm-standalone.phpt] -2026-04-08T22:04:01.353222Z 01O TEST 22/647 [4/4 concurrent test workers running] PASS DDTrace\add_global_tag() on all sorts of spans [tmp/build_extension/tests/ext/add_global_tag_on_userland_and_internal_spans.phpt] -2026-04-08T22:04:01.353296Z 01O TEST 23/647 [4/4 concurrent test workers running] PASS HTTP endpoint resource renaming with DD_TRACE_RESOURCE_RENAMING_ENABLED=true [tmp/build_extension/tests/ext/http_endpoint_resource_renaming_basic.phpt] -2026-04-08T22:04:01.353305Z 01O TEST 24/647 [4/4 concurrent test workers running] PASS Test file inclusion hooking [tmp/build_extension/tests/ext/sandbox/install_hook/hook_file.phpt] -2026-04-08T22:04:01.353314Z 01O TEST 25/647 [4/4 concurrent test workers running] PASS Test consume_distributed_tracing_headers() with conflicting span_ids in tracestate and traceparent headers [tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_conflicting_span_ids_tracecontext.phpt] -2026-04-08T22:04:01.353319Z 01O TEST 26/647 [4/4 concurrent test workers running] PASS Request init hook ignores exceptions [tmp/build_extension/tests/ext/autoload-php-files/ignores_exceptions.phpt] -2026-04-08T22:04:01.353325Z 01O TEST 27/647 [4/4 concurrent test workers running] PASS Test DDTrace\close_spans_until [tmp/build_extension/tests/ext/close_spans_until.phpt] -2026-04-08T22:04:01.353331Z 01O TEST 28/647 [4/4 concurrent test workers running] PASS DDTrace\hook_method prehook is passed the correct args with inheritance [tmp/build_extension/tests/ext/sandbox/hook_method/prehook_04.phpt] -2026-04-08T22:04:01.353336Z 01O TEST 29/647 [4/4 concurrent test workers running] PASS Logs aliases are correctly handled [tmp/build_extension/tests/ext/alias_logs.phpt] -2026-04-08T22:04:01.353343Z 01O TEST 30/647 [4/4 concurrent test workers running] PASS Test max_per_second single span limiting with multiple buckets [tmp/build_extension/tests/ext/single-span_sampling/limited-single-span-with-match.phpt] -2026-04-08T22:04:01.353347Z 01O TEST 31/647 [4/4 concurrent test workers running] -2026-04-08T22:04:01.853549Z 01O+ PASS dd_trace_method() is aliased to DDTrace\trace_method() [tmp/build_extension/tests/ext/sandbox/dd_trace_method_alias.phpt] -2026-04-08T22:04:01.853566Z 01O TEST 32/647 [4/4 concurrent test workers running] PASS [Prehook Regression] New static instantiates from expected class [tmp/build_extension/tests/ext/sandbox-prehook/new_static.phpt] -2026-04-08T22:04:01.853573Z 01O TEST 33/647 [4/4 concurrent test workers running] PASS DDTrace\ExceptionSpanEvent serialization with overridden attributes [tmp/build_extension/tests/ext/request-replayer/dd_trace_exception_span_event.phpt] -2026-04-08T22:04:01.853582Z 01O TEST 34/647 [4/4 concurrent test workers running] PASS DDTrace\hook_method posthook is passed the correct args [tmp/build_extension/tests/ext/sandbox/hook_method/posthook_03.phpt] -2026-04-08T22:04:01.853589Z 01O TEST 35/647 [4/4 concurrent test workers running] PASS Test that call_user_func can trace in global scope [tmp/build_extension/tests/ext/call_user_func/not-namespaced.phpt] -2026-04-08T22:04:01.853594Z 01O TEST 36/647 [4/4 concurrent test workers running] PASS Span is dropped when tracing closure returns false [tmp/build_extension/tests/ext/sandbox/drop_spans.phpt] -2026-04-08T22:04:01.853658Z 01O TEST 37/647 [4/4 concurrent test workers running] PASS Installing a live debugger log probe [tmp/build_extension/tests/ext/live-debugger/debugger_log_probe.phpt] -2026-04-08T22:04:01.853668Z 01O TEST 38/647 [4/4 concurrent test workers running] SKIP Don't send crashtracker report when segmentation fault signal is raised and config disables it [tmp/build_extension/tests/ext/crashtracker_segfault_disabled.phpt] reason: : intentionally causes segfaults -2026-04-08T22:04:01.853674Z 01O TEST 39/647 [4/4 concurrent test workers running] -2026-04-08T22:04:02.354214Z 01O+ PASS [Sandbox regression] Trace variadic functions and methods [tmp/build_extension/tests/ext/sandbox-regression/variable_length_parameter_list.phpt] -2026-04-08T22:04:02.354225Z 01O TEST 40/647 [4/4 concurrent test workers running] PASS hook_function posthook should have access only to public members [tmp/build_extension/tests/ext/sandbox/hook_function/posthook_access_01.phpt] -2026-04-08T22:04:02.354232Z 01O TEST 41/647 [4/4 concurrent test workers running] PASS Replacing the return value of a generator instantiation in the begin hook [tmp/build_extension/tests/ext/sandbox/install_hook/replace_generator.phpt] -2026-04-08T22:04:02.354256Z 01O TEST 42/647 [4/4 concurrent test workers running] PASS New static instantiates from expected class [tmp/build_extension/tests/ext/sandbox/new_static.phpt] -2026-04-08T22:04:02.354264Z 01O TEST 43/647 [4/4 concurrent test workers running] PASS Force flush the traces mid-way through a trace [tmp/build_extension/tests/ext/force_flush_traces.phpt] -2026-04-08T22:04:02.354272Z 01O TEST 44/647 [4/4 concurrent test workers running] PASS Test \datadog\appsec\v2\track_user_login_success when user is an array [tmp/build_extension/tests/ext/track_user_login_success_02.phpt] -2026-04-08T22:04:02.354281Z 01O TEST 45/647 [4/4 concurrent test workers running] PASS Installing a live debugger span probe on a class [tmp/build_extension/tests/ext/live-debugger/debugger_span_probe_class.phpt] -2026-04-08T22:04:02.354289Z 01O TEST 46/647 [4/4 concurrent test workers running] PASS Startup logging config from JSON fetched at runtime [tmp/build_extension/tests/ext/startup_logging_json_config.phpt] -2026-04-08T22:04:02.354297Z 01O TEST 47/647 [4/4 concurrent test workers running] PASS Span stacks are fully reset when the tracer is disabled and re-enabled [tmp/build_extension/tests/ext/span_stack/stack_dropped_parent.phpt] -2026-04-08T22:04:02.354308Z 01O TEST 48/647 [4/4 concurrent test workers running] PASS DDTrace\hook_function posthook basic functionality [tmp/build_extension/tests/ext/sandbox/hook_function/posthook_01.phpt] -2026-04-08T22:04:02.354313Z 01O TEST 49/647 [4/4 concurrent test workers running] PASS DDTrace\hook_function returns false with diagnostic when no hook is passed [tmp/build_extension/tests/ext/sandbox/hook_function/03.phpt] -2026-04-08T22:04:02.354318Z 01O TEST 50/647 [4/4 concurrent test workers running] -2026-04-08T22:04:02.854899Z 01O+ PASS Test creating swapping traces [tmp/build_extension/tests/ext/span_stack/span_trace_swap.phpt] -2026-04-08T22:04:02.854911Z 01O TEST 51/647 [4/4 concurrent test workers running] PASS deferred loading only happens once, even if dispatch is not overwritten [tmp/build_extension/tests/ext/sandbox/deferred_load_attempt_loading_once.phpt] -2026-04-08T22:04:02.854959Z 01O TEST 52/647 [4/4 concurrent test workers running] PASS Test 128 bit generation [tmp/build_extension/tests/ext/generate_128_bit_trace_id.phpt] -2026-04-08T22:04:02.854965Z 01O TEST 53/647 [4/4 concurrent test workers running] PASS Foo [tmp/build_extension/tests/ext/ust.phpt] -2026-04-08T22:04:02.854973Z 01O TEST 54/647 [4/4 concurrent test workers running] PASS DDTrace\active_span basic functionality [tmp/build_extension/tests/ext/active_span.phpt] -2026-04-08T22:04:02.854979Z 01O TEST 55/647 [4/4 concurrent test workers running] PASS deferred loading doesn't crash if integration loading fails [tmp/build_extension/tests/ext/sandbox/deferred_load_missing_interface.phpt] -2026-04-08T22:04:02.854985Z 01O TEST 56/647 [4/4 concurrent test workers running] PASS [Prehook Regression] Exit gracefully handles a dropped span [tmp/build_extension/tests/ext/sandbox-prehook/exit_and_drop_span.phpt] -2026-04-08T22:04:02.854993Z 01O TEST 57/647 [4/4 concurrent test workers running] PASS Ensure tracing closure's $retval arg is null if invoked due to exit() [tmp/build_extension/tests/ext/sandbox/close-on-exit-retval.phpt] -2026-04-08T22:04:02.855001Z 01O TEST 58/647 [4/4 concurrent test workers running] PASS Test baggage header interaction with items limit configured [tmp/build_extension/tests/ext/distributed_tracing/baggage/distributed_trace_baggage_configured_items.phpt] -2026-04-08T22:04:02.855007Z 01O TEST 59/647 [4/4 concurrent test workers running] PASS Spans are not automatically flushed when auto-flushing disabled [tmp/build_extension/tests/ext/sandbox/manual_flush.phpt] -2026-04-08T22:04:02.855017Z 01O TEST 60/647 [4/4 concurrent test workers running] PASS _dd.p.ksr propagated tag is NOT set for default sampling (only for explicit agent rates) [tmp/build_extension/tests/ext/priority_sampling/026-ksr-tag-default-sampling.phpt] -2026-04-08T22:04:02.855021Z 01O TEST 61/647 [4/4 concurrent test workers running] PASS [Prehook] Tracing closure does not have access to return value [tmp/build_extension/tests/ext/sandbox-prehook/closure_arg_retval.phpt] -2026-04-08T22:04:02.855028Z 01O TEST 62/647 [4/4 concurrent test workers running] PASS Test \datadog\appsec\v2\track_user_login_success id should be string to be sent [tmp/build_extension/tests/ext/track_user_login_success_05.phpt] -2026-04-08T22:04:02.855036Z 01O TEST 63/647 [4/4 concurrent test workers running] PASS DDTrace\trace_method() binds the called object to the tracing closure [tmp/build_extension/tests/ext/sandbox/dd_trace_method_binds_called_object.phpt] -2026-04-08T22:04:02.855039Z 01O TEST 64/647 [4/4 concurrent test workers running] -2026-04-08T22:04:03.355640Z 01O+ PASS [Prehook] Arguments are copied before mutation can occur [tmp/build_extension/tests/ext/sandbox-prehook/args_copy_before_mutation.phpt] -2026-04-08T22:04:03.355660Z 01O TEST 65/647 [4/4 concurrent test workers running] PASS DDTrace\trace_function() can trace internal functions with internal spans [tmp/build_extension/tests/ext/sandbox/dd_trace_function_internal.phpt] -2026-04-08T22:04:03.355708Z 01O TEST 66/647 [4/4 concurrent test workers running] PASS priority_sampling user reject [tmp/build_extension/tests/ext/priority_sampling/002-user-reject.phpt] -2026-04-08T22:04:03.355718Z 01O TEST 67/647 [4/4 concurrent test workers running] PASS Starting a trace in a prehook and closing it in the posthook while an active one exists does not confuse the limiter [tmp/build_extension/tests/ext/sandbox-regression/limiter_reset_flush_with_open_spans.phpt] -2026-04-08T22:04:03.355723Z 01O TEST 68/647 [4/4 concurrent test workers running] PASS Spans are automatically flushed when auto-flushing enabled [tmp/build_extension/tests/ext/sandbox/auto_flush.phpt] -2026-04-08T22:04:03.355746Z 01O TEST 69/647 [4/4 concurrent test workers running] SKIP Test installing hook on trampoline fake closure [tmp/build_extension/tests/ext/sandbox-regression/trampoline_install_fake_closure_hook.phpt] reason: : The ... operator is a PHP 8.1+ feature -2026-04-08T22:04:03.355756Z 01O TEST 70/647 [4/4 concurrent test workers running] PASS Setting custom distributed header information [tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_span_link_from_headers.phpt] -2026-04-08T22:04:03.355764Z 01O TEST 71/647 [4/4 concurrent test workers running] PASS Test 128-bit trace id retrieval [tmp/build_extension/tests/ext/retrieve_128_bit_trace_id.phpt] -2026-04-08T22:04:03.355772Z 01O TEST 72/647 [4/4 concurrent test workers running] PASS Distributed tracestate consumption should produce valid tracestate header [tmp/build_extension/tests/ext/distributed_tracestate_consumption.phpt] -2026-04-08T22:04:03.355778Z 01O TEST 73/647 [4/4 concurrent test workers running] PASS DD_AGENT_HOST with IPv6 works [tmp/build_extension/tests/ext/background-sender/background_sender_ipv6_support.phpt] -2026-04-08T22:04:03.355784Z 01O TEST 74/647 [4/4 concurrent test workers running] PASS Keep spans in limited mode (internal functions) [tmp/build_extension/tests/ext/sandbox/keep_spans_in_limited_tracing_internal_functions.phpt] -2026-04-08T22:04:03.355790Z 01O TEST 75/647 [4/4 concurrent test workers running] -2026-04-08T22:04:03.863126Z 01O+ PASS [Sandbox regression] Method can be traced and called from tracing closure [tmp/build_extension/tests/ext/sandbox-regression/method_returning_array.phpt] -2026-04-08T22:04:03.863140Z 01O TEST 76/647 [4/4 concurrent test workers running] PASS Test CurlMulti during garbage collection [tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_multi_exec_003.phpt] -2026-04-08T22:04:03.863147Z 01O TEST 77/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Trace a function and method before it is defined [tmp/build_extension/tests/ext/sandbox-regression/allow_overriding_before_overrided_methods_functions_are_defined.phpt] -2026-04-08T22:04:03.863155Z 01O TEST 78/647 [4/4 concurrent test workers running] PASS Test creating a new span stack on top level [tmp/build_extension/tests/ext/span_stack/start_top_level_span_stack.phpt] -2026-04-08T22:04:03.863160Z 01O TEST 79/647 [4/4 concurrent test workers running] PASS manual.keep will overwrite a rejected distributed sampling decision [tmp/build_extension/tests/ext/priority_sampling/023-manual.keep-distributed_overwrite.phpt] -2026-04-08T22:04:03.863211Z 01O TEST 80/647 [4/4 concurrent test workers running] PASS Return value from finally block is passed to tracing closure [tmp/build_extension/tests/ext/sandbox/exception_handled_with_finally.phpt] -2026-04-08T22:04:03.863218Z 01O TEST 81/647 [4/4 concurrent test workers running] PASS Gracefully handle out-of-sync spans in closure itself [user][default properties] [tmp/build_extension/tests/ext/sandbox/spans_out_of_sync_06.phpt] -2026-04-08T22:04:03.863222Z 01O TEST 82/647 [4/4 concurrent test workers running] PASS Test that the sandbox API has non-zero durations [tmp/build_extension/tests/ext/sandbox/non-zero_duration.phpt] -2026-04-08T22:04:03.863228Z 01O TEST 83/647 [4/4 concurrent test workers running] PASS background sender happy path [tmp/build_extension/tests/ext/dd_trace_send_traces_via_thread_001.phpt] -2026-04-08T22:04:03.863235Z 01O TEST 84/647 [4/4 concurrent test workers running] PASS Check the library config files [tmp/build_extension/tests/ext/library_config/local_config_overloads_ini.phpt] -2026-04-08T22:04:03.863249Z 01O TEST 85/647 [4/4 concurrent test workers running] PASS Startup logging from JSON fetched at runtime [tmp/build_extension/tests/ext/startup_logging_json.phpt] -2026-04-08T22:04:03.863255Z 01O TEST 86/647 [4/4 concurrent test workers running] -2026-04-08T22:04:04.356971Z 01O+ PASS Test two traces get trace source from tags [tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_asm_standalone_07.phpt] -2026-04-08T22:04:04.356984Z 01O TEST 87/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Userland method is traced [tmp/build_extension/tests/ext/sandbox-regression/simple_method_hook.phpt] -2026-04-08T22:04:04.356992Z 01O TEST 88/647 [4/4 concurrent test workers running] PASS Verify trace source tag is sent on asm event [tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_existing_headers_004.phpt] -2026-04-08T22:04:04.356999Z 01O TEST 89/647 [4/4 concurrent test workers running] PASS Verify the user agent is added to the root span on serialization. [tmp/build_extension/tests/ext/root_span_http_useragent.phpt] -2026-04-08T22:04:04.357004Z 01O TEST 90/647 [4/4 concurrent test workers running] PASS DDTrace\trace_method() can trace with internal spans [tmp/build_extension/tests/ext/sandbox/dd_trace_method.phpt] -2026-04-08T22:04:04.357009Z 01O TEST 91/647 [4/4 concurrent test workers running] PASS Coms test no memory leaks with empty data store [tmp/build_extension/tests/ext/dd_trace_coms_empty_stacks_correctly_recycled.phpt] -2026-04-08T22:04:04.357017Z 01O TEST 92/647 [4/4 concurrent test workers running] PASS DDTrace\hook_method posthook is called with an exception; args are still good [tmp/build_extension/tests/ext/sandbox/hook_method/posthook_exceptions_01.phpt] -2026-04-08T22:04:04.357023Z 01O TEST 93/647 [4/4 concurrent test workers running] PASS Wrong tags parameter passed to set_distributed_tracing_context [tmp/build_extension/tests/ext/set_distributed_tracing_context_wrong_param.phpt] -2026-04-08T22:04:04.357029Z 01O TEST 94/647 [4/4 concurrent test workers running] SKIP Tracing Closures via install_hook() [tmp/build_extension/tests/ext/sandbox/install_hook/trace_closure_ge_php_84.phpt] reason: : test only stable on PHP >= 8.4 -2026-04-08T22:04:04.357100Z 01O TEST 95/647 [4/4 concurrent test workers running] PASS Distributed tracing headers propagate with existing headers set with curl_setopt_array() [tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_existing_headers_002.phpt] -2026-04-08T22:04:04.357119Z 01O TEST 96/647 [4/4 concurrent test workers running] PASS Test baggage round-trip propagation and multiple header handling [tmp/build_extension/tests/ext/distributed_tracing/baggage/distributed_trace_baggage_context_propagated.phpt] -2026-04-08T22:04:04.357131Z 01O TEST 97/647 [4/4 concurrent test workers running] PASS priority_sampling with manual.drop [tmp/build_extension/tests/ext/priority_sampling/018-manual.drop.phpt] -2026-04-08T22:04:04.357141Z 01O TEST 98/647 [4/4 concurrent test workers running] -2026-04-08T22:04:04.857547Z 01O+ PASS hook_method posthook is called with the correct scope (no override) [tmp/build_extension/tests/ext/sandbox/hook_method/posthook_scope_01.phpt] -2026-04-08T22:04:04.857562Z 01O TEST 99/647 [4/4 concurrent test workers running] PASS Distributed tracing headers propagate with existing headers set with curl_setopt() [tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_existing_headers_001.phpt] -2026-04-08T22:04:04.857569Z 01O TEST 100/647 [4/4 concurrent test workers running] PASS Span metadata is safely converted to strings without errors or exceptions [tmp/build_extension/tests/ext/sandbox/safe_to_string_metadata.phpt] -2026-04-08T22:04:04.857577Z 01O TEST 101/647 [4/4 concurrent test workers running] PASS [Prehook Regression] DDTrace\trace_method() binds the called object to the tracing closure [tmp/build_extension/tests/ext/sandbox-prehook/dd_trace_method_binds_called_object.phpt] -2026-04-08T22:04:04.857582Z 01O TEST 102/647 [4/4 concurrent test workers running] PASS Inferred span's service shouldn't change on ini_change of datadog.service [tmp/build_extension/tests/ext/inferred_proxy/alter_service.phpt] -2026-04-08T22:04:04.857589Z 01O TEST 103/647 [4/4 concurrent test workers running] PASS Distributed tracing span is generated for file_get_contents() [tmp/build_extension/tests/ext/integrations/http_streams/distributed_tracing_http_streams.phpt] -2026-04-08T22:04:04.857596Z 01O TEST 104/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Hook implementations of abstract methods [tmp/build_extension/tests/ext/sandbox-regression/abstract_method_hook.phpt] -2026-04-08T22:04:04.857601Z 01O TEST 105/647 [4/4 concurrent test workers running] PASS hook_method prehook is called with the correct scope (no override) [tmp/build_extension/tests/ext/sandbox/hook_method/prehook_scope_01.phpt] -2026-04-08T22:04:04.857606Z 01O TEST 106/647 [4/4 concurrent test workers running] PASS Empty referrer hostname from HTTP headers [tmp/build_extension/tests/ext/referrer_extraction_04.phpt] -2026-04-08T22:04:04.857616Z 01O TEST 107/647 [4/4 concurrent test workers running] PASS Keep spans in limited mode (internal methods) [tmp/build_extension/tests/ext/sandbox/keep_spans_in_limited_tracing_internal_methods.phpt] -2026-04-08T22:04:04.857684Z 01O TEST 108/647 [4/4 concurrent test workers running] -2026-04-08T22:04:05.358282Z 01O+ PASS DDTrace\hook_function prehook is passed the correct args [tmp/build_extension/tests/ext/sandbox/hook_function/prehook_03.phpt] -2026-04-08T22:04:05.358296Z 01O TEST 109/647 [4/4 concurrent test workers running] PASS Test that call_user_func can trace inside a namespace [tmp/build_extension/tests/ext/call_user_func/namespaced.phpt] -2026-04-08T22:04:05.358304Z 01O TEST 110/647 [4/4 concurrent test workers running] PASS Run sandbox closures for open spans on exit [tmp/build_extension/tests/ext/sandbox/close-on-exit.phpt] -2026-04-08T22:04:05.358313Z 01O TEST 111/647 [4/4 concurrent test workers running] PASS Process tag value normalization [tmp/build_extension/tests/ext/process_tag_value_normalization.phpt] -2026-04-08T22:04:05.358317Z 01O TEST 112/647 [4/4 concurrent test workers running] PASS Sanity check when extension is disabled [tmp/build_extension/tests/ext/extension_disabled.phpt] -2026-04-08T22:04:05.358322Z 01O TEST 113/647 [4/4 concurrent test workers running] -2026-04-08T22:04:05.858953Z 01O+ PASS Exceptions and errors are ignored when inside a tracing closure [tmp/build_extension/tests/ext/sandbox/exceptions_and_errors_are_ignored_in_tracing_closure.phpt] -2026-04-08T22:04:05.858965Z 01O TEST 114/647 [4/4 concurrent test workers running] PASS IPv6 address in referrer header [tmp/build_extension/tests/ext/referrer_extraction_05.phpt] -2026-04-08T22:04:05.858972Z 01O TEST 115/647 [4/4 concurrent test workers running] PASS Root span with http.url and obfuscated query string [tmp/build_extension/tests/ext/root_span_url_with_query_params_obfuscation.phpt] -2026-04-08T22:04:05.858980Z 01O TEST 116/647 [4/4 concurrent test workers running] PASS Test \datadog\appsec\v2\track_user_login_success id is not mandatory on user object [tmp/build_extension/tests/ext/track_user_login_success_04.phpt] -2026-04-08T22:04:05.858984Z 01O TEST 117/647 [4/4 concurrent test workers running] PASS Test exception replay [tmp/build_extension/tests/ext/live-debugger/exception-replay_001.phpt] -2026-04-08T22:04:05.858990Z 01O TEST 118/647 [4/4 concurrent test workers running] PASS DDTrace\hook_function prehook error is sandboxed [tmp/build_extension/tests/ext/sandbox/hook_function/prehook_error_01.phpt] -2026-04-08T22:04:05.859020Z 01O TEST 119/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Traced functions and methods are untraced with reset [tmp/build_extension/tests/ext/sandbox-regression/reset_configured_overrides.phpt] -2026-04-08T22:04:05.859034Z 01O TEST 120/647 [4/4 concurrent test workers running] -2026-04-08T22:04:06.359734Z 01O+ PASS Process tags are added to root span when enabled [tmp/build_extension/tests/ext/process_tags.phpt] -2026-04-08T22:04:06.359745Z 01O TEST 121/647 [4/4 concurrent test workers running] PASS Inherit some global metadata from parent span [tmp/build_extension/tests/ext/inherit_meta_from_parent.phpt] -2026-04-08T22:04:06.359751Z 01O TEST 122/647 [4/4 concurrent test workers running] PASS Die()'ing in the sandbox is properly caught [tmp/build_extension/tests/ext/sandbox/die_in_sandbox.phpt] -2026-04-08T22:04:06.359807Z 01O TEST 123/647 [4/4 concurrent test workers running] PASS Tracing Closures via install_hook() [tmp/build_extension/tests/ext/sandbox/install_hook/trace_closure.phpt] -2026-04-08T22:04:06.359816Z 01O TEST 124/647 [4/4 concurrent test workers running] PASS Test remote config request payload [tmp/build_extension/tests/ext/remote_config/rc_process_tags.phpt] -2026-04-08T22:04:06.359944Z 01O TEST 125/647 [4/4 concurrent test workers running] -2026-04-08T22:04:06.860537Z 01O+ PASS Verify the client ip is added when x-forwarded-for header is present. [tmp/build_extension/tests/ext/root_span_http_client_ip_custom_header.phpt] -2026-04-08T22:04:06.860547Z 01O TEST 126/647 [4/4 concurrent test workers running] PASS hook_method posthook is called with the correct scope (parent) [tmp/build_extension/tests/ext/sandbox/hook_method/posthook_scope_03.phpt] -2026-04-08T22:04:06.860553Z 01O TEST 127/647 [4/4 concurrent test workers running] PASS Resource is replaced by name if null-ish [tmp/build_extension/tests/ext/sandbox/span_resource_serialization.phpt] -2026-04-08T22:04:06.860560Z 01O TEST 128/647 [4/4 concurrent test workers running] PASS Test DDTrace\SpanData::$parent [tmp/build_extension/tests/ext/span_with_parent_property_access.phpt] -2026-04-08T22:04:06.860565Z 01O TEST 129/647 [4/4 concurrent test workers running] SKIP Execute __autoload() if present [tmp/build_extension/tests/ext/autoload-php-files/legacy_autoloader.phpt] reason: : __autoload was removed in PHP 8 -2026-04-08T22:04:06.860570Z 01O TEST 130/647 [4/4 concurrent test workers running] PASS Test that we don't leak in a set-up similar to CakePHP [tmp/build_extension/tests/ext/sandbox/cake_02.phpt] -2026-04-08T22:04:06.860579Z 01O TEST 131/647 [4/4 concurrent test workers running] PASS DDTrace\hook_method posthook is called at exit (shutdown handler) [tmp/build_extension/tests/ext/sandbox/hook_method/posthook_exit_02.phpt] -2026-04-08T22:04:06.860584Z 01O TEST 132/647 [4/4 concurrent test workers running] PASS _dd.p.ksr rounds small rates correctly at 6-decimal boundary [tmp/build_extension/tests/ext/priority_sampling/030-ksr-tag-rounding-boundary.phpt] -2026-04-08T22:04:06.860611Z 01O TEST 133/647 [4/4 concurrent test workers running] PASS E_USER_ERROR fatal errors are tracked from userland [tmp/build_extension/tests/ext/sandbox/fatal_errors_are_tracked_004.phpt] -2026-04-08T22:04:06.860619Z 01O TEST 134/647 [4/4 concurrent test workers running] -2026-04-08T22:04:07.361119Z 01O+ PASS Test internal functions are hooked within JIT [tmp/build_extension/tests/ext/sandbox/internal_hook_jit.phpt] -2026-04-08T22:04:07.361134Z 01O TEST 135/647 [4/4 concurrent test workers running] PASS Sample rate is not changed to 0 after first call during a minute when there is appsec upstream [tmp/build_extension/tests/ext/background-sender/agent_sampling-standalone-asm_03.phpt] -2026-04-08T22:04:07.361142Z 01O TEST 136/647 [4/4 concurrent test workers running] PASS Should create parent and child spans for error [tmp/build_extension/tests/ext/inferred_proxy/error_propagated.phpt] -2026-04-08T22:04:07.361196Z 01O TEST 137/647 [4/4 concurrent test workers running] PASS hook_method prehook is called with the correct scope (parent) [tmp/build_extension/tests/ext/sandbox/hook_method/prehook_scope_02.phpt] -2026-04-08T22:04:07.361328Z 01O TEST 138/647 [4/4 concurrent test workers running] -2026-04-08T22:04:07.861525Z 01O+ PASS Root span without query string in http.url [tmp/build_extension/tests/ext/root_span_url_without_query_params.phpt] -2026-04-08T22:04:07.861536Z 01O TEST 139/647 [4/4 concurrent test workers running] PASS Exceptions thrown in tracing closure and original call [tmp/build_extension/tests/ext/sandbox/exceptions_in_tracing_closure_and_original_call.phpt] -2026-04-08T22:04:07.861542Z 01O TEST 140/647 [4/4 concurrent test workers running] PASS Span Link serialization with non-null EG(exception) doesn't fail [tmp/build_extension/tests/ext/request-replayer/dd_trace_span_link_with_exception.phpt] -2026-04-08T22:04:07.861552Z 01O TEST 141/647 [4/4 concurrent test workers running] PASS Exceptions are handled for the correct catch block [tmp/build_extension/tests/ext/sandbox/exception_handled_for_correct_catch_block.phpt] -2026-04-08T22:04:07.861560Z 01O TEST 142/647 [4/4 concurrent test workers running] PASS Test baggage span tags wildcard [tmp/build_extension/tests/ext/distributed_tracing/baggage/baggage_span_tags_wildcard.phpt] -2026-04-08T22:04:07.861565Z 01O TEST 143/647 [4/4 concurrent test workers running] PASS URL with special characters in host part [tmp/build_extension/tests/ext/referrer_extraction_02.phpt] -2026-04-08T22:04:07.861575Z 01O TEST 144/647 [4/4 concurrent test workers running] PASS Ensure that if a user adds an internal function we already trace to traced internal functions list that it doesn't misbehave [tmp/build_extension/tests/ext/traced_internal_functions_override_02.phpt] -2026-04-08T22:04:07.861579Z 01O TEST 145/647 [4/4 concurrent test workers running] -2026-04-08T22:04:08.362247Z 01O+ PASS Tracing Closures via install_hook() [tmp/build_extension/tests/ext/sandbox/install_hook/trace_generator.phpt] -2026-04-08T22:04:08.362265Z 01O TEST 146/647 [4/4 concurrent test workers running] PASS overrideArguments() works with JIT (Issue #2174) [tmp/build_extension/tests/ext/sandbox/install_hook/override_argument_jit.phpt] -2026-04-08T22:04:08.362275Z 01O TEST 147/647 [4/4 concurrent test workers running] PASS [Prehook Regression] Span is dropped when tracing closure returns false [tmp/build_extension/tests/ext/sandbox-prehook/drop_spans.phpt] -2026-04-08T22:04:08.362286Z 01O TEST 148/647 [4/4 concurrent test workers running] PASS priority_sampling basic rule [tmp/build_extension/tests/ext/priority_sampling/004-rule-basic.phpt] -2026-04-08T22:04:08.362290Z 01O TEST 149/647 [4/4 concurrent test workers running] PASS [Prehook Regression] DDTrace\trace_function() can trace internal functions with internal spans [tmp/build_extension/tests/ext/sandbox-prehook/dd_trace_function_internal.phpt] -2026-04-08T22:04:08.362296Z 01O TEST 150/647 [4/4 concurrent test workers running] SKIP Test fiber observing with bailout [tmp/build_extension/tests/ext/fibers/fiber_observer_bailout.phpt] reason: : Fibers are a PHP 8.1+ feature -2026-04-08T22:04:08.362360Z 01O TEST 151/647 [4/4 concurrent test workers running] PASS Test get_memory_limit() returning correct values for default [tmp/build_extension/tests/ext/get_memory_limit_default.phpt] -2026-04-08T22:04:08.362373Z 01O TEST 152/647 [4/4 concurrent test workers running] PASS Ensure the ip header priority is followed [tmp/build_extension/tests/ext/extract_ip_addr_precedence.phpt] -2026-04-08T22:04:08.362379Z 01O TEST 153/647 [4/4 concurrent test workers running] -2026-04-08T22:04:08.862903Z 01O+ PASS Check that the library config files overloads ini settings [tmp/build_extension/tests/ext/library_config/fleet_config_overloads_ini.phpt] -2026-04-08T22:04:08.862936Z 01O TEST 154/647 [4/4 concurrent test workers running] PASS Invalid _dd.p.ts - It requires at least 2 bits instead of 1 [tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_asm_standalone_05.phpt] -2026-04-08T22:04:08.862943Z 01O TEST 155/647 [4/4 concurrent test workers running] PASS [Sandbox] Hook implementations of internal interface methods [tmp/build_extension/tests/ext/sandbox/interface_hook_internal.phpt] -2026-04-08T22:04:08.862966Z 01O TEST 156/647 [4/4 concurrent test workers running] PASS [Prehook Regression] Run sandbox closures for open spans on exit [tmp/build_extension/tests/ext/sandbox-prehook/close_on_exit.phpt] -2026-04-08T22:04:08.862981Z 01O TEST 157/647 [4/4 concurrent test workers running] PASS Exception in tracing closure gets logged [tmp/build_extension/tests/ext/sandbox/exception_error_log.phpt] -2026-04-08T22:04:08.862988Z 01O TEST 158/647 [4/4 concurrent test workers running] PASS Test dd_trace_check_memory_under_limit() returning correct values [tmp/build_extension/tests/ext/check_memory_under_limit_high_user_limit.phpt] -2026-04-08T22:04:08.863011Z 01O TEST 159/647 [4/4 concurrent test workers running] -2026-04-08T22:04:09.363401Z 01O+ PASS The sidecar properly handles invalid agent urls [tmp/build_extension/tests/ext/background-sender/sidecar_handles_invalid_agent_url.phpt] -2026-04-08T22:04:09.363412Z 01O TEST 160/647 [4/4 concurrent test workers running] PASS OTEL_PROPAGATORS fallback uses correct buffer when DD_TRACE_PROPAGATION_STYLE fails to decode [tmp/build_extension/tests/ext/otel_propagators_empty_dd_propagation_style.phpt] -2026-04-08T22:04:09.363419Z 01O TEST 161/647 [4/4 concurrent test workers running] PASS DDTrace\hook_function posthook exception is sandboxed [tmp/build_extension/tests/ext/sandbox/hook_function/posthook_exceptions_02.phpt] -2026-04-08T22:04:09.363425Z 01O TEST 162/647 [4/4 concurrent test workers running] -2026-04-08T22:04:09.864111Z 01O+ PASS Distributed tracing header tags propagate with curl_exec() [tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_propagate_tags.phpt] -2026-04-08T22:04:09.864121Z 01O TEST 163/647 [4/4 concurrent test workers running] PASS Negative duration for dropped spans [tmp/build_extension/tests/ext/flush-autofinish.phpt] -2026-04-08T22:04:09.864127Z 01O TEST 164/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Tracing closures do not run when extension is disabled [tmp/build_extension/tests/ext/sandbox-regression/extension_disabled.phpt] -2026-04-08T22:04:09.864173Z 01O TEST 165/647 [4/4 concurrent test workers running] PASS DDTrace\hook_method prehook exception is sandboxed [tmp/build_extension/tests/ext/sandbox/hook_method/prehook_exceptions_01.phpt] -2026-04-08T22:04:09.864180Z 01O TEST 166/647 [4/4 concurrent test workers running] PASS Functions that use return with yield are instrumented [tmp/build_extension/tests/ext/sandbox/generator_with_return.phpt] -2026-04-08T22:04:09.864186Z 01O TEST 167/647 [4/4 concurrent test workers running] -2026-04-08T22:04:10.364433Z 01O+ PASS Extended internal classes are hookable [tmp/build_extension/tests/ext/sandbox/hook_method/hook_extended_internal_class.phpt] -2026-04-08T22:04:10.364452Z 01O TEST 168/647 [4/4 concurrent test workers running] PASS priority_sampling rule with service match [tmp/build_extension/tests/ext/priority_sampling/007-rule-service.phpt] -2026-04-08T22:04:10.364461Z 01O TEST 169/647 [4/4 concurrent test workers running] PASS Do not fail when PHP code couldn't be loaded [tmp/build_extension/tests/ext/autoload-php-files/file_not_found.phpt] -2026-04-08T22:04:10.364479Z 01O TEST 170/647 [4/4 concurrent test workers running] PASS DDTrace\hook_method supports both hooks simultaneously [tmp/build_extension/tests/ext/sandbox/hook_method/01.phpt] -2026-04-08T22:04:10.364492Z 01O TEST 171/647 [4/4 concurrent test workers running] -2026-04-08T22:04:10.865112Z 01O+ PASS Distributed tracing headers propagate with curl_multi_exec() and headers set with curl_setopt() [tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_multi_exec_existing_headers_001.phpt] -2026-04-08T22:04:10.865130Z 01O TEST 172/647 [4/4 concurrent test workers running] PASS dd_trace_serialize_msgpack() with references [tmp/build_extension/tests/ext/dd_trace_serialize_msgpack_reference.phpt] -2026-04-08T22:04:10.865138Z 01O TEST 173/647 [4/4 concurrent test workers running] SKIP generator hooking works with JIT [tmp/build_extension/tests/ext/sandbox/install_hook/trace_generator_jit.phpt] reason: : JIT is only on PHP 8, and not stable enough on PHP 8.0 -2026-04-08T22:04:10.865145Z 01O TEST 174/647 [4/4 concurrent test workers running] -2026-04-08T22:04:11.365495Z 01O+ PASS Errors from userland will be flagged on span [tmp/build_extension/tests/ext/sandbox/errors_are_flagged_from_userland.phpt] -2026-04-08T22:04:11.365507Z 01O TEST 175/647 [4/4 concurrent test workers running] PASS Tracing Functions via install_hook() [tmp/build_extension/tests/ext/sandbox/install_hook/trace_function.phpt] -2026-04-08T22:04:11.365514Z 01O TEST 176/647 [4/4 concurrent test workers running] PASS priority_sampling rule with name and service reject [tmp/build_extension/tests/ext/priority_sampling/010-rule-name-service-reject.phpt] -2026-04-08T22:04:11.365522Z 01O TEST 177/647 [4/4 concurrent test workers running] PASS Calling dd_init.php is confined to open_basedir settings [tmp/build_extension/tests/ext/autoload-php-files/dd_init_open_basedir.phpt] -2026-04-08T22:04:11.365526Z 01O TEST 178/647 [4/4 concurrent test workers running] -2026-04-08T22:04:11.866158Z 01O+ PASS _dd.p.ksr propagated tag is NOT set for manual sampling [tmp/build_extension/tests/ext/priority_sampling/027-ksr-tag-not-set-manual.phpt] -2026-04-08T22:04:11.866218Z 01O TEST 179/647 [4/4 concurrent test workers running] PASS Client IP should not be collected if ini dd_trace.client_ip_header_disabled is set to true [tmp/build_extension/tests/ext/ip_collection_05.phpt] -2026-04-08T22:04:11.866227Z 01O TEST 180/647 [4/4 concurrent test workers running] PASS Curl multi objects release order does not crash on shutdown [tmp/build_extension/tests/ext/integrations/curl/curl_release_on_shutdown.phpt] -2026-04-08T22:04:11.866237Z 01O TEST 181/647 [4/4 concurrent test workers running] PASS Test that we don't have a sigsegv in a set-up similar to CakePHP [tmp/build_extension/tests/ext/sandbox/cake_01.phpt] -2026-04-08T22:04:11.866242Z 01O TEST 182/647 [4/4 concurrent test workers running] PASS Send logs from integration [tmp/build_extension/tests/ext/telemetry/integration_runtime_error.phpt] -2026-04-08T22:04:11.866247Z 01O TEST 183/647 [4/4 concurrent test workers running] -2026-04-08T22:04:12.366867Z 01O+ PASS Span properties defaults to values if not explicitly set (methods) [tmp/build_extension/tests/ext/sandbox/default_span_properties_method.phpt] -2026-04-08T22:04:12.366881Z 01O TEST 184/647 [4/4 concurrent test workers running] PASS Invalid sidecar connection mode falls back to auto [tmp/build_extension/tests/ext/sidecar_connection_mode_invalid.phpt] -2026-04-08T22:04:12.366889Z 01O TEST 185/647 [4/4 concurrent test workers running] PASS Using a wrongly formatted DD_TRACE_PEER_SERVICE_MAPPING doesn't break the tracer [tmp/build_extension/tests/ext/peer_service_wrong_values.phpt] -2026-04-08T22:04:12.366900Z 01O TEST 186/647 [4/4 concurrent test workers running] PASS Do not throw exceptions when veryfying if class/method and function exists. [tmp/build_extension/tests/ext/do_not_check_if_class_or_function_exists_by_default.phpt] -2026-04-08T22:04:12.366906Z 01O TEST 187/647 [4/4 concurrent test workers running] PASS Short running nested forks [tmp/build_extension/tests/ext/pcntl/pcntl_fork_short_running_nested.phpt] -2026-04-08T22:04:12.366911Z 01O TEST 188/647 [4/4 concurrent test workers running] -2026-04-08T22:04:12.867527Z 01O+ PASS Settings 'datadog.log_backtrace' and 'datadog.crashtracking_enabled' are mutually exclusive [tmp/build_extension/tests/ext/crashtracker_and_backtrace_are_mutually_exclusive.phpt] -2026-04-08T22:04:12.867542Z 01O TEST 189/647 [4/4 concurrent test workers running] PASS Test baggage span tags empty config [tmp/build_extension/tests/ext/distributed_tracing/baggage/baggage_span_tags_empty.phpt] -2026-04-08T22:04:12.867548Z 01O TEST 190/647 [4/4 concurrent test workers running] PASS Test the output of \DDTrace\current_context [tmp/build_extension/tests/ext/dd_trace_current_context.phpt] -2026-04-08T22:04:12.867558Z 01O TEST 191/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Destructor is called when object goes out of scope [tmp/build_extension/tests/ext/sandbox-regression/destructor_called_when_this_gets_out_of_scope.phpt] -2026-04-08T22:04:12.867563Z 01O TEST 192/647 [4/4 concurrent test workers running] PASS Test OpenTelemetry config remapping [tmp/build_extension/tests/ext/otel_config_remapping.phpt] -2026-04-08T22:04:12.867628Z 01O TEST 193/647 [4/4 concurrent test workers running] PASS When APM tracing is disabled, if not asm event, no tags are sent [tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_existing_headers_006.phpt] -2026-04-08T22:04:12.867638Z 01O TEST 194/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Override traced function from within itself [tmp/build_extension/tests/ext/sandbox-regression/used_dispatch_should_not_free.phpt] -2026-04-08T22:04:12.867645Z 01O TEST 195/647 [4/4 concurrent test workers running] -2026-04-08T22:04:13.368349Z 01O+ PASS DDTrace\hook_method prehook is passed the correct args [tmp/build_extension/tests/ext/sandbox/hook_method/prehook_03.phpt] -2026-04-08T22:04:13.368360Z 01O TEST 196/647 [4/4 concurrent test workers running] -2026-04-08T22:04:13.868928Z 01O+ -2026-04-08T22:04:13.868938Z 01O ========DIFF======== -2026-04-08T22:04:13.868942Z 01O 001+ ================================================================= -2026-04-08T22:04:13.868950Z 01O 002+ ==4224==ERROR: AddressSanitizer: stack-use-after-return on address 0x7485c9c21c58 at pc 0x574560ce8ae1 bp 0x7ffd2d7bba00 sp 0x7ffd2d7bb9f8 -2026-04-08T22:04:13.868953Z 01O 003+ READ of size 8 at 0x7485c9c21c58 thread T0 -2026-04-08T22:04:13.868958Z 01O 001- [ddtrace] [warning] [%d] Error raised in ddtrace's integration autoloader for ddtrace\test\testsandboxedintegration: Fatal! in %sdeferred_load_fatal.php on line %d -2026-04-08T22:04:13.868965Z 01O 002- PUBLIC STATIC METHOD -2026-04-08T22:04:13.868969Z 01O 003- PUBLIC STATIC METHOD -2026-04-08T22:04:13.868973Z 01O 004+ #0 0x574560ce8ae0 in zend_observer_is_skipped_frame /usr/local/src/php/Zend/zend_observer.c:181:38 -2026-04-08T22:04:13.868982Z 01O 005+ #1 0x574560ce89fb in zend_observer_fcall_end /usr/local/src/php/Zend/zend_observer.c:221:16 -2026-04-08T22:04:13.868985Z 01O 006+ #2 0x574560ce8e62 in zend_observer_fcall_end_all /usr/local/src/php/Zend/zend_observer.c:233:4 -2026-04-08T22:04:13.868990Z 01O 007+ #3 0x7485c5ec9970 in zai_reset_observed_frame_post_bailout /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/sandbox/call.c:92:9 -2026-04-08T22:04:13.869012Z 01O 008+ #4 0x7485c5ec9ba7 in zai_sandbox_call /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/sandbox/call.c:124:9 -2026-04-08T22:04:13.869028Z 01O 009+ #5 0x7485c5fa1083 in dd_invoke_integration_loader_and_unhook_posthook /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations/integrations.c:125:27 -2026-04-08T22:04:13.869036Z 01O 010+ #6 0x7485c5fa06cf in dd_invoke_integration_loader_and_unhook_prehook /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/integrations/integrations.c:187:5 -2026-04-08T22:04:13.869043Z 01O 011+ #7 0x7485c5ebcaff in zai_hook_continue /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/hook/hook.c:1053:14 -2026-04-08T22:04:13.869048Z 01O 012+ #8 0x7485c5e99b2c in zai_interceptor_observer_begin_handler /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/interceptor/php8/interceptor.c:164:9 -2026-04-08T22:04:13.869053Z 01O 013+ #9 0x574560ce8455 in _zend_observe_fcall_begin /usr/local/src/php/Zend/zend_observer.c:163:3 -2026-04-08T22:04:13.869060Z 01O 014+ #10 0x574560ce8590 in zend_observer_fcall_begin /usr/local/src/php/Zend/zend_observer.c:176:3 -2026-04-08T22:04:13.869063Z 01O 015+ #11 0x574560b887ef in ZEND_DO_UCALL_SPEC_OBSERVER_HANDLER /usr/local/src/php/Zend/zend_vm_execute.h:1403:2 -2026-04-08T22:04:13.869122Z 01O 016+ #12 0x574560a0ff63 in execute_ex /usr/local/src/php/Zend/zend_vm_execute.h:54970:7 -2026-04-08T22:04:13.869128Z 01O 017+ #13 0x574560a10c8c in zend_execute /usr/local/src/php/Zend/zend_vm_execute.h:59523:2 -2026-04-08T22:04:13.869156Z 01O 018+ #14 0x574560981181 in zend_execute_scripts /usr/local/src/php/Zend/zend.c:1694:4 -2026-04-08T22:04:13.869168Z 01O 019+ #15 0x57456076da21 in php_execute_script /usr/local/src/php/main/main.c:2546:13 -2026-04-08T22:04:13.869178Z 01O 020+ #16 0x574560ced28f in do_cli /usr/local/src/php/sapi/cli/php_cli.c:949:5 -2026-04-08T22:04:13.869196Z 01O 021+ #17 0x574560ceb2c5 in main /usr/local/src/php/sapi/cli/php_cli.c:1337:18 -2026-04-08T22:04:13.869207Z 01O 022+ #18 0x7485cc74c249 in __libc_start_call_main csu/../sysdeps/nptl/libc_start_call_main.h:58:16 -2026-04-08T22:04:13.869214Z 01O 023+ #19 0x7485cc74c304 in __libc_start_main csu/../csu/libc-start.c:360:3 -2026-04-08T22:04:13.869225Z 01O 024+ #20 0x57455f6240f0 in _start (/opt/php/debug-zts-asan/bin/php+0x10130f0) (BuildId: ad7c0b542321b312675454bef26674568a50848a) -2026-04-08T22:04:13.869234Z 01O 025+  -2026-04-08T22:04:13.869239Z 01O 026+ Address 0x7485c9c21c58 is located in stack of thread T0 at offset 88 in frame -2026-04-08T22:04:13.869255Z 01O 027+ #0 0x57456093383f in zend_call_function /usr/local/src/php/Zend/zend_execute_API.c:664 -2026-04-08T22:04:13.869272Z 01O 028+  -2026-04-08T22:04:13.869277Z 01O 029+ This frame has 6 object(s): -2026-04-08T22:04:13.869289Z 01O 030+ [32, 40) 'call' (line 666) -2026-04-08T22:04:13.869298Z 01O 031+ [64, 144) 'dummy_execute_data' (line 666) <== Memory access at offset 88 is inside this variable -2026-04-08T22:04:13.869303Z 01O 032+ [176, 208) 'fci_cache_local' (line 667) -2026-04-08T22:04:13.869318Z 01O 033+ [240, 248) 'error' (line 709) -2026-04-08T22:04:13.869327Z 01O 034+ [272, 276) 'arg_num' (line 808) -2026-04-08T22:04:13.869332Z 01O 035+ [288, 304) 'cache_slot' (line 814) -2026-04-08T22:04:13.869353Z 01O 036+ HINT: this may be a false positive if your program uses some custom stack unwind mechanism, swapcontext or vfork -2026-04-08T22:04:13.869362Z 01O 037+ (longjmp and C++ exceptions *are* supported) -2026-04-08T22:04:13.869369Z 01O 038+ SUMMARY: AddressSanitizer: stack-use-after-return /usr/local/src/php/Zend/zend_observer.c:181:38 in zend_observer_is_skipped_frame -2026-04-08T22:04:13.869380Z 01O 039+ Shadow bytes around the buggy address: -2026-04-08T22:04:13.869388Z 01O 040+ 0x7485c9c21980: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 -2026-04-08T22:04:13.869393Z 01O 041+ 0x7485c9c21a00: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 -2026-04-08T22:04:13.869406Z 01O 042+ 0x7485c9c21a80: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 -2026-04-08T22:04:13.869418Z 01O 043+ 0x7485c9c21b00: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 -2026-04-08T22:04:13.869423Z 01O 044+ 0x7485c9c21b80: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 -2026-04-08T22:04:13.869429Z 01O 045+ =>0x7485c9c21c00: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5[f5]f5 f5 f5 f5 -2026-04-08T22:04:13.869432Z 01O 046+ 0x7485c9c21c80: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 -2026-04-08T22:04:13.869436Z 01O 047+ 0x7485c9c21d00: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 -2026-04-08T22:04:13.869441Z 01O 048+ 0x7485c9c21d80: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 -2026-04-08T22:04:13.869444Z 01O 049+ 0x7485c9c21e00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 -2026-04-08T22:04:13.869448Z 01O 050+ 0x7485c9c21e80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 -2026-04-08T22:04:13.869454Z 01O 051+ Shadow byte legend (one shadow byte represents 8 application bytes): -2026-04-08T22:04:13.869488Z 01O 052+ Addressable: 00 -2026-04-08T22:04:13.869493Z 01O 053+ Partially addressable: 01 02 03 04 05 06 07  -2026-04-08T22:04:13.869505Z 01O 054+ Heap left redzone: fa -2026-04-08T22:04:13.869515Z 01O 055+ Freed heap region: fd -2026-04-08T22:04:13.869520Z 01O 056+ Stack left redzone: f1 -2026-04-08T22:04:13.869526Z 01O 057+ Stack mid redzone: f2 -2026-04-08T22:04:13.869531Z 01O 058+ Stack right redzone: f3 -2026-04-08T22:04:13.869534Z 01O 059+ Stack after return: f5 -2026-04-08T22:04:13.869540Z 01O 060+ Stack use after scope: f8 -2026-04-08T22:04:13.869542Z 01O 061+ Global redzone: f9 -2026-04-08T22:04:13.869548Z 01O 062+ Global init order: f6 -2026-04-08T22:04:13.869553Z 01O 063+ Poisoned by user: f7 -2026-04-08T22:04:13.869555Z 01O 064+ Container overflow: fc -2026-04-08T22:04:13.869558Z 01O 065+ Array cookie: ac -2026-04-08T22:04:13.869563Z 01O 066+ Intra object redzone: bb -2026-04-08T22:04:13.869566Z 01O 067+ ASan internal: fe -2026-04-08T22:04:13.869570Z 01O 068+ Left alloca redzone: ca -2026-04-08T22:04:13.869575Z 01O 069+ Right alloca redzone: cb -2026-04-08T22:04:13.869578Z 01O 070+ ==4224==ABORTING -2026-04-08T22:04:13.869581Z 01O 071+ Aborted -2026-04-08T22:04:13.869593Z 01O 072+  -2026-04-08T22:04:13.869602Z 01O 073+ Termsig=6 -2026-04-08T22:04:13.869606Z 01O ========DONE======== -2026-04-08T22:04:13.869624Z 01O FAIL deferred loading doesn't crash if integration loading fails [tmp/build_extension/tests/ext/sandbox/deferred_load_fatal.phpt] -2026-04-08T22:04:13.869636Z 01O TEST 197/647 [4/4 concurrent test workers running] PASS HTTP Agent headers are ignored from userland [tmp/build_extension/tests/ext/background-sender/agent_headers_ignore_userland.phpt] -2026-04-08T22:04:13.869644Z 01O TEST 198/647 [4/4 concurrent test workers running] PASS Variadic arguments are passed to tracing closure for internal functions [tmp/build_extension/tests/ext/sandbox/variadic_args_internal.phpt] -2026-04-08T22:04:13.869653Z 01O TEST 199/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Trace private method [tmp/build_extension/tests/ext/sandbox-regression/private_method_hook.phpt] -2026-04-08T22:04:13.869659Z 01O TEST 200/647 [4/4 concurrent test workers running] PASS Distributed tracing headers propagate via file_get_contents() with pre-existing headers as array. [tmp/build_extension/tests/ext/integrations/http_streams/distributed_tracing_http_streams_with_headers_array.phpt] -2026-04-08T22:04:13.869665Z 01O TEST 201/647 [4/4 concurrent test workers running] PASS hook_method prehook should have access only to public members [tmp/build_extension/tests/ext/sandbox/hook_method/prehook_access_01.phpt] -2026-04-08T22:04:13.869673Z 01O TEST 202/647 [4/4 concurrent test workers running] PASS DDTrace\hook_function prehook exception is sandboxed (debug internal) [tmp/build_extension/tests/ext/sandbox/hook_function/prehook_exceptions_04.phpt] -2026-04-08T22:04:13.869677Z 01O TEST 203/647 [4/4 concurrent test workers running] -2026-04-08T22:04:14.369705Z 01O+ PASS Basic Git Metadata Injection from valid .git files (Repository URL & Commit Sha) [tmp/build_extension/tests/ext/integrations/source_code/001/git_metadata_injection_from_valid_files.phpt] -2026-04-08T22:04:14.369765Z 01O TEST 204/647 [4/4 concurrent test workers running] PASS priority_sampling rule with match on non-root spans [tmp/build_extension/tests/ext/priority_sampling/020-rule-nonroot.phpt] -2026-04-08T22:04:14.369772Z 01O TEST 205/647 [4/4 concurrent test workers running] PASS Test onClose SpanData handler [tmp/build_extension/tests/ext/span_on_close.phpt] -2026-04-08T22:04:14.369781Z 01O TEST 206/647 [4/4 concurrent test workers running] PASS Startup logging is enabled by default [tmp/build_extension/tests/ext/startup_logging.phpt] -2026-04-08T22:04:14.369785Z 01O TEST 207/647 [4/4 concurrent test workers running] PASS DDTrace\hook_method posthook is passed the correct args with inheritance [tmp/build_extension/tests/ext/sandbox/hook_method/posthook_04.phpt] -2026-04-08T22:04:14.369790Z 01O TEST 208/647 [4/4 concurrent test workers running] -2026-04-08T22:04:24.882125Z 01O+ PASS Read telemetry via composer [tmp/build_extension/tests/ext/telemetry/composer.phpt] -2026-04-08T22:04:24.882157Z 01O TEST 209/647 [4/4 concurrent test workers running] PASS DDTrace\hook_method prehook does not mess up span ids [tmp/build_extension/tests/ext/sandbox/hook_method/prehook_span_ids_01.phpt] -2026-04-08T22:04:24.882164Z 01O TEST 210/647 [4/4 concurrent test workers running] PASS dd_trace_serialize_msgpack() properly handles span_id, trace_id and parent_id, but only outside of nested arrays [tmp/build_extension/tests/ext/dd_trace_serialize_msgpack_id_in_meta.phpt] -2026-04-08T22:04:24.882175Z 01O TEST 211/647 [4/4 concurrent test workers running] PASS DD_APPSEC_SCA_ENABLED is set by INI [tmp/build_extension/tests/ext/appsec/sca_flag_is_sent_05.phpt] -2026-04-08T22:04:24.882188Z 01O TEST 212/647 [4/4 concurrent test workers running] PASS Remap http.status_code metric to http.status_code meta - OTel HTTP Semantic Convention < 1.21.0 [tmp/build_extension/tests/ext/otel_http_status_code_remapping.phpt] -2026-04-08T22:04:24.882195Z 01O TEST 213/647 [4/4 concurrent test workers running] PASS hook_function posthook should have access only to public members [tmp/build_extension/tests/ext/sandbox/hook_function/prehook_access_01.phpt] -2026-04-08T22:04:24.882202Z 01O TEST 214/647 [4/4 concurrent test workers running] PASS DDTrace\hook_function posthook is passed the correct args (variadic) [tmp/build_extension/tests/ext/sandbox/hook_function/posthook_02.phpt] -2026-04-08T22:04:24.882323Z 01O TEST 215/647 [4/4 concurrent test workers running] -2026-04-08T22:04:25.382503Z 01O+ PASS Gracefully handle out-of-sync spans from traced function [user] [tmp/build_extension/tests/ext/sandbox/spans_out_of_sync_03.phpt] -2026-04-08T22:04:25.382516Z 01O TEST 216/647 [4/4 concurrent test workers running] PASS Test dynamic config update [tmp/build_extension/tests/ext/remote_config/dynamic_config_update.phpt] -2026-04-08T22:04:25.382523Z 01O TEST 217/647 [4/4 concurrent test workers running] PASS Distributed tracing headers do not propagate with curl_multi_exec() after dd_trace_disable_in_request() [tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_multi_exec_disable.phpt] -2026-04-08T22:04:25.382551Z 01O TEST 218/647 [4/4 concurrent test workers running] PASS Test creating a switching span stacks [tmp/build_extension/tests/ext/span_stack/span_stack_swap.phpt] -2026-04-08T22:04:25.382616Z 01O TEST 219/647 [4/4 concurrent test workers running] PASS Extract client IP address (ip header set) [tmp/build_extension/tests/ext/extract_ip_addr_header_env.phpt] -2026-04-08T22:04:25.382624Z 01O TEST 220/647 [4/4 concurrent test workers running] PASS priority_sampling rule with tag match [tmp/build_extension/tests/ext/priority_sampling/016-rule-tag.phpt] -2026-04-08T22:04:25.382648Z 01O TEST 221/647 [4/4 concurrent test workers running] PASS Empty post request [tmp/build_extension/tests/ext/root_span_url_with_post_no_param.phpt] -2026-04-08T22:04:25.382654Z 01O TEST 222/647 [4/4 concurrent test workers running] PASS Userland root spans are automatically flushed when auto-flushing enabled [tmp/build_extension/tests/ext/sandbox/auto_flush_userland_root_span.phpt] -2026-04-08T22:04:25.382662Z 01O TEST 223/647 [4/4 concurrent test workers running] PASS DogStatsD client crash reproduction with unreachable Unix socket [tmp/build_extension/tests/ext/dogstatsd/metrics_over_uds_unreachable.phpt] -2026-04-08T22:04:25.382672Z 01O TEST 224/647 [4/4 concurrent test workers running] PASS DDTrace\hook_function supports both hooks simultaneously [tmp/build_extension/tests/ext/sandbox/hook_function/01.phpt] -2026-04-08T22:04:25.382676Z 01O TEST 225/647 [4/4 concurrent test workers running] -2026-04-08T22:04:25.883110Z 01O+ PASS DogStatsD client crash reproduction with unreachable UDP socket [tmp/build_extension/tests/ext/dogstatsd/metrics_over_udp_unreachable.phpt] -2026-04-08T22:04:25.883122Z 01O TEST 226/647 [4/4 concurrent test workers running] PASS Distributed tracing headers contain properly escaped values [tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_invalid_tags.phpt] -2026-04-08T22:04:25.883128Z 01O TEST 227/647 [4/4 concurrent test workers running] PASS DDTrace\hook_method posthook is passed the correct retval [tmp/build_extension/tests/ext/sandbox/hook_method/posthook_05.phpt] -2026-04-08T22:04:25.883135Z 01O TEST 228/647 [4/4 concurrent test workers running] PASS Transmit distributed header information to spans [tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_inherit.phpt] -2026-04-08T22:04:25.883139Z 01O TEST 229/647 [4/4 concurrent test workers running] PASS Ensure the hook limit is not exceeded [tmp/build_extension/tests/ext/sandbox/hook_limit.phpt] -2026-04-08T22:04:25.883145Z 01O TEST 230/647 [4/4 concurrent test workers running] PASS Span properties defaults to values if not explicitly set (functions) [tmp/build_extension/tests/ext/sandbox/default_span_properties.phpt] -2026-04-08T22:04:25.883167Z 01O TEST 231/647 [4/4 concurrent test workers running] PASS Change the env and version INIs at runtime [tmp/build_extension/tests/ext/runtime_ini_env_version_change.phpt] -2026-04-08T22:04:25.883185Z 01O TEST 232/647 [4/4 concurrent test workers running] PASS HTTP client status code error configuration and helper functions [tmp/build_extension/tests/ext/error_status_configuration/http_error_status_client_configuration.phpt] -2026-04-08T22:04:25.883247Z 01O TEST 233/647 [4/4 concurrent test workers running] PASS The Fargate 1.4+ container ID is sent via HTTP headers to the Agent [tmp/build_extension/tests/ext/background-sender/agent_headers_container_id_fargate.phpt] -2026-04-08T22:04:25.883256Z 01O TEST 234/647 [4/4 concurrent test workers running] PASS priority_sampling preset decision retained [tmp/build_extension/tests/ext/priority_sampling/011-preset.phpt] -2026-04-08T22:04:25.883267Z 01O TEST 235/647 [4/4 concurrent test workers running] -2026-04-08T22:04:26.383907Z 01O+ PASS Set DDTrace\start_span() properties [tmp/build_extension/tests/ext/start_span_with_all_properties.phpt] -2026-04-08T22:04:26.383918Z 01O TEST 236/647 [4/4 concurrent test workers running] PASS Post fields parameters should be retrieved and redacted if needed v2 [tmp/build_extension/tests/ext/root_span_url_with_post_simple_whitelist.phpt] -2026-04-08T22:04:26.383924Z 01O TEST 237/647 [4/4 concurrent test workers running] PASS Value of internal span's peerServiceSource is not added to the serialized version of the span when not set [tmp/build_extension/tests/ext/peer_service_sources_not_serialized_when_unset.phpt] -2026-04-08T22:04:26.383932Z 01O TEST 238/647 [4/4 concurrent test workers running] PASS DDTrace\hook_method posthook does not mess up span ids [tmp/build_extension/tests/ext/sandbox/hook_method/posthook_span_ids_01.phpt] -2026-04-08T22:04:26.383937Z 01O TEST 239/647 [4/4 concurrent test workers running] PASS [Prehook Regression] DDTrace\trace_function() can trace userland functions with internal spans [tmp/build_extension/tests/ext/sandbox-prehook/dd_trace_function_userland.phpt] -2026-04-08T22:04:26.383943Z 01O TEST 240/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Methods and functions are traced before definedx [tmp/build_extension/tests/ext/sandbox-regression/trace_method_or_function_that_will_exist_later.phpt] -2026-04-08T22:04:26.383952Z 01O TEST 241/647 [4/4 concurrent test workers running] PASS Distributed tracing header tags propagate asm events with curl_exec() [tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_propagate_asm_event.phpt] -2026-04-08T22:04:26.383958Z 01O TEST 242/647 [4/4 concurrent test workers running] PASS Bailout during hook END should not cause double-clear of span (internal function) [tmp/build_extension/tests/ext/bailout_double_hook_clear.phpt] -2026-04-08T22:04:26.383964Z 01O TEST 243/647 [4/4 concurrent test workers running] PASS Value of internal span's peerServiceSource is not added to the serialized version of the span when set [tmp/build_extension/tests/ext/peer_service_sources_not_serialized_when_set.phpt] -2026-04-08T22:04:26.383971Z 01O TEST 244/647 [4/4 concurrent test workers running] PASS Sampling priority is kept from distributed when asm upstream and asm standalone enabled [tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_asm_standalone_02.phpt] -2026-04-08T22:04:26.383976Z 01O TEST 245/647 [4/4 concurrent test workers running] PASS Transmit distributed header information to spans via single B3 header [tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_inherit_b3-single-span.phpt] -2026-04-08T22:04:26.384023Z 01O TEST 246/647 [4/4 concurrent test workers running] PASS Exceptions from user error handler are tracked for instrumented internal functions [tmp/build_extension/tests/ext/sandbox/exception_from_user_error_handler_internal.phpt] -2026-04-08T22:04:26.384033Z 01O TEST 247/647 [4/4 concurrent test workers running] PASS priority_sampling rule with tag reject [tmp/build_extension/tests/ext/priority_sampling/017-rule-tag-reject.phpt] -2026-04-08T22:04:26.384045Z 01O TEST 248/647 [4/4 concurrent test workers running] -2026-04-08T22:04:26.884524Z 01O+ PASS [Sandbox] Hook implementations of abstract trait methods are not supported [tmp/build_extension/tests/ext/sandbox/abstract_trait_hook_inherit.phpt] -2026-04-08T22:04:26.884537Z 01O TEST 249/647 [4/4 concurrent test workers running] PASS Reset distributed tracing context on request init [tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_reset_context_on_init.phpt] -2026-04-08T22:04:26.884544Z 01O TEST 250/647 [4/4 concurrent test workers running] PASS Test dropping spans from multiple trace hooks [tmp/build_extension/tests/ext/sandbox/hook_function/dropping_trace_hook.phpt] -2026-04-08T22:04:26.884552Z 01O TEST 251/647 [4/4 concurrent test workers running] PASS Sidecar should be disabled when telemetry is disabled [tmp/build_extension/tests/ext/sidecar_disabled_when_telemetry_disabled.phpt] -2026-04-08T22:04:26.884558Z 01O TEST 252/647 [4/4 concurrent test workers running] PASS Installing a live debugger metric probe [tmp/build_extension/tests/ext/live-debugger/debugger_metric_probe.phpt] -2026-04-08T22:04:26.884563Z 01O TEST 253/647 [4/4 concurrent test workers running] -2026-04-08T22:04:27.385232Z 01O+ PASS remove_hook() with class argument [tmp/build_extension/tests/ext/sandbox/install_hook/exclude_inherited_hook.phpt] -2026-04-08T22:04:27.385245Z 01O TEST 254/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Trace deeply-nested function calls (PHP 7) [tmp/build_extension/tests/ext/sandbox-regression/very_nested_functions.phpt] -2026-04-08T22:04:27.385251Z 01O TEST 255/647 [4/4 concurrent test workers running] PASS DDTrace\hook_method prehook error is sandboxed [tmp/build_extension/tests/ext/sandbox/hook_method/prehook_error_01.phpt] -2026-04-08T22:04:27.385270Z 01O TEST 256/647 [4/4 concurrent test workers running] PASS Errors in ddtrace autoloader do not affect error_get_last() [tmp/build_extension/tests/ext/autoload-php-files/error_get_last_is_unaffected.phpt] -2026-04-08T22:04:27.385276Z 01O TEST 257/647 [4/4 concurrent test workers running] PASS Test tracing generators within objects [tmp/build_extension/tests/ext/sandbox/generator_in_object.phpt] -2026-04-08T22:04:27.385281Z 01O TEST 258/647 [4/4 concurrent test workers running] -2026-04-08T22:04:27.885970Z 01O+ PASS HTTP headers are sent to the Agent from the background sender [tmp/build_extension/tests/ext/background-sender/agent_headers.phpt] -2026-04-08T22:04:27.885989Z 01O TEST 259/647 [4/4 concurrent test workers running] -2026-04-08T22:04:28.386455Z 01O+ -2026-04-08T22:04:28.386466Z 01O ========DIFF======== -2026-04-08T22:04:28.386471Z 01O foo -2026-04-08T22:04:28.386478Z 01O 002+ ================================================================= -2026-04-08T22:04:28.386535Z 01O 003+ ==4588==ERROR: AddressSanitizer: stack-use-after-return on address 0x781d21622858 at pc 0x636c3e4c1cf1 bp 0x7ffcb85e9820 sp 0x7ffcb85e9818 -2026-04-08T22:04:28.386541Z 01O 004+ READ of size 8 at 0x781d21622858 thread T0 -2026-04-08T22:04:28.386562Z 01O 005+ #0 0x636c3e4c1cf0 in zend_observer_is_skipped_frame /usr/local/src/php/Zend/zend_observer.c:181:38 -2026-04-08T22:04:28.386575Z 01O 006+ #1 0x636c3e4c1c0b in zend_observer_fcall_end /usr/local/src/php/Zend/zend_observer.c:221:16 -2026-04-08T22:04:28.386583Z 01O 002- [ddtrace] [warning] [%d] Error raised in ddtrace's closure defined at %s:%d for foo(): Fatal in %s on line %d -2026-04-08T22:04:28.386604Z 01O 003- int(200) -2026-04-08T22:04:28.386616Z 01O 004- foo -2026-04-08T22:04:28.386622Z 01O 005- [ddtrace] [warning] [%d] Error raised in ddtrace's closure defined at %s:%d for foo(): Fatal in %s on line %d -2026-04-08T22:04:28.386635Z 01O 006- [ddtrace] [info] [%d] Flushing trace of size %s -2026-04-08T22:04:28.386645Z 01O 007+ #2 0x636c3e4c2072 in zend_observer_fcall_end_all /usr/local/src/php/Zend/zend_observer.c:233:4 -2026-04-08T22:04:28.386652Z 01O 008+ #3 0x781d1d6c9970 in zai_reset_observed_frame_post_bailout /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/sandbox/call.c:92:9 -2026-04-08T22:04:28.386665Z 01O 009+ #4 0x781d1d6c9ba7 in zai_sandbox_call /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/sandbox/call.c:124:9 -2026-04-08T22:04:28.386677Z 01O 010+ #5 0x781d1d8345a4 in dd_uhook_call /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/hook/uhook_legacy.c:86:20 -2026-04-08T22:04:28.386685Z 01O 011+ #6 0x781d1d8329fd in dd_uhook_end /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/hook/uhook_legacy.c:239:21 -2026-04-08T22:04:28.386702Z 01O 012+ #7 0x781d1d6bd3f2 in zai_hook_finish /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/hook/hook.c:1116:13 -2026-04-08T22:04:28.386711Z 01O 013+ #8 0x781d1d69c42b in zai_hook_safe_finish /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/interceptor/php8/interceptor.c:56:9 -2026-04-08T22:04:28.386719Z 01O 014+ #9 0x781d1d698c1e in zai_interceptor_observer_end_handler /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/interceptor/php8/interceptor.c:176:9 -2026-04-08T22:04:28.386727Z 01O 015+ #10 0x636c3e4c1a98 in zend_observer_fcall_end /usr/local/src/php/Zend/zend_observer.c:213:3 -2026-04-08T22:04:28.386730Z 01O 016+ #11 0x636c3e2be626 in ZEND_RETURN_SPEC_OBSERVER_HANDLER /usr/local/src/php/Zend/zend_vm_execute.h:4202:2 -2026-04-08T22:04:28.386734Z 01O 017+ #12 0x636c3e1e9173 in execute_ex /usr/local/src/php/Zend/zend_vm_execute.h:54970:7 -2026-04-08T22:04:28.386740Z 01O 018+ #13 0x636c3e1e9e9c in zend_execute /usr/local/src/php/Zend/zend_vm_execute.h:59523:2 -2026-04-08T22:04:28.386743Z 01O 019+ #14 0x636c3e15a391 in zend_execute_scripts /usr/local/src/php/Zend/zend.c:1694:4 -2026-04-08T22:04:28.386747Z 01O 020+ #15 0x636c3df46c31 in php_execute_script /usr/local/src/php/main/main.c:2546:13 -2026-04-08T22:04:28.386761Z 01O 021+ #16 0x636c3e4d376b in main /usr/local/src/php/sapi/cgi/cgi_main.c:2532:6 -2026-04-08T22:04:28.386764Z 01O 022+ #17 0x781d2408f249 in __libc_start_call_main csu/../sysdeps/nptl/libc_start_call_main.h:58:16 -2026-04-08T22:04:28.386770Z 01O 023+ #18 0x781d2408f304 in __libc_start_main csu/../csu/libc-start.c:360:3 -2026-04-08T22:04:28.386773Z 01O 024+ #19 0x636c3cdfd300 in _start (/opt/php/debug-zts-asan/bin/php-cgi+0xfc2300) (BuildId: 0f382f08e5acac27457726ba425a15a8c407cbdc) -2026-04-08T22:04:28.386794Z 01O 025+  -2026-04-08T22:04:28.386799Z 01O 026+ Address 0x781d21622858 is located in stack of thread T0 at offset 88 in frame -2026-04-08T22:04:28.386816Z 01O 027+ #0 0x636c3e10ca4f in zend_call_function /usr/local/src/php/Zend/zend_execute_API.c:664 -2026-04-08T22:04:28.386838Z 01O 028+  -2026-04-08T22:04:28.386848Z 01O 029+ This frame has 6 object(s): -2026-04-08T22:04:28.386852Z 01O 030+ [32, 40) 'call' (line 666) -2026-04-08T22:04:28.386857Z 01O 031+ [64, 144) 'dummy_execute_data' (line 666) <== Memory access at offset 88 is inside this variable -2026-04-08T22:04:28.386863Z 01O 032+ [176, 208) 'fci_cache_local' (line 667) -2026-04-08T22:04:28.386866Z 01O 033+ [240, 248) 'error' (line 709) -2026-04-08T22:04:28.386870Z 01O 034+ [272, 276) 'arg_num' (line 808) -2026-04-08T22:04:28.386875Z 01O 035+ [288, 304) 'cache_slot' (line 814) -2026-04-08T22:04:28.386878Z 01O 036+ HINT: this may be a false positive if your program uses some custom stack unwind mechanism, swapcontext or vfork -2026-04-08T22:04:28.386883Z 01O 037+ (longjmp and C++ exceptions *are* supported) -2026-04-08T22:04:28.386888Z 01O 038+ SUMMARY: AddressSanitizer: stack-use-after-return /usr/local/src/php/Zend/zend_observer.c:181:38 in zend_observer_is_skipped_frame -2026-04-08T22:04:28.386892Z 01O 039+ Shadow bytes around the buggy address: -2026-04-08T22:04:28.386896Z 01O 040+ 0x781d21622580: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 -2026-04-08T22:04:28.386901Z 01O 041+ 0x781d21622600: f1 f1 f1 f1 00 00 00 00 00 00 00 00 00 00 00 00 -2026-04-08T22:04:28.386906Z 01O 042+ 0x781d21622680: f2 f2 f2 f2 00 00 f2 f2 00 00 00 00 00 00 00 00 -2026-04-08T22:04:28.386909Z 01O 043+ 0x781d21622700: 00 00 f2 f2 f2 f2 00 00 00 00 00 00 00 00 f3 f3 -2026-04-08T22:04:28.386914Z 01O 044+ 0x781d21622780: f3 f3 f3 f3 00 00 00 00 00 00 00 00 00 00 00 00 -2026-04-08T22:04:28.386917Z 01O 045+ =>0x781d21622800: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5[f5]f5 f5 f5 f5 -2026-04-08T22:04:28.386921Z 01O 046+ 0x781d21622880: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 -2026-04-08T22:04:28.386926Z 01O 047+ 0x781d21622900: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 -2026-04-08T22:04:28.386930Z 01O 048+ 0x781d21622980: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 -2026-04-08T22:04:28.386933Z 01O 049+ 0x781d21622a00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 -2026-04-08T22:04:28.386938Z 01O 050+ 0x781d21622a80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 -2026-04-08T22:04:28.386941Z 01O 051+ Shadow byte legend (one shadow byte represents 8 application bytes): -2026-04-08T22:04:28.386945Z 01O 052+ Addressable: 00 -2026-04-08T22:04:28.386950Z 01O 053+ Partially addressable: 01 02 03 04 05 06 07  -2026-04-08T22:04:28.386952Z 01O 054+ Heap left redzone: fa -2026-04-08T22:04:28.386956Z 01O 055+ Freed heap region: fd -2026-04-08T22:04:28.386962Z 01O 056+ Stack left redzone: f1 -2026-04-08T22:04:28.386964Z 01O 057+ Stack mid redzone: f2 -2026-04-08T22:04:28.386968Z 01O 058+ Stack right redzone: f3 -2026-04-08T22:04:28.386973Z 01O 059+ Stack after return: f5 -2026-04-08T22:04:28.386975Z 01O 060+ Stack use after scope: f8 -2026-04-08T22:04:28.386978Z 01O 061+ Global redzone: f9 -2026-04-08T22:04:28.386983Z 01O 062+ Global init order: f6 -2026-04-08T22:04:28.386985Z 01O 063+ Poisoned by user: f7 -2026-04-08T22:04:28.386988Z 01O 064+ Container overflow: fc -2026-04-08T22:04:28.387007Z 01O 065+ Array cookie: ac -2026-04-08T22:04:28.387010Z 01O 066+ Intra object redzone: bb -2026-04-08T22:04:28.387013Z 01O 067+ ASan internal: fe -2026-04-08T22:04:28.387017Z 01O 068+ Left alloca redzone: ca -2026-04-08T22:04:28.387020Z 01O 069+ Right alloca redzone: cb -2026-04-08T22:04:28.387023Z 01O 070+ ==4588==ABORTING -2026-04-08T22:04:28.387036Z 01O 071+ Aborted -2026-04-08T22:04:28.387044Z 01O 072+  -2026-04-08T22:04:28.387049Z 01O 073+ Termsig=6 -2026-04-08T22:04:28.387063Z 01O ========DONE======== -2026-04-08T22:04:28.387073Z 01O FAIL Check that sandboxed hooks do not invoke error handlers or set the error code [tmp/build_extension/tests/ext/sandbox/hook_function/hook_does_not_leak_error.phpt] -2026-04-08T22:04:28.387080Z 01O TEST 260/647 [4/4 concurrent test workers running] PASS Test install_hook() on functions returning by reference [tmp/build_extension/tests/ext/sandbox/install_hook/install_hook_return_by_ref.phpt] -2026-04-08T22:04:28.387099Z 01O TEST 261/647 [4/4 concurrent test workers running] PASS Test consume_distributed_tracing_headers() with array argument [tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_consume_array.phpt] -2026-04-08T22:04:28.387111Z 01O TEST 262/647 [4/4 concurrent test workers running] -2026-04-08T22:04:28.887198Z 01O+ PASS Check that the library config files overloads env vars [tmp/build_extension/tests/ext/library_config/fleet_config_overloads_env.phpt] -2026-04-08T22:04:28.887211Z 01O TEST 263/647 [4/4 concurrent test workers running] PASS Test get_memory_limit() returning correct values [tmp/build_extension/tests/ext/get_memory_limit_0_percent.phpt] -2026-04-08T22:04:28.887218Z 01O TEST 264/647 [4/4 concurrent test workers running] PASS [Sandbox regression] dd_trace_tracer_is_limited() limits the tracer with a hard span limit [tmp/build_extension/tests/ext/sandbox-regression/dd_trace_tracer_is_limited_hard.phpt] -2026-04-08T22:04:28.887229Z 01O TEST 265/647 [4/4 concurrent test workers running] PASS Testing user filter on streams [tmp/build_extension/tests/ext/from_php_7_3_test_user_streams_consumed_bug.phpt] -2026-04-08T22:04:28.887234Z 01O TEST 266/647 [4/4 concurrent test workers running] -2026-04-08T22:04:29.387937Z 01O+ PASS Check sample rate is in effect [tmp/build_extension/tests/ext/single-span_sampling/check-sample-rate.phpt] -2026-04-08T22:04:29.387947Z 01O TEST 267/647 [4/4 concurrent test workers running] -2026-04-08T22:04:29.387952Z 01O ========DIFF======== -2026-04-08T22:04:29.387958Z 01O 001+ ================================================================= -2026-04-08T22:04:29.387961Z 01O 002+ ==4635==ERROR: AddressSanitizer: stack-use-after-return on address 0x77db3b422a58 at pc 0x5ef3db7b8ae1 bp 0x7ffefb9ca1a0 sp 0x7ffefb9ca198 -2026-04-08T22:04:29.387965Z 01O 003+ READ of size 8 at 0x77db3b422a58 thread T0 -2026-04-08T22:04:29.387974Z 01O 001- [ddtrace] [warning] [%d] Error raised in ddtrace's closure defined at %s:%d for x(): No D in %s -2026-04-08T22:04:29.387977Z 01O 002- Leaving Autoloader -2026-04-08T22:04:29.387982Z 01O 003- [ddtrace] [info] [%d] Flushing trace of size 2 to send-queue for %s -2026-04-08T22:04:29.387988Z 01O 004+ #0 0x5ef3db7b8ae0 in zend_observer_is_skipped_frame /usr/local/src/php/Zend/zend_observer.c:181:38 -2026-04-08T22:04:29.387991Z 01O 005+ #1 0x5ef3db7b89fb in zend_observer_fcall_end /usr/local/src/php/Zend/zend_observer.c:221:16 -2026-04-08T22:04:29.388052Z 01O 006+ #2 0x5ef3db7b8e62 in zend_observer_fcall_end_all /usr/local/src/php/Zend/zend_observer.c:233:4 -2026-04-08T22:04:29.388059Z 01O 007+ #3 0x77db376c9970 in zai_reset_observed_frame_post_bailout /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/sandbox/call.c:92:9 -2026-04-08T22:04:29.388088Z 01O 008+ #4 0x77db376c9ba7 in zai_sandbox_call /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/sandbox/call.c:124:9 -2026-04-08T22:04:29.388106Z 01O 009+ #5 0x77db378345a4 in dd_uhook_call /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/hook/uhook_legacy.c:86:20 -2026-04-08T22:04:29.388114Z 01O 010+ #6 0x77db378329fd in dd_uhook_end /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/hook/uhook_legacy.c:239:21 -2026-04-08T22:04:29.388127Z 01O 011+ #7 0x77db376bd3f2 in zai_hook_finish /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/hook/hook.c:1116:13 -2026-04-08T22:04:29.388134Z 01O 012+ #8 0x77db3769c42b in zai_hook_safe_finish /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/interceptor/php8/interceptor.c:56:9 -2026-04-08T22:04:29.388140Z 01O 013+ #9 0x77db37698c1e in zai_interceptor_observer_end_handler /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/zend_abstract_interface/interceptor/php8/interceptor.c:176:9 -2026-04-08T22:04:29.388147Z 01O 014+ #10 0x5ef3db7b8888 in zend_observer_fcall_end /usr/local/src/php/Zend/zend_observer.c:213:3 -2026-04-08T22:04:29.388150Z 01O 015+ #11 0x5ef3db5b5416 in ZEND_RETURN_SPEC_OBSERVER_HANDLER /usr/local/src/php/Zend/zend_vm_execute.h:4202:2 -2026-04-08T22:04:29.388154Z 01O 016+ #12 0x5ef3db4dff63 in execute_ex /usr/local/src/php/Zend/zend_vm_execute.h:54970:7 -2026-04-08T22:04:29.388160Z 01O 017+ #13 0x5ef3db406e81 in zend_call_function /usr/local/src/php/Zend/zend_execute_API.c:895:3 -2026-04-08T22:04:29.388163Z 01O 018+ #14 0x5ef3db408f4e in zend_call_known_function /usr/local/src/php/Zend/zend_execute_API.c:985:23 -2026-04-08T22:04:29.388167Z 01O 019+ #15 0x5ef3dabd64ec in spl_perform_autoload /usr/local/src/php/ext/spl/php_spl.c:440:3 -2026-04-08T22:04:29.388181Z 01O 020+ #16 0x77db377443bc in dd_perform_autoload /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_extension/ext/autoload_php_files.c:268:16 -2026-04-08T22:04:29.388191Z 01O 021+ #17 0x5ef3db40a03d in zend_lookup_class_ex /usr/local/src/php/Zend/zend_execute_API.c:1110:7 -2026-04-08T22:04:29.388196Z 01O 022+ #18 0x5ef3db40c454 in zend_fetch_class_by_name /usr/local/src/php/Zend/zend_execute_API.c:1521:19 -2026-04-08T22:04:29.388214Z 01O 023+ #19 0x5ef3db7a3235 in zend_do_link_class /usr/local/src/php/Zend/zend_inheritance.c:2436:12 -2026-04-08T22:04:29.388227Z 01O 024+ #20 0x5ef3db395962 in do_bind_class /usr/local/src/php/Zend/zend_compile.c:1139:6 -2026-04-08T22:04:29.388233Z 01O 025+ #21 0x5ef3db66a556 in ZEND_DECLARE_CLASS_SPEC_CONST_HANDLER /usr/local/src/php/Zend/zend_vm_execute.h:5183:2 -2026-04-08T22:04:29.388242Z 01O 026+ #22 0x5ef3db676233 in ZEND_USER_OPCODE_SPEC_HANDLER /usr/local/src/php/Zend/zend_vm_execute.h:3025:4 -2026-04-08T22:04:29.388246Z 01O 027+ #23 0x5ef3db4dff63 in execute_ex /usr/local/src/php/Zend/zend_vm_execute.h:54970:7 -2026-04-08T22:04:29.388250Z 01O 028+ #24 0x5ef3db4e0c8c in zend_execute /usr/local/src/php/Zend/zend_vm_execute.h:59523:2 -2026-04-08T22:04:29.388255Z 01O 029+ #25 0x5ef3db451181 in zend_execute_scripts /usr/local/src/php/Zend/zend.c:1694:4 -2026-04-08T22:04:29.388258Z 01O 030+ #26 0x5ef3db23da21 in php_execute_script /usr/local/src/php/main/main.c:2546:13 -2026-04-08T22:04:29.388289Z 01O 031+ #27 0x5ef3db7bd28f in do_cli /usr/local/src/php/sapi/cli/php_cli.c:949:5 -2026-04-08T22:04:29.388305Z 01O 032+ #28 0x5ef3db7bb2c5 in main /usr/local/src/php/sapi/cli/php_cli.c:1337:18 -2026-04-08T22:04:29.388316Z 01O 033+ #29 0x77db3dfa5249 in __libc_start_call_main csu/../sysdeps/nptl/libc_start_call_main.h:58:16 -2026-04-08T22:04:29.388330Z 01O 034+ #30 0x77db3dfa5304 in __libc_start_main csu/../csu/libc-start.c:360:3 -2026-04-08T22:04:29.388334Z 01O 035+ #31 0x5ef3da0f40f0 in _start (/opt/php/debug-zts-asan/bin/php+0x10130f0) (BuildId: ad7c0b542321b312675454bef26674568a50848a) -2026-04-08T22:04:29.388338Z 01O 036+  -2026-04-08T22:04:29.388343Z 01O 037+ Address 0x77db3b422a58 is located in stack of thread T0 at offset 88 in frame -2026-04-08T22:04:29.388346Z 01O 038+ #0 0x5ef3db40383f in zend_call_function /usr/local/src/php/Zend/zend_execute_API.c:664 -2026-04-08T22:04:29.388350Z 01O 039+  -2026-04-08T22:04:29.388355Z 01O 040+ This frame has 6 object(s): -2026-04-08T22:04:29.388358Z 01O 041+ [32, 40) 'call' (line 666) -2026-04-08T22:04:29.388361Z 01O 042+ [64, 144) 'dummy_execute_data' (line 666) <== Memory access at offset 88 is inside this variable -2026-04-08T22:04:29.388367Z 01O 043+ [176, 208) 'fci_cache_local' (line 667) -2026-04-08T22:04:29.388370Z 01O 044+ [240, 248) 'error' (line 709) -2026-04-08T22:04:29.388373Z 01O 045+ [272, 276) 'arg_num' (line 808) -2026-04-08T22:04:29.388379Z 01O 046+ [288, 304) 'cache_slot' (line 814) -2026-04-08T22:04:29.388382Z 01O 047+ HINT: this may be a false positive if your program uses some custom stack unwind mechanism, swapcontext or vfork -2026-04-08T22:04:29.388387Z 01O 048+ (longjmp and C++ exceptions *are* supported) -2026-04-08T22:04:29.388396Z 01O 049+ SUMMARY: AddressSanitizer: stack-use-after-return /usr/local/src/php/Zend/zend_observer.c:181:38 in zend_observer_is_skipped_frame -2026-04-08T22:04:29.388401Z 01O 050+ Shadow bytes around the buggy address: -2026-04-08T22:04:29.388404Z 01O 051+ 0x77db3b422780: f3 f3 f3 f3 00 00 00 00 00 00 00 00 00 00 00 00 -2026-04-08T22:04:29.388410Z 01O 052+ 0x77db3b422800: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 -2026-04-08T22:04:29.388412Z 01O 053+ 0x77db3b422880: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 -2026-04-08T22:04:29.388415Z 01O 054+ 0x77db3b422900: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 -2026-04-08T22:04:29.388421Z 01O 055+ 0x77db3b422980: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 -2026-04-08T22:04:29.388423Z 01O 056+ =>0x77db3b422a00: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5[f5]f5 f5 f5 f5 -2026-04-08T22:04:29.388427Z 01O 057+ 0x77db3b422a80: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 -2026-04-08T22:04:29.388433Z 01O 058+ 0x77db3b422b00: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 -2026-04-08T22:04:29.388436Z 01O 059+ 0x77db3b422b80: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 -2026-04-08T22:04:29.388440Z 01O 060+ 0x77db3b422c00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 -2026-04-08T22:04:29.388445Z 01O 061+ 0x77db3b422c80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 -2026-04-08T22:04:29.388447Z 01O 062+ Shadow byte legend (one shadow byte represents 8 application bytes): -2026-04-08T22:04:29.388451Z 01O 063+ Addressable: 00 -2026-04-08T22:04:29.388466Z 01O 064+ Partially addressable: 01 02 03 04 05 06 07  -2026-04-08T22:04:29.388475Z 01O 065+ Heap left redzone: fa -2026-04-08T22:04:29.388480Z 01O 066+ Freed heap region: fd -2026-04-08T22:04:29.388494Z 01O 067+ Stack left redzone: f1 -2026-04-08T22:04:29.388513Z 01O 068+ Stack mid redzone: f2 -2026-04-08T22:04:29.388518Z 01O 069+ Stack right redzone: f3 -2026-04-08T22:04:29.388529Z 01O 070+ Stack after return: f5 -2026-04-08T22:04:29.388538Z 01O 071+ Stack use after scope: f8 -2026-04-08T22:04:29.388542Z 01O 072+ Global redzone: f9 -2026-04-08T22:04:29.388555Z 01O 073+ Global init order: f6 -2026-04-08T22:04:29.388563Z 01O 074+ Poisoned by user: f7 -2026-04-08T22:04:29.388567Z 01O 075+ Container overflow: fc -2026-04-08T22:04:29.388581Z 01O 076+ Array cookie: ac -2026-04-08T22:04:29.388589Z 01O 077+ Intra object redzone: bb -2026-04-08T22:04:29.388594Z 01O 078+ ASan internal: fe -2026-04-08T22:04:29.388605Z 01O 079+ Left alloca redzone: ca -2026-04-08T22:04:29.388614Z 01O 080+ Right alloca redzone: cb -2026-04-08T22:04:29.388620Z 01O 081+ ==4635==ABORTING -2026-04-08T22:04:29.388633Z 01O 082+ Aborted -2026-04-08T22:04:29.388643Z 01O 083+  -2026-04-08T22:04:29.388649Z 01O 084+ Termsig=6 -2026-04-08T22:04:29.388660Z 01O ========DONE======== -2026-04-08T22:04:29.388671Z 01O FAIL Assert bailouts are gracefully handled within class autoloading [tmp/build_extension/tests/ext/sandbox-regression/class_resolver_bailout_hook.phpt] -2026-04-08T22:04:29.388676Z 01O TEST 268/647 [4/4 concurrent test workers running] -2026-04-08T22:04:29.888834Z 01O+ SKIP Test executing fibers with tracer fully disabled [tmp/build_extension/tests/ext/fibers/fiber_switch_tracer_disabled.phpt] reason: : Fibers are a PHP 8.1+ feature -2026-04-08T22:04:29.888856Z 01O TEST 269/647 [4/4 concurrent test workers running] PASS Overriding function arguments via install_hook() [tmp/build_extension/tests/ext/sandbox/install_hook/replace_hook_args.phpt] -2026-04-08T22:04:29.888864Z 01O TEST 270/647 [4/4 concurrent test workers running] SKIP Send telemetry about the sidecar being disabled [tmp/build_extension/tests/ext/background-sender/sidecar_fallback.phpt] reason: : Sidecar fallback exists only on PHP 8.3 -2026-04-08T22:04:29.888872Z 01O TEST 271/647 [4/4 concurrent test workers running] PASS Assesses the opt-in behavior of peer service [tmp/build_extension/tests/ext/peer_service_disabled_default.phpt] -2026-04-08T22:04:29.888876Z 01O TEST 272/647 [4/4 concurrent test workers running] PASS DDTrace_trace_method is passed wrong parameters [tmp/build_extension/tests/ext/wrong-parameter-errors/DDTrace_trace_method.phpt] -2026-04-08T22:04:29.888884Z 01O TEST 273/647 [4/4 concurrent test workers running] PASS hook_function posthook should ignore limited mode [tmp/build_extension/tests/ext/sandbox/hook_function/posthook_limited_01.phpt] -2026-04-08T22:04:29.888895Z 01O TEST 274/647 [4/4 concurrent test workers running] PASS Span creation with distributed context set after starting span [tmp/build_extension/tests/ext/inferred_proxy/propagated_tags_after_span_start.phpt] -2026-04-08T22:04:29.888899Z 01O TEST 275/647 [4/4 concurrent test workers running] PASS Test hooking preserves the active span [tmp/build_extension/tests/ext/show_actual_active_span_in_hook.phpt] -2026-04-08T22:04:29.888905Z 01O TEST 276/647 [4/4 concurrent test workers running] PASS Client IP should not be collected if env DD_TRACE_CLIENT_IP_ENABLED is set to true [tmp/build_extension/tests/ext/ip_collection_02.phpt] -2026-04-08T22:04:29.888959Z 01O TEST 277/647 [4/4 concurrent test workers running] -2026-04-08T22:04:30.389556Z 01O+ PASS Test that service tags in DD_TAGS are ignored but version and env tags are set [tmp/build_extension/tests/ext/ust_via_ddtags.phpt] -2026-04-08T22:04:30.389573Z 01O TEST 278/647 [4/4 concurrent test workers running] PASS Distributed tracing headers propagate via file_get_contents() with pre-existing headers as string. [tmp/build_extension/tests/ext/integrations/http_streams/distributed_tracing_http_streams_with_headers_string.phpt] -2026-04-08T22:04:30.389581Z 01O TEST 279/647 [4/4 concurrent test workers running] PASS Short running multiple forks [tmp/build_extension/tests/ext/pcntl/pcntl_fork_reseed_span_id.phpt] -2026-04-08T22:04:30.389591Z 01O TEST 280/647 [4/4 concurrent test workers running] SKIP Sidecar should be enabled by default on PHP 8.4 [tmp/build_extension/tests/ext/sidecar_enabled.phpt] reason: : This tests is only for PHP 8.4 -2026-04-08T22:04:30.389597Z 01O TEST 281/647 [4/4 concurrent test workers running] PASS E_ERROR fatal errors are tracked from internal function [tmp/build_extension/tests/ext/sandbox/fatal_errors_are_tracked_001.phpt] -2026-04-08T22:04:30.389602Z 01O TEST 282/647 [4/4 concurrent test workers running] -2026-04-08T22:04:30.890145Z 01O+ PASS ASAN repro: internal fake closure + forced eval parse error [tmp/build_extension/tests/ext/sandbox/install_hook/internal_fake_closure_forced_parse_error_asan.phpt] -2026-04-08T22:04:30.890158Z 01O TEST 283/647 [4/4 concurrent test workers running] PASS When DD_GIT_REPOSITORY_URL is specified, _dd.git.repository_url is injected [tmp/build_extension/tests/ext/integrations/source_code/repository_url_env_var.phpt] -2026-04-08T22:04:30.890167Z 01O TEST 284/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Multiple functions and methods are traced [tmp/build_extension/tests/ext/sandbox-regression/multiple_instrumentations.phpt] -2026-04-08T22:04:30.890175Z 01O TEST 285/647 [4/4 concurrent test workers running] PASS Properly remap peer service's sources based on DD_TRACE_PEER_SERVICE_MAPPING [tmp/build_extension/tests/ext/peer_service_remapping.phpt] -2026-04-08T22:04:30.890179Z 01O TEST 286/647 [4/4 concurrent test workers running] -2026-04-08T22:04:32.892377Z 01O+ PASS Installing a live debugger span decoration probe [tmp/build_extension/tests/ext/live-debugger/debugger_span_decoration_probe.phpt] -2026-04-08T22:04:32.892389Z 01O TEST 287/647 [4/4 concurrent test workers running] PASS priority_sampling user keep [tmp/build_extension/tests/ext/priority_sampling/003-user-keep.phpt] -2026-04-08T22:04:32.892397Z 01O TEST 288/647 [4/4 concurrent test workers running] SKIP Send crashtracker report when segmentation fault signal is raised and config enables it [tmp/build_extension/tests/ext/crashtracker_segfault_windows.phpt] reason: : intentionally causes segfaults -2026-04-08T22:04:32.892407Z 01O TEST 289/647 [4/4 concurrent test workers running] PASS Verify trace source tag is not sent when no asm event [tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_existing_headers_005.phpt] -2026-04-08T22:04:32.892411Z 01O TEST 290/647 [4/4 concurrent test workers running] -2026-04-08T22:04:33.392983Z 01O+ PASS [Sandbox regression] Return value passed to tracing closure [tmp/build_extension/tests/ext/sandbox-regression/return_value_passed.phpt] -2026-04-08T22:04:33.392997Z 01O TEST 291/647 [4/4 concurrent test workers running] PASS Test \datadog\appsec\v2\track_user_login_failure invalid login [tmp/build_extension/tests/ext/track_user_login_failure_03.phpt] -2026-04-08T22:04:33.393007Z 01O TEST 292/647 [4/4 concurrent test workers running] SKIP Ensure the tracer can also be enabled or disabled in fibers [tmp/build_extension/tests/ext/fibers/enable_tracer_in_fiber.phpt] reason: : Fibers are a PHP 8.1+ feature -2026-04-08T22:04:33.393019Z 01O TEST 293/647 [4/4 concurrent test workers running] PASS Exceptions get attached to spans [tmp/build_extension/tests/ext/sandbox/exception_handling.phpt] -2026-04-08T22:04:33.393024Z 01O TEST 294/647 [4/4 concurrent test workers running] PASS Remove hook [tmp/build_extension/tests/ext/sandbox/install_hook/remove_hook_null_logger.phpt] -2026-04-08T22:04:33.393028Z 01O TEST 295/647 [4/4 concurrent test workers running] -2026-04-08T22:04:33.893934Z 01O+ PASS Test swapping span stacks due to auto-close of spans by functions [tmp/build_extension/tests/ext/span_stack/span_stack_swap_traced_function.phpt] -2026-04-08T22:04:33.893980Z 01O TEST 296/647 [4/4 concurrent test workers running] PASS Exceptions from original call are passed to tracing closure [tmp/build_extension/tests/ext/sandbox/exceptions_are_passed_to_the_tracing_closure.phpt] -2026-04-08T22:04:33.893991Z 01O TEST 297/647 [4/4 concurrent test workers running] SKIP Span properties are safely converted to strings without errors or exceptions [tmp/build_extension/tests/ext/sandbox/safe_to_string_properties.phpt] reason: : test only works before 7.4 -2026-04-08T22:04:33.894002Z 01O TEST 298/647 [4/4 concurrent test workers running] PASS Ensure that if a user adds an internal function we already trace to traced internal functions list that it doesn't misbehave [tmp/build_extension/tests/ext/traced_internal_functions_override_01.phpt] -2026-04-08T22:04:33.894006Z 01O TEST 299/647 [4/4 concurrent test workers running] -2026-04-08T22:04:34.394506Z 01O+ PASS priority_sampling rule with service reject [tmp/build_extension/tests/ext/priority_sampling/008-rule-service-reject.phpt] -2026-04-08T22:04:34.394520Z 01O TEST 300/647 [4/4 concurrent test workers running] PASS Distributed tracing header tags propagate with curl_exec() [tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_propagate_custom_tags.phpt] -2026-04-08T22:04:34.394526Z 01O TEST 301/647 [4/4 concurrent test workers running] PASS DDTrace\hook_function posthook is passed the correct args [tmp/build_extension/tests/ext/sandbox/hook_function/posthook_03.phpt] -2026-04-08T22:04:34.394536Z 01O TEST 302/647 [4/4 concurrent test workers running] PASS Auto-flushing will sandbox an exception thrown from the tracer flush [tmp/build_extension/tests/ext/sandbox/auto_flush_sandbox_exception.phpt] -2026-04-08T22:04:34.394540Z 01O TEST 303/647 [4/4 concurrent test workers running] -2026-04-08T22:04:34.895145Z 01O+ PASS Variadic arguments are passed to tracing closure when no arguments exist in function signature [tmp/build_extension/tests/ext/sandbox/variadic_no_args.phpt] -2026-04-08T22:04:34.895210Z 01O TEST 304/647 [4/4 concurrent test workers running] PASS Short running multiple forks [tmp/build_extension/tests/ext/pcntl/pcntl_fork_short_running_multiple.phpt] -2026-04-08T22:04:34.895220Z 01O TEST 305/647 [4/4 concurrent test workers running] SKIP rate limiter reached [tmp/build_extension/tests/ext/limiter/002-limiter-reached.phpt] reason: timing sensitive test, does not make sense with valgrind -2026-04-08T22:04:34.895228Z 01O TEST 306/647 [4/4 concurrent test workers running] -2026-04-08T22:04:35.395385Z 01O+ PASS priority_sampling rule with resource reject [tmp/build_extension/tests/ext/priority_sampling/015-rule-resource-reject.phpt] -2026-04-08T22:04:35.395409Z 01O TEST 307/647 [4/4 concurrent test workers running] PASS Startup logging is disabled [tmp/build_extension/tests/ext/startup_logging_disabled.phpt] -2026-04-08T22:04:35.395420Z 01O TEST 308/647 [4/4 concurrent test workers running] PASS Nested closure targeting method call 01 (posthook) [tmp/build_extension/tests/ext/sandbox/hook_method/posthook_06.phpt] -2026-04-08T22:04:35.395429Z 01O TEST 309/647 [4/4 concurrent test workers running] -2026-04-08T22:04:35.896054Z 01O+ SKIP runtime-id exists in meta when profiling is disabled [tmp/build_extension/tests/ext/profiling/runtime_id_02.phpt] reason: : requires profiling -2026-04-08T22:04:35.896066Z 01O TEST 310/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Userland function is traced [tmp/build_extension/tests/ext/sandbox-regression/simple_function_hook.phpt] -2026-04-08T22:04:35.896073Z 01O TEST 311/647 [4/4 concurrent test workers running] PASS priority_sampling rule with name match [tmp/build_extension/tests/ext/priority_sampling/005-rule-name.phpt] -2026-04-08T22:04:35.896080Z 01O TEST 312/647 [4/4 concurrent test workers running] PASS hook_method posthook is called with the correct scope (parent) [tmp/build_extension/tests/ext/sandbox/hook_method/posthook_scope_02.phpt] -2026-04-08T22:04:35.896085Z 01O TEST 313/647 [4/4 concurrent test workers running] PASS Keep spans in limited mode (userland functions) [tmp/build_extension/tests/ext/sandbox/keep_spans_in_limited_tracing_userland_functions.phpt] -2026-04-08T22:04:35.896090Z 01O TEST 314/647 [4/4 concurrent test workers running] -2026-04-08T22:04:36.396527Z 01O+ SKIP dd_trace_tracer_is_limited() limits the tracer with a memory limit [tmp/build_extension/tests/ext/dd_trace_tracer_is_limited_memory.phpt] reason: Zend MM must be enabled -2026-04-08T22:04:36.396540Z 01O TEST 315/647 [4/4 concurrent test workers running] PASS Startup logging config [tmp/build_extension/tests/ext/startup_logging_config.phpt] -2026-04-08T22:04:36.396546Z 01O TEST 316/647 [4/4 concurrent test workers running] PASS priority_sampling rule with name and service match [tmp/build_extension/tests/ext/priority_sampling/009-rule-name-service.phpt] -2026-04-08T22:04:36.396553Z 01O TEST 317/647 [4/4 concurrent test workers running] -2026-04-08T22:04:36.897081Z 01O+ PASS Distributed tracing headers propagate with curl_exec() [tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_tracestate.phpt] -2026-04-08T22:04:36.897149Z 01O TEST 318/647 [4/4 concurrent test workers running] PASS Test baggage header interaction when is configured as first [tmp/build_extension/tests/ext/distributed_tracing/baggage/distributed_trace_baggage_first.phpt] -2026-04-08T22:04:36.897158Z 01O TEST 319/647 [4/4 concurrent test workers running] PASS priority_sampling default sampling [tmp/build_extension/tests/ext/priority_sampling/001-default-sampling.phpt] -2026-04-08T22:04:36.897167Z 01O TEST 320/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Private and protected properties are accessed from a tracing closure [tmp/build_extension/tests/ext/sandbox-regression/access_modifier_property_access_hook.phpt] -2026-04-08T22:04:36.897171Z 01O TEST 321/647 [4/4 concurrent test workers running] -2026-04-08T22:04:37.397780Z 01O+ PASS Test \DDTrace\set_user doesn't propagate when overriding configuration [tmp/build_extension/tests/ext/set_user_without_propagation_override_default.phpt] -2026-04-08T22:04:37.397793Z 01O TEST 322/647 [4/4 concurrent test workers running] PASS 'logs_created' internal metric [tmp/build_extension/tests/ext/telemetry/metrics_logs_created.phpt] -2026-04-08T22:04:37.397800Z 01O TEST 323/647 [4/4 concurrent test workers running] PASS DDTrace_trace_function is passed wrong parameters [tmp/build_extension/tests/ext/wrong-parameter-errors/DDTrace_trace_function.phpt] -2026-04-08T22:04:37.397810Z 01O TEST 324/647 [4/4 concurrent test workers running] PASS Baggage headers should not be propagated when curl integration is disabled [tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_disabled_baggage.phpt] -2026-04-08T22:04:37.397815Z 01O TEST 325/647 [4/4 concurrent test workers running] PASS Use the first available tag from peerServiceSources to set peer.service [tmp/build_extension/tests/ext/peer_service_use_first_available_tag.phpt] -2026-04-08T22:04:37.397820Z 01O TEST 326/647 [4/4 concurrent test workers running] -2026-04-08T22:04:37.898450Z 01O+ PASS Test cloning a span stack [tmp/build_extension/tests/ext/span_stack/span_stack_clone.phpt] -2026-04-08T22:04:37.898462Z 01O TEST 327/647 [4/4 concurrent test workers running] PASS Test consume_distributed_tracing_headers() with conflicting span_ids in datadog and tracecontext headers [tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_conflicting_span_ids_dd_tracecontext.phpt] -2026-04-08T22:04:37.898472Z 01O TEST 328/647 [4/4 concurrent test workers running] PASS Thread mode sidecar: orphaned child process promotes itself to master after parent exits [tmp/build_extension/tests/ext/pcntl/pcntl_fork_thread_mode_orphan.phpt] -2026-04-08T22:04:37.898483Z 01O TEST 329/647 [4/4 concurrent test workers running] PASS Test try_drop_span() on root span [tmp/build_extension/tests/ext/try_drop_span_root.phpt] -2026-04-08T22:04:37.898487Z 01O TEST 330/647 [4/4 concurrent test workers running] PASS Exceptions in the tracing closure callback are always defined [tmp/build_extension/tests/ext/sandbox/exception_is_defined.phpt] -2026-04-08T22:04:37.898493Z 01O TEST 331/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Recursive calls will trace only outermost invocation [tmp/build_extension/tests/ext/sandbox-regression/recursion.phpt] -2026-04-08T22:04:37.898537Z 01O TEST 332/647 [4/4 concurrent test workers running] -2026-04-08T22:04:38.399065Z 01O+ PASS Decoding nested array POST data [tmp/build_extension/tests/ext/root_span_url_with_post_array.phpt] -2026-04-08T22:04:38.399079Z 01O TEST 333/647 [4/4 concurrent test workers running] PASS Test get_memory_limit() returning correct values [tmp/build_extension/tests/ext/get_memory_limit_unlimited_default.phpt] -2026-04-08T22:04:38.399086Z 01O TEST 334/647 [4/4 concurrent test workers running] PASS Headers values are mapped to expected tag key [tmp/build_extension/tests/ext/dd_trace_serialize_header_to_meta.phpt] -2026-04-08T22:04:38.399094Z 01O TEST 335/647 [4/4 concurrent test workers running] PASS DDTrace\hook_function prehook basic functionality [tmp/build_extension/tests/ext/sandbox/hook_function/prehook_01.phpt] -2026-04-08T22:04:38.399098Z 01O TEST 336/647 [4/4 concurrent test workers running] PASS DDTrace\SpanEvent serialization with attributes [tmp/build_extension/tests/ext/request-replayer/dd_trace_span_event.phpt] -2026-04-08T22:04:38.399105Z 01O TEST 337/647 [4/4 concurrent test workers running] PASS Verify ips in private ranges are detected as private(Base: 100.64.0.0, Mask: 255.192.0.0) [tmp/build_extension/tests/ext/extract_ip_private_01.phpt] -2026-04-08T22:04:38.399111Z 01O TEST 338/647 [4/4 concurrent test workers running] -2026-04-08T22:04:38.899903Z 01O+ PASS Should create parent and child spans for a 200 [tmp/build_extension/tests/ext/inferred_proxy/basic_test.phpt] -2026-04-08T22:04:38.899915Z 01O TEST 339/647 [4/4 concurrent test workers running] PASS The return value is null when an exception is thrown in the original call [tmp/build_extension/tests/ext/sandbox/retval_is_null_with_exception.phpt] -2026-04-08T22:04:38.899924Z 01O TEST 340/647 [4/4 concurrent test workers running] SKIP Dump backtrace when segmentation fault signal is raised and config enables it [tmp/build_extension/tests/ext/segfault_backtrace_enabled.phpt] reason: : intentionally causes segfaults -2026-04-08T22:04:38.899932Z 01O TEST 341/647 [4/4 concurrent test workers running] -2026-04-08T22:04:39.901123Z 01O+ PASS Sample rate is changed to 0 after first call during a minute when STANDALONE ASM is enabled and no asm events [tmp/build_extension/tests/ext/background-sender/agent_sampling-standalone-asm_01.phpt] -2026-04-08T22:04:39.901135Z 01O TEST 342/647 [4/4 concurrent test workers running] PASS DDTrace\hook_method posthook does not mess up spans with children [tmp/build_extension/tests/ext/sandbox/hook_method/posthook_span_ids_02.phpt] -2026-04-08T22:04:39.901141Z 01O TEST 343/647 [4/4 concurrent test workers running] PASS Test file inclusion hooking [tmp/build_extension/tests/ext/sandbox/install_hook/trace_file.phpt] -2026-04-08T22:04:39.901149Z 01O TEST 344/647 [4/4 concurrent test workers running] PASS DDTrace_hook_function is passed wrong parameters [tmp/build_extension/tests/ext/wrong-parameter-errors/DDTrace_hook_function.phpt] -2026-04-08T22:04:39.901154Z 01O TEST 345/647 [4/4 concurrent test workers running] PASS DDTrace\hook_function supports recursion [tmp/build_extension/tests/ext/sandbox/hook_function/recursion.phpt] -2026-04-08T22:04:39.901218Z 01O TEST 346/647 [4/4 concurrent test workers running] PASS Test exception replay capture limits [tmp/build_extension/tests/ext/live-debugger/exception-replay_002.phpt] -2026-04-08T22:04:39.901246Z 01O TEST 347/647 [4/4 concurrent test workers running] PASS DDTrace\hook_function posthook exception is sandboxed (debug internal) [tmp/build_extension/tests/ext/sandbox/hook_function/posthook_exceptions_04.phpt] -2026-04-08T22:04:39.901253Z 01O TEST 348/647 [4/4 concurrent test workers running] -2026-04-08T22:04:40.401467Z 01O+ PASS Test the output of \DDTrace\current_context without env variables. [tmp/build_extension/tests/ext/dd_trace_current_context_noenv.phpt] -2026-04-08T22:04:40.401489Z 01O TEST 349/647 [4/4 concurrent test workers running] PASS root span with DD_TRACE_URL_AS_RESOURCE_NAMES_ENABLED [tmp/build_extension/tests/ext/root_span_url_with_query_params.phpt] -2026-04-08T22:04:40.401498Z 01O TEST 350/647 [4/4 concurrent test workers running] PASS Startup logging diagnostics [tmp/build_extension/tests/ext/startup_logging_diagnostics.phpt] -2026-04-08T22:04:40.401519Z 01O TEST 351/647 [4/4 concurrent test workers running] -2026-04-08T22:04:40.902039Z 01O+ PASS VM variable types are handled properly for return [tmp/build_extension/tests/ext/sandbox/vm_var_types_return.phpt] -2026-04-08T22:04:40.902050Z 01O TEST 352/647 [4/4 concurrent test workers running] PASS DDTrace\hook_method posthook is called at exit [tmp/build_extension/tests/ext/sandbox/hook_method/posthook_exit_01.phpt] -2026-04-08T22:04:40.902057Z 01O TEST 353/647 [4/4 concurrent test workers running] PASS Test process_tags in application field [tmp/build_extension/tests/ext/telemetry/telemetry_process_tags.phpt] -2026-04-08T22:04:40.902064Z 01O TEST 354/647 [4/4 concurrent test workers running] PASS Post fields with a implicit array keys [tmp/build_extension/tests/ext/root_span_url_with_post_implicit_array_key.phpt] -2026-04-08T22:04:40.902071Z 01O TEST 355/647 [4/4 concurrent test workers running] -2026-04-08T22:04:41.402410Z 01O+ PASS Long running autoflush [tmp/build_extension/tests/ext/pcntl/pcntl_fork_long_running_autoflush.phpt] -2026-04-08T22:04:41.402445Z 01O TEST 356/647 [4/4 concurrent test workers running] PASS Distributed tracing span is generated for file_get_contents() [tmp/build_extension/tests/ext/integrations/http_streams/distributed_tracing_http_streams_disabled.phpt] -2026-04-08T22:04:41.402451Z 01O TEST 357/647 [4/4 concurrent test workers running] PASS DDTrace\hook_method returns false quietly when no hook is passed [tmp/build_extension/tests/ext/sandbox/hook_method/02.phpt] -2026-04-08T22:04:41.402477Z 01O TEST 358/647 [4/4 concurrent test workers running] PASS Enabling dynamic instrumentation via dynamic configuration [tmp/build_extension/tests/ext/live-debugger/debugger_enable_dynamic_config.phpt] -2026-04-08T22:04:41.402488Z 01O TEST 359/647 [4/4 concurrent test workers running] PASS Test that call_user_func_array can trace in global scope [tmp/build_extension/tests/ext/call_user_func/not-namespaced-array.phpt] -2026-04-08T22:04:41.402495Z 01O TEST 360/647 [4/4 concurrent test workers running] PASS priority_sampling rule with name match, using glob [tmp/build_extension/tests/ext/priority_sampling/022-rule-name-as-glob-with-multiple-criterias.phpt] -2026-04-08T22:04:41.402541Z 01O TEST 361/647 [4/4 concurrent test workers running] -2026-04-08T22:04:41.903085Z 01O+ PASS [Prehook] Tracing closure does not have access to thrown exception [tmp/build_extension/tests/ext/sandbox-prehook/closure_arg_exception.phpt] -2026-04-08T22:04:41.903095Z 01O TEST 362/647 [4/4 concurrent test workers running] -2026-04-08T22:04:42.904378Z 01O+ PASS Live debugger log probe includes process_tags [tmp/build_extension/tests/ext/live-debugger/debugger_log_probe_process_tags.phpt] -2026-04-08T22:04:42.904396Z 01O TEST 363/647 [4/4 concurrent test workers running] PASS The tracer should not crash when many hooks are installed [tmp/build_extension/tests/ext/sandbox-regression/handle_many_hooks.phpt] -2026-04-08T22:04:42.904404Z 01O TEST 364/647 [4/4 concurrent test workers running] PASS DDTrace\hook_function posthook error is sandboxed (debug) [tmp/build_extension/tests/ext/sandbox/hook_function/posthook_error_02.phpt] -2026-04-08T22:04:42.904431Z 01O TEST 365/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Trace case-insensitive method from a child class [tmp/build_extension/tests/ext/sandbox-regression/case_insensitive_method_hook.phpt] -2026-04-08T22:04:42.904439Z 01O TEST 366/647 [4/4 concurrent test workers running] -2026-04-08T22:04:49.412640Z 01O+ PASS Test dynamic config update [tmp/build_extension/tests/ext/remote_config/dynamic_config_auto_update.phpt] -2026-04-08T22:04:49.412675Z 01O TEST 367/647 [4/4 concurrent test workers running] PASS Negative duration for dropped spans [tmp/build_extension/tests/ext/dropped_spans_have_negative_duration.phpt] -2026-04-08T22:04:49.412683Z 01O TEST 368/647 [4/4 concurrent test workers running] -2026-04-08T22:04:49.913278Z 01O+ -2026-04-08T22:04:49.913291Z 01O ========DIFF======== -2026-04-08T22:04:49.913295Z 01O 001+  -2026-04-08T22:04:49.913301Z 01O 001- invoked -2026-04-08T22:04:49.913303Z 01O ========DONE======== -2026-04-08T22:04:49.913308Z 01O XFAIL Test hooking fake closures of internal functions via install_hook() [tmp/build_extension/tests/ext/sandbox/install_hook/hook_internal_fake_closure.phpt] XFAIL REASON: Not implemented yet -2026-04-08T22:04:49.913317Z 01O TEST 369/647 [4/4 concurrent test workers running] PASS priority_sampling rule with resource match [tmp/build_extension/tests/ext/priority_sampling/014-rule-resource.phpt] -2026-04-08T22:04:49.913321Z 01O TEST 370/647 [4/4 concurrent test workers running] PASS Extract client IP address (ip header set) [tmp/build_extension/tests/ext/extract_ip_addr_header_ini.phpt] -2026-04-08T22:04:49.913327Z 01O TEST 371/647 [4/4 concurrent test workers running] PASS Nested closure targeting method call 02 (posthook) [tmp/build_extension/tests/ext/sandbox/hook_method/posthook_07.phpt] -2026-04-08T22:04:49.913335Z 01O TEST 372/647 [4/4 concurrent test workers running] -2026-04-08T22:04:50.414028Z 01O+ PASS Test get_memory_limit() returning correct values [tmp/build_extension/tests/ext/get_memory_limit_set_by_absolute.phpt] -2026-04-08T22:04:50.414040Z 01O TEST 373/647 [4/4 concurrent test workers running] PASS DD_APPSEC_SCA_ENABLED flag is sent to via telemetry with default value [tmp/build_extension/tests/ext/appsec/sca_flag_is_sent_01.phpt] -2026-04-08T22:04:50.414049Z 01O TEST 374/647 [4/4 concurrent test workers running] SKIP Unset, nulled and generally invalid data in exception property is ignored [tmp/build_extension/tests/ext/span_with_removed_exception.phpt] reason: : test only works before 7.4 -2026-04-08T22:04:50.414076Z 01O TEST 375/647 [4/4 concurrent test workers running] -2026-04-08T22:04:50.914551Z 01O+ PASS hook_method prehook is called with the correct scope (parent) [tmp/build_extension/tests/ext/sandbox/hook_method/prehook_scope_03.phpt] -2026-04-08T22:04:50.914564Z 01O TEST 376/647 [4/4 concurrent test workers running] PASS Suppress function call via suppressCall() [tmp/build_extension/tests/ext/sandbox/install_hook/suppress_call.phpt] -2026-04-08T22:04:50.914570Z 01O TEST 377/647 [4/4 concurrent test workers running] PASS Exceptions are handled with multi-catch syntax [tmp/build_extension/tests/ext/sandbox/exception_handled_in_multicatch.phpt] -2026-04-08T22:04:50.914582Z 01O TEST 378/647 [4/4 concurrent test workers running] PASS Invalid referrer hostname from HTTP headers [tmp/build_extension/tests/ext/referrer_extraction_01.phpt] -2026-04-08T22:04:50.914585Z 01O TEST 379/647 [4/4 concurrent test workers running] -2026-04-08T22:04:51.415298Z 01O+ PASS Test dd_trace_check_memory_under_limit() returning correct values for default [tmp/build_extension/tests/ext/check_memory_under_limit_default.phpt] -2026-04-08T22:04:51.415380Z 01O TEST 380/647 [4/4 concurrent test workers running] PASS Invalid regex: default sampling rate applies [tmp/build_extension/tests/ext/priority_sampling/invalid-regex-rule.phpt] -2026-04-08T22:04:51.415388Z 01O TEST 381/647 [4/4 concurrent test workers running] -2026-04-08T22:04:51.915991Z 01O+ PASS Telemetry test with connection reset [tmp/build_extension/tests/ext/telemetry/broken_pipe.phpt] -2026-04-08T22:04:51.916024Z 01O TEST 382/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Traced userland function catches and rethrows exception [tmp/build_extension/tests/ext/sandbox-regression/throw_exception.phpt] -2026-04-08T22:04:51.916032Z 01O TEST 383/647 [4/4 concurrent test workers running] -2026-04-08T22:04:52.416705Z 01O+ PASS Only param whose name is in DD_TRACE_HTTP_POST_DATA_PARAM_ALLOWED shouldn't be redacted [tmp/build_extension/tests/ext/root_span_url_with_post_only_allowed_params.phpt] -2026-04-08T22:04:52.416717Z 01O TEST 384/647 [4/4 concurrent test workers running] PASS root span with DD_TRACE_URL_AS_RESOURCE_NAMES_ENABLED (variant using SERVER_NAME) [tmp/build_extension/tests/ext/root_span_url_as_resource_names_no_host.phpt] -2026-04-08T22:04:52.416724Z 01O TEST 385/647 [4/4 concurrent test workers running] PASS Distributed tracing headers propagate with curl_exec() [tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl.phpt] -2026-04-08T22:04:52.416733Z 01O TEST 386/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Tracing closure set from inside non-static method [tmp/build_extension/tests/ext/sandbox-regression/closure_set_inside_object_methods.phpt] -2026-04-08T22:04:52.416739Z 01O TEST 387/647 [4/4 concurrent test workers running] PASS Ingest all spans [tmp/build_extension/tests/ext/single-span_sampling/name-matching-single-span.phpt] -2026-04-08T22:04:52.416743Z 01O TEST 388/647 [4/4 concurrent test workers running] -2026-04-08T22:04:52.917324Z 01O+ PASS Client IP should not be collected if DD_TRACE_CLIENT_IP_ENABLED/dd_trace.client_ip_enabled is not set [tmp/build_extension/tests/ext/ip_collection_01.phpt] -2026-04-08T22:04:52.917343Z 01O TEST 389/647 [4/4 concurrent test workers running] PASS Remove credentials from repository URL [tmp/build_extension/tests/ext/integrations/source_code/git_metadata_injection_remove_credentials_from_env.phpt] -2026-04-08T22:04:52.917349Z 01O TEST 390/647 [4/4 concurrent test workers running] -2026-04-08T22:04:53.417998Z 01O+ PASS Filesystem integration can also be disabled with default integrations flag [tmp/build_extension/tests/ext/telemetry/integration_filesystem_04.phpt] -2026-04-08T22:04:53.418017Z 01O TEST 391/647 [4/4 concurrent test workers running] -2026-04-08T22:04:53.918576Z 01O+ PASS Distributed tracing headers propagate with curl_exec() [tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_sampling_priority.phpt] -2026-04-08T22:04:53.918597Z 01O TEST 392/647 [4/4 concurrent test workers running] SKIP Fatal errors are ignored in shutdown handler [tmp/build_extension/tests/ext/sandbox/fatal_errors_ignored_in_shutdown.phpt] reason: Zend memory manager required -2026-04-08T22:04:53.918650Z 01O TEST 393/647 [4/4 concurrent test workers running] PASS Test max_per_second single span limiting [tmp/build_extension/tests/ext/single-span_sampling/limited-single-span.phpt] -2026-04-08T22:04:53.918660Z 01O TEST 394/647 [4/4 concurrent test workers running] SKIP Tracing Closures via install_hook() [tmp/build_extension/tests/ext/sandbox/install_hook/trace_generator_ge_php_84.phpt] reason: : test only stable on PHP >= 8.4 -2026-04-08T22:04:53.918670Z 01O TEST 395/647 [4/4 concurrent test workers running] -2026-04-08T22:04:54.419301Z 01O+ PASS DDTrace\hook_method posthook exception is sandboxed [tmp/build_extension/tests/ext/sandbox/hook_method/posthook_exceptions_02.phpt] -2026-04-08T22:04:54.419313Z 01O TEST 396/647 [4/4 concurrent test workers running] PASS Remap http.response.status_code to http.status_code - OTel HTTP Semantic Convention >= 1.21.0 [tmp/build_extension/tests/ext/otel_http_response_status_code_remapping.phpt] -2026-04-08T22:04:54.419319Z 01O TEST 397/647 [4/4 concurrent test workers running] PASS Sidecar connection in subprocess mode [tmp/build_extension/tests/ext/sidecar_connection_mode_subprocess.phpt] -2026-04-08T22:04:54.419326Z 01O TEST 398/647 [4/4 concurrent test workers running] -2026-04-08T22:04:55.921310Z 01O+ PASS E_ERROR fatal errors are tracked from hitting the max execution time [tmp/build_extension/tests/ext/sandbox/fatal_errors_are_tracked_003.phpt] -2026-04-08T22:04:55.921323Z 01O TEST 399/647 [4/4 concurrent test workers running] PASS Test get_memory_limit() returning correct values [tmp/build_extension/tests/ext/get_memory_limit_set_by_percentage.phpt] -2026-04-08T22:04:55.921330Z 01O TEST 400/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Tracing closure safely uses variables from outside scope [tmp/build_extension/tests/ext/sandbox-regression/closure_accessing_outside_variables.phpt] -2026-04-08T22:04:55.921361Z 01O TEST 401/647 [4/4 concurrent test workers running] PASS Basic functionality of dd_trace_serialize_msgpack() [tmp/build_extension/tests/ext/dd_trace_serialize_msgpack.phpt] -2026-04-08T22:04:55.921380Z 01O TEST 402/647 [4/4 concurrent test workers running] -2026-04-08T22:04:56.422263Z 01O+ PASS Sidecar connection in auto mode (default) [tmp/build_extension/tests/ext/sidecar_connection_mode_auto.phpt] -2026-04-08T22:04:56.422275Z 01O TEST 403/647 [4/4 concurrent test workers running] PASS For now, even when trace was generated by APM the produced output on standalone is 02 on _dd.p.ts [tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_asm_standalone_08.phpt] -2026-04-08T22:04:56.422281Z 01O TEST 404/647 [4/4 concurrent test workers running] PASS DDTrace\hook_method posthook error is sandboxed [tmp/build_extension/tests/ext/sandbox/hook_method/posthook_error_01.phpt] -2026-04-08T22:04:56.422292Z 01O TEST 405/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Do not throw exceptions when verifying if method or function exists [tmp/build_extension/tests/ext/sandbox-regression/do_not_check_if_class_or_function_exists_by_default.phpt] -2026-04-08T22:04:56.422297Z 01O TEST 406/647 [4/4 concurrent test workers running] -2026-04-08T22:05:00.427335Z 01O+ PASS 'spans_created' internal metric [tmp/build_extension/tests/ext/telemetry/metrics_spans_created.phpt] -2026-04-08T22:05:00.427428Z 01O TEST 407/647 [4/4 concurrent test workers running] -2026-04-08T22:05:00.928059Z 01O+ PASS Test ts is only added to traces with ASM events [tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_asm_standalone_06.phpt] -2026-04-08T22:05:00.928082Z 01O TEST 408/647 [4/4 concurrent test workers running] PASS The sidecar trace flusher sender informs about changes to the agent sample rate [tmp/build_extension/tests/ext/background-sender/agent_sampling_sidecar.phpt] -2026-04-08T22:05:00.928091Z 01O TEST 409/647 [4/4 concurrent test workers running] PASS DDTrace\hook_method prehook [tmp/build_extension/tests/ext/sandbox/hook_method/prehook_01.phpt] -2026-04-08T22:05:00.928099Z 01O TEST 410/647 [4/4 concurrent test workers running] -2026-04-08T22:05:01.929475Z 01O+ PASS DD_APPSEC_SCA_ENABLED is set by INI [tmp/build_extension/tests/ext/appsec/sca_flag_is_sent_04.phpt] -2026-04-08T22:05:01.929487Z 01O TEST 411/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Private and protected methods are called from a tracing closure [tmp/build_extension/tests/ext/sandbox-regression/access_modifier_method_access_hook.phpt] -2026-04-08T22:05:01.929495Z 01O TEST 412/647 [4/4 concurrent test workers running] PASS The container ID is sent via HTTP headers to the Agent [tmp/build_extension/tests/ext/background-sender/agent_headers_container_id.phpt] -2026-04-08T22:05:01.929504Z 01O TEST 413/647 [4/4 concurrent test workers running] PASS Explicitly drop dd.p.dm if provided in propagated tags when the incoming sampling priority is reject [tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_drop_dm.phpt] -2026-04-08T22:05:01.929509Z 01O TEST 414/647 [4/4 concurrent test workers running] -2026-04-08T22:05:02.429979Z 01O+ PASS _dd.p.ksr preserves exact 0.000001 rate without rounding away [tmp/build_extension/tests/ext/priority_sampling/031-ksr-tag-exact-sixth-decimal.phpt] -2026-04-08T22:05:02.429992Z 01O TEST 415/647 [4/4 concurrent test workers running] PASS [Prehook Regression] Keep spans in limited mode (userland functions) [tmp/build_extension/tests/ext/sandbox-prehook/keep_spans_in_limited_tracing_userland_functions.phpt] -2026-04-08T22:05:02.430000Z 01O TEST 416/647 [4/4 concurrent test workers running] PASS Test get_memory_limit() returning correct values [tmp/build_extension/tests/ext/get_memory_limit_unlimited_set_by_percentage.phpt] -2026-04-08T22:05:02.430010Z 01O TEST 417/647 [4/4 concurrent test workers running] PASS Test hooking inherited internal constructors via install_hook() [tmp/build_extension/tests/ext/sandbox/install_hook/hook_internal_inherited_constructor.phpt] -2026-04-08T22:05:02.430014Z 01O TEST 418/647 [4/4 concurrent test workers running] PASS Reserved OTel attributes that have special meaning [tmp/build_extension/tests/ext/test_special_attributes_bis.phpt] -2026-04-08T22:05:02.430020Z 01O TEST 419/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Trace function with params [tmp/build_extension/tests/ext/sandbox-regression/with_params_function_hook.phpt] -2026-04-08T22:05:02.430073Z 01O TEST 420/647 [4/4 concurrent test workers running] PASS Test tracing via attributes [tmp/build_extension/tests/ext/traced_attribute.phpt] -2026-04-08T22:05:02.430078Z 01O TEST 421/647 [4/4 concurrent test workers running] SKIP Test dd_trace_check_memory_under_limit() returning correct values [tmp/build_extension/tests/ext/check_memory_under_limit_low_user_limit.phpt] reason: Zend MM must be enabled -2026-04-08T22:05:02.430084Z 01O TEST 422/647 [4/4 concurrent test workers running] SKIP runtime-id exists in meta when profiling is enabled [tmp/build_extension/tests/ext/profiling/runtime_id_01.phpt] reason: : requires profiling -2026-04-08T22:05:02.430090Z 01O TEST 423/647 [4/4 concurrent test workers running] -2026-04-08T22:05:02.930462Z 01O+ PASS http.response.status_code takes precedence over http.status_code [tmp/build_extension/tests/ext/otel_http_response_status_code_remapping_precedence.phpt] -2026-04-08T22:05:02.930498Z 01O TEST 424/647 [4/4 concurrent test workers running] PASS Use DDTrace\close_span() on span started within internal span [tmp/build_extension/tests/ext/start_span_without_closing.phpt] -2026-04-08T22:05:02.930602Z 01O TEST 425/647 [4/4 concurrent test workers running] SKIP If an agent unix domain socket exists it will try to connect to it [tmp/build_extension/tests/ext/background-sender/default_unix_domain_socket_agent.phpt] reason: : This test is flaky in CI environments. -2026-04-08T22:05:02.930619Z 01O TEST 426/647 [4/4 concurrent test workers running] PASS Test generate_distributed_tracing_headers() [tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_generate.phpt] -2026-04-08T22:05:02.930661Z 01O TEST 427/647 [4/4 concurrent test workers running] PASS Disabled telemetry test [tmp/build_extension/tests/ext/telemetry/disabled.phpt] -2026-04-08T22:05:02.930673Z 01O TEST 428/647 [4/4 concurrent test workers running] PASS DDTrace\hook_function prehook error is sandboxed (debug) [tmp/build_extension/tests/ext/sandbox/hook_function/prehook_error_02.phpt] -2026-04-08T22:05:02.930678Z 01O TEST 429/647 [4/4 concurrent test workers running] PASS DDTrace_hook_method is passed wrong parameters [tmp/build_extension/tests/ext/wrong-parameter-errors/DDTrace_hook_method.phpt] -2026-04-08T22:05:02.930685Z 01O TEST 430/647 [4/4 concurrent test workers running] PASS Test get_memory_limit() returning correct values [tmp/build_extension/tests/ext/get_memory_limit_unlimited_set_by_absolute.phpt] -2026-04-08T22:05:02.930696Z 01O TEST 431/647 [4/4 concurrent test workers running] -2026-04-08T22:05:03.431183Z 01O+ PASS Use DDTrace\close_span() on span started within internal span [tmp/build_extension/tests/ext/start_span_without_closing_autofinish.phpt] -2026-04-08T22:05:03.431195Z 01O TEST 432/647 [4/4 concurrent test workers running] PASS DDTrace\SpanData::getLink basic functionality [tmp/build_extension/tests/ext/dd_trace_span_data_get_link.phpt] -2026-04-08T22:05:03.431201Z 01O TEST 433/647 [4/4 concurrent test workers running] PASS Signal integration telemetry [tmp/build_extension/tests/ext/telemetry/integration.phpt] -2026-04-08T22:05:03.431211Z 01O TEST 434/647 [4/4 concurrent test workers running] PASS Setting a distributed tracing context if a span is already active [tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_overwrite_active_span.phpt] -2026-04-08T22:05:03.431268Z 01O TEST 435/647 [4/4 concurrent test workers running] PASS The AWS API Gateway proxy service name should fallback to global config [tmp/build_extension/tests/ext/inferred_proxy/fallback_service_name.phpt] -2026-04-08T22:05:03.431275Z 01O TEST 436/647 [4/4 concurrent test workers running] PASS deferred loading dispatch can be overridden [tmp/build_extension/tests/ext/sandbox/deferred_load_using_function.phpt] -2026-04-08T22:05:03.431285Z 01O TEST 437/647 [4/4 concurrent test workers running] PASS Test baggage header interaction with default configurations [tmp/build_extension/tests/ext/distributed_tracing/baggage/distributed_trace_baggage_default.phpt] -2026-04-08T22:05:03.431291Z 01O TEST 438/647 [4/4 concurrent test workers running] PASS Test \datadog\appsec\v2\track_user_login_success no user id given [tmp/build_extension/tests/ext/track_user_login_success_06.phpt] -2026-04-08T22:05:03.431295Z 01O TEST 439/647 [4/4 concurrent test workers running] -2026-04-08T22:05:03.931888Z 01O+ PASS Gracefully handle out-of-sync spans from traced function [user][default properties] [tmp/build_extension/tests/ext/sandbox/spans_out_of_sync_04.phpt] -2026-04-08T22:05:03.931911Z 01O TEST 440/647 [4/4 concurrent test workers running] PASS Test baggage header behavior with encoding and decoding [tmp/build_extension/tests/ext/distributed_tracing/baggage/distributed_trace_baggage_decoding_encoding.phpt] -2026-04-08T22:05:03.931920Z 01O TEST 441/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Tracing closure accesses private static method [tmp/build_extension/tests/ext/sandbox-regression/private_self_access.phpt] -2026-04-08T22:05:03.931943Z 01O TEST 442/647 [4/4 concurrent test workers running] PASS When DD_GIT_COMMIT_SHA is specified, _dd.git_commit_sha is injected [tmp/build_extension/tests/ext/integrations/source_code/commit_sha_env_var.phpt] -2026-04-08T22:05:03.931958Z 01O TEST 443/647 [4/4 concurrent test workers running] PASS The background sender informs about changes to the agent sample rate [tmp/build_extension/tests/ext/background-sender/agent_sampling.phpt] -2026-04-08T22:05:03.931966Z 01O TEST 444/647 [4/4 concurrent test workers running] PASS Ingest all spans [tmp/build_extension/tests/ext/single-span_sampling/accept-single-span.phpt] -2026-04-08T22:05:03.931973Z 01O TEST 445/647 [4/4 concurrent test workers running] -2026-04-08T22:05:04.432420Z 01O+ PASS DDTrace\hook_function prehook exception is sandboxed (debug) [tmp/build_extension/tests/ext/sandbox/hook_function/prehook_exceptions_02.phpt] -2026-04-08T22:05:04.432432Z 01O TEST 446/647 [4/4 concurrent test workers running] PASS Long running manual flush [tmp/build_extension/tests/ext/pcntl/pcntl_fork_long_running_manual.phpt] -2026-04-08T22:05:04.432438Z 01O TEST 447/647 [4/4 concurrent test workers running] PASS Values of an array are not redacted when the array base is in the DD_TRACE_HTTP_POST_DATA_PARAM_ALLOWED env var [tmp/build_extension/tests/ext/root_span_url_with_post_array_allowed.phpt] -2026-04-08T22:05:04.432481Z 01O TEST 448/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Trace extended method when called from parent class [tmp/build_extension/tests/ext/sandbox-regression/overriding_method_defined_in_parent.phpt] -2026-04-08T22:05:04.432487Z 01O TEST 449/647 [4/4 concurrent test workers running] -2026-04-08T22:05:04.933065Z 01O+ SKIP Send crashtracker report when segmentation fault signal is raised and config enables it [tmp/build_extension/tests/ext/crashtracker_segfault.phpt] reason: : intentionally causes segfaults -2026-04-08T22:05:04.933085Z 01O TEST 450/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Namespaced functions and methods are traced [tmp/build_extension/tests/ext/sandbox-regression/namespaces.phpt] -2026-04-08T22:05:04.933100Z 01O TEST 451/647 [4/4 concurrent test workers running] PASS Invalid _dd.p.ts - Non hexadecimal [tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_asm_standalone_03.phpt] -2026-04-08T22:05:04.933133Z 01O TEST 452/647 [4/4 concurrent test workers running] PASS Add meta struct string [tmp/build_extension/tests/ext/meta_struct.phpt] -2026-04-08T22:05:04.933147Z 01O TEST 453/647 [4/4 concurrent test workers running] SKIP Request init hook ignores fatal errors [tmp/build_extension/tests/ext/autoload-php-files/ignores_fatal_errors.phpt] reason: Zend MM must be enabled -2026-04-08T22:05:04.933155Z 01O TEST 454/647 [4/4 concurrent test workers running] PASS Serialization of a span with multiple span links [tmp/build_extension/tests/ext/dd_trace_span_data_serialization_with_links.phpt] -2026-04-08T22:05:04.933163Z 01O TEST 455/647 [4/4 concurrent test workers running] PASS Reserved OTel attributes that have special meaning [tmp/build_extension/tests/ext/test_special_attributes.phpt] -2026-04-08T22:05:04.933167Z 01O TEST 456/647 [4/4 concurrent test workers running] -2026-04-08T22:05:05.934525Z 01O+ PASS Assert that the default environment can be read from agent info [tmp/build_extension/tests/ext/request-replayer/dd_trace_agent_env.phpt] -2026-04-08T22:05:05.934540Z 01O TEST 457/647 [4/4 concurrent test workers running] PASS _dd.p.ksr propagated tag formats rate with up to 6 decimal digits and no trailing zeros [tmp/build_extension/tests/ext/priority_sampling/028-ksr-tag-formatting.phpt] -2026-04-08T22:05:05.934548Z 01O TEST 458/647 [4/4 concurrent test workers running] PASS [Prehook Regression] Exceptions and errors are ignored when inside a tracing closure [tmp/build_extension/tests/ext/sandbox-prehook/exceptions_and_errors_are_ignored_in_tracing_closure.phpt] -2026-04-08T22:05:05.934576Z 01O TEST 459/647 [4/4 concurrent test workers running] PASS Extract client IP address (no ip header set) [tmp/build_extension/tests/ext/extract_ip_addr.phpt] -2026-04-08T22:05:05.934587Z 01O TEST 460/647 [4/4 concurrent test workers running] -2026-04-08T22:05:13.444047Z 01O+ PASS Check the library config files [tmp/build_extension/tests/ext/library_config/local_config.phpt] -2026-04-08T22:05:13.444088Z 01O TEST 461/647 [4/4 concurrent test workers running] -2026-04-08T22:05:13.944451Z 01O+ PASS Bug #61728 (PHP crash when calling ob_start in request_shutdown phase) [tmp/build_extension/tests/ext/from_php_7_3_bug61728.phpt] -2026-04-08T22:05:13.944522Z 01O TEST 462/647 [4/4 concurrent test workers running] PASS Invalid (non-string) keys in span metadata are dropped [tmp/build_extension/tests/ext/sandbox/safe_to_string_metadata_drops_invalid_keys.phpt] -2026-04-08T22:05:13.944530Z 01O TEST 463/647 [4/4 concurrent test workers running] SKIP Test fiber observing [tmp/build_extension/tests/ext/fibers/fiber_stack_switch.phpt] reason: : Fibers are a PHP 8.1+ feature -2026-04-08T22:05:13.944540Z 01O TEST 464/647 [4/4 concurrent test workers running] PASS Test \datadog\appsec\v2\track_user_login_success when user is string [tmp/build_extension/tests/ext/track_user_login_success_01.phpt] -2026-04-08T22:05:13.944544Z 01O TEST 465/647 [4/4 concurrent test workers running] -2026-04-08T22:05:14.445100Z 01O+ PASS Verify the client ip is added when x-forwarded-for header is present. [tmp/build_extension/tests/ext/root_span_http_client_ip_x_forwarded_for.phpt] -2026-04-08T22:05:14.445142Z 01O TEST 466/647 [4/4 concurrent test workers running] PASS Keep spans in limited mode (userland methods) [tmp/build_extension/tests/ext/sandbox/keep_spans_in_limited_tracing_userland_methods.phpt] -2026-04-08T22:05:14.445149Z 01O TEST 467/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Trace protected method [tmp/build_extension/tests/ext/sandbox-regression/protected_method_hook.phpt] -2026-04-08T22:05:14.445183Z 01O TEST 468/647 [4/4 concurrent test workers running] PASS Static tracing closures will not bind $this [tmp/build_extension/tests/ext/sandbox/static_tracing_closures_will_not_bind_this.phpt] -2026-04-08T22:05:14.445199Z 01O TEST 469/647 [4/4 concurrent test workers running] PASS Transmit distributed header information to spans [tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_bogus_ids.phpt] -2026-04-08T22:05:14.445206Z 01O TEST 470/647 [4/4 concurrent test workers running] -2026-04-08T22:05:14.945864Z 01O+ PASS [Sandbox regression] Trace method with params [tmp/build_extension/tests/ext/sandbox-regression/with_params_method_hook.phpt] -2026-04-08T22:05:14.945885Z 01O TEST 471/647 [4/4 concurrent test workers running] PASS Client IP should be collected if env DD_TRACE_CLIENT_IP_ENABLED is set to true [tmp/build_extension/tests/ext/ip_collection_03.phpt] -2026-04-08T22:05:14.945892Z 01O TEST 472/647 [4/4 concurrent test workers running] PASS DDTrace\hook_function prehook is passed the correct args (variadic) [tmp/build_extension/tests/ext/sandbox/hook_function/prehook_02.phpt] -2026-04-08T22:05:14.945902Z 01O TEST 473/647 [4/4 concurrent test workers running] PASS Existing errors are kept [tmp/build_extension/tests/ext/sandbox/get_last_error.phpt] -2026-04-08T22:05:14.945906Z 01O TEST 474/647 [4/4 concurrent test workers running] PASS DDTrace\hook_method prehook is passed the correct args (variadic) [tmp/build_extension/tests/ext/sandbox/hook_method/prehook_02.phpt] -2026-04-08T22:05:14.945911Z 01O TEST 475/647 [4/4 concurrent test workers running] -2026-04-08T22:05:15.446376Z 01O+ PASS Filesystem integration depends on RASP. If RASP is enabled but wrapped functions are not used, it is not enabled [tmp/build_extension/tests/ext/telemetry/integration_filesystem_02.phpt] -2026-04-08T22:05:15.446443Z 01O TEST 476/647 [4/4 concurrent test workers running] PASS Distributed tracing headers propagate with curl_multi_exec() and headers set with curl_setopt_array() [tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_multi_exec_existing_headers_002.phpt] -2026-04-08T22:05:15.446451Z 01O TEST 477/647 [4/4 concurrent test workers running] PASS Exceptions are handled in the correct catch frame [tmp/build_extension/tests/ext/sandbox/exception_handled_in_correct_catch_frame.phpt] -2026-04-08T22:05:15.446466Z 01O TEST 478/647 [4/4 concurrent test workers running] PASS Basic Git Metadata Injection from global tags (Repository URL & Commit Sha) [tmp/build_extension/tests/ext/integrations/source_code/git_metadata_injection_from_global_tags.phpt] -2026-04-08T22:05:15.446471Z 01O TEST 479/647 [4/4 concurrent test workers running] PASS Test creating a new span stack [tmp/build_extension/tests/ext/span_stack/start_span_stack.phpt] -2026-04-08T22:05:15.446477Z 01O TEST 480/647 [4/4 concurrent test workers running] PASS DogStatsD is disabled in agentlessmode [tmp/build_extension/tests/ext/dogstatsd/disabled_if_agentless.phpt] -2026-04-08T22:05:15.446484Z 01O TEST 481/647 [4/4 concurrent test workers running] PASS DD_APPSEC_SCA_ENABLED flag is sent to via telemetry with true [tmp/build_extension/tests/ext/appsec/sca_flag_is_sent_02.phpt] -2026-04-08T22:05:15.446492Z 01O TEST 482/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Trace class constructor [tmp/build_extension/tests/ext/sandbox-regression/overriding_construct.phpt] -2026-04-08T22:05:15.446498Z 01O TEST 483/647 [4/4 concurrent test workers running] -2026-04-08T22:05:15.947162Z 01O+ PASS hook_method posthook should have access only to public members [tmp/build_extension/tests/ext/sandbox/hook_method/posthook_access_01.phpt] -2026-04-08T22:05:15.947176Z 01O TEST 484/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Untrace a function [tmp/build_extension/tests/ext/sandbox-regression/reset_function_tracing.phpt] -2026-04-08T22:05:15.947181Z 01O TEST 485/647 [4/4 concurrent test workers running] PASS DDTrace\hook_function posthook is called at exit (shutdown handler) [tmp/build_extension/tests/ext/sandbox/hook_function/posthook_exit_02.phpt] -2026-04-08T22:05:15.947190Z 01O TEST 486/647 [4/4 concurrent test workers running] PASS run sampling algorithm on multiple trace IDs and ensure that the results are deterministic [tmp/build_extension/tests/ext/priority_sampling/024-deterministic-sampling.phpt] -2026-04-08T22:05:15.947203Z 01O TEST 487/647 [4/4 concurrent test workers running] PASS Root span with http.url and unobfuscated query string with empty regex [tmp/build_extension/tests/ext/root_span_url_with_query_params_obfuscation_empty.phpt] -2026-04-08T22:05:15.947210Z 01O TEST 488/647 [4/4 concurrent test workers running] PASS dd_trace_closed_spans_count() tracks closed spans from userland and C-level [tmp/build_extension/tests/ext/sandbox/dd_trace_closed_spans_count.phpt] -2026-04-08T22:05:15.947223Z 01O TEST 489/647 [4/4 concurrent test workers running] PASS priority_sampling default decision retained [tmp/build_extension/tests/ext/priority_sampling/012-default.phpt] -2026-04-08T22:05:15.947278Z 01O TEST 490/647 [4/4 concurrent test workers running] PASS Span creation with distributed context set before starting span [tmp/build_extension/tests/ext/inferred_proxy/propagated_tags_before_span_start.phpt] -2026-04-08T22:05:15.947285Z 01O TEST 491/647 [4/4 concurrent test workers running] PASS Gracefully handle out-of-sync spans from traced function [internal] [tmp/build_extension/tests/ext/sandbox/spans_out_of_sync_01.phpt] -2026-04-08T22:05:15.947294Z 01O TEST 492/647 [4/4 concurrent test workers running] PASS Do not execute the default spl_autoload implementation if no autoloader is specified [tmp/build_extension/tests/ext/autoload-php-files/skip_default_autoloader.phpt] -2026-04-08T22:05:15.947298Z 01O TEST 493/647 [4/4 concurrent test workers running] -2026-04-08T22:05:16.447763Z 01O+ PASS Invalid _dd.p.ts - More bits than allowed [tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_asm_standalone_04.phpt] -2026-04-08T22:05:16.447774Z 01O TEST 494/647 [4/4 concurrent test workers running] PASS Filesystem integration depends on RASP. If RASP is enabled and wrapped function are used, then it is enabled [tmp/build_extension/tests/ext/telemetry/integration_filesystem_03.phpt] -2026-04-08T22:05:16.447781Z 01O TEST 495/647 [4/4 concurrent test workers running] PASS Test consume_distributed_tracing_headers() with function argument [tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_consume_func.phpt] -2026-04-08T22:05:16.447789Z 01O TEST 496/647 [4/4 concurrent test workers running] PASS Thread mode sidecar uses abstract Unix socket [tmp/build_extension/tests/ext/background-sender/sidecar_thread_mode_permissions.phpt] -2026-04-08T22:05:16.447794Z 01O TEST 497/647 [4/4 concurrent test workers running] PASS Transmit distributed header information to spans via B3 headers [tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_inherit_b3.phpt] -2026-04-08T22:05:16.447799Z 01O TEST 498/647 [4/4 concurrent test workers running] -2026-04-08T22:05:16.948574Z 01O+ PASS Test delayed resolution of tracing attributes [tmp/build_extension/tests/ext/traced_attribute_delayed.phpt] -2026-04-08T22:05:16.948588Z 01O TEST 499/647 [4/4 concurrent test workers running] PASS [Prehook regression] Private and protected properties are accessed from a tracing closure [tmp/build_extension/tests/ext/sandbox-prehook/access_modifier_property_access_hook.phpt] -2026-04-08T22:05:16.948594Z 01O TEST 500/647 [4/4 concurrent test workers running] PASS DDTrace\hook_method prehook error is sandboxed (debug) [tmp/build_extension/tests/ext/sandbox/hook_method/prehook_error_02.phpt] -2026-04-08T22:05:16.948602Z 01O TEST 501/647 [4/4 concurrent test workers running] PASS DDTrace\hook_function prehook exception is sandboxed (internal) [tmp/build_extension/tests/ext/sandbox/hook_function/prehook_exceptions_03.phpt] -2026-04-08T22:05:16.948615Z 01O TEST 502/647 [4/4 concurrent test workers running] PASS Exit gracefully handles a dropped span [tmp/build_extension/tests/ext/sandbox/exit_and_drop_span.phpt] -2026-04-08T22:05:16.948622Z 01O TEST 503/647 [4/4 concurrent test workers running] PASS Client IP should not be collected if ini dd_trace.client_ip_header_disabled is set to true [tmp/build_extension/tests/ext/ip_collection_04.phpt] -2026-04-08T22:05:16.948674Z 01O TEST 504/647 [4/4 concurrent test workers running] PASS Span metrics is safely converted to numerics without errors or exceptions [tmp/build_extension/tests/ext/sandbox/safe_to_string_metrics.phpt] -2026-04-08T22:05:16.948679Z 01O TEST 505/647 [4/4 concurrent test workers running] PASS [Sandbox] Hook implementations of interface methods [tmp/build_extension/tests/ext/sandbox/interface_hook.phpt] -2026-04-08T22:05:16.948699Z 01O TEST 506/647 [4/4 concurrent test workers running] PASS Ensure we can read C configuration data [tmp/build_extension/tests/ext/read_c_configuration.phpt] -2026-04-08T22:05:16.948731Z 01O TEST 507/647 [4/4 concurrent test workers running] PASS Test that individual environment variables take precedence over DD_TAGS [tmp/build_extension/tests/ext/ust_precedence_over_ddtags.phpt] -2026-04-08T22:05:16.948737Z 01O TEST 508/647 [4/4 concurrent test workers running] -2026-04-08T22:05:17.449285Z 01O+ PASS When ASM tracing is disabled and there is asm event, trace source tags is populated [tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_existing_headers_007.phpt] -2026-04-08T22:05:17.449298Z 01O TEST 509/647 [4/4 concurrent test workers running] PASS A PHP request timeout does not leak/segfault (run with leak detection) [tmp/build_extension/tests/ext/request_timeout_01.phpt] -2026-04-08T22:05:17.449305Z 01O TEST 510/647 [4/4 concurrent test workers running] PASS priority_sampling service mapping [tmp/build_extension/tests/ext/priority_sampling/013-rule-service-mapped.phpt] -2026-04-08T22:05:17.449328Z 01O TEST 511/647 [4/4 concurrent test workers running] PASS Adding additional function arguments on internal functions via install_hook() [tmp/build_extension/tests/ext/sandbox/install_hook/replace_hook_args_internal.phpt] -2026-04-08T22:05:17.449338Z 01O TEST 512/647 [4/4 concurrent test workers running] PASS Auto-flushing will not instrument while flushing [tmp/build_extension/tests/ext/sandbox/auto_flush_disables_tracing.phpt] -2026-04-08T22:05:17.449346Z 01O TEST 513/647 [4/4 concurrent test workers running] PASS Request init hook loads files without using multibyte flag [tmp/build_extension/tests/ext/autoload-php-files/file_contains_non_printable_character.phpt] -2026-04-08T22:05:17.449359Z 01O TEST 514/647 [4/4 concurrent test workers running] PASS An Inferred Span should not be created on missing headers [tmp/build_extension/tests/ext/inferred_proxy/incomplete_headers.phpt] -2026-04-08T22:05:17.449363Z 01O TEST 515/647 [4/4 concurrent test workers running] -2026-04-08T22:05:17.949771Z 01O+ PASS Check sample rate is in effect [tmp/build_extension/tests/ext/single-span_sampling/read-single-span-sampling-config-from-file.phpt] -2026-04-08T22:05:17.949792Z 01O TEST 516/647 [4/4 concurrent test workers running] SKIP rate limiter always allow when DD_EXPERIMENTAL_APPSEC_STANDALONE_ENABLED enabled [tmp/build_extension/tests/ext/limiter/003-limiter-with-asm-standalone.phpt] reason: timing sensitive test, does not make sense with valgrind -2026-04-08T22:05:17.949850Z 01O TEST 517/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Method invoked via reflection correctly returns created object [tmp/build_extension/tests/ext/sandbox-regression/method_invoked_via_reflection.phpt] -2026-04-08T22:05:17.949872Z 01O TEST 518/647 [4/4 concurrent test workers running] PASS DDTrace\hook_function posthook error is sandboxed [tmp/build_extension/tests/ext/sandbox/hook_function/posthook_error_01.phpt] -2026-04-08T22:05:17.949891Z 01O TEST 519/647 [4/4 concurrent test workers running] SKIP [crasht] opcache tags are attached to crash report [tmp/build_extension/tests/ext/crashtracker_jit_tags.phpt] reason: : intentionally causes segfaults -2026-04-08T22:05:17.949903Z 01O TEST 520/647 [4/4 concurrent test workers running] PASS _dd.p.ksr propagated tag is set for rule-based sampling [tmp/build_extension/tests/ext/priority_sampling/025-ksr-tag-rule-sampling.phpt] -2026-04-08T22:05:17.949914Z 01O TEST 521/647 [4/4 concurrent test workers running] PASS [Prehook Regression] Exceptions get attached to spans [tmp/build_extension/tests/ext/sandbox-prehook/exception_handling.phpt] -2026-04-08T22:05:17.949919Z 01O TEST 522/647 [4/4 concurrent test workers running] PASS DDTrace\hook_function posthook works with variadic functions [tmp/build_extension/tests/ext/sandbox/hook_function/posthook_variadic.phpt] -2026-04-08T22:05:17.949929Z 01O TEST 523/647 [4/4 concurrent test workers running] PASS DD_TRACE_SIDECAR_CONNECTION_MODE configuration parsing [tmp/build_extension/tests/ext/sidecar_connection_mode_config.phpt] -2026-04-08T22:05:17.949941Z 01O TEST 524/647 [4/4 concurrent test workers running] PASS Finally block should only be entered once [tmp/build_extension/tests/ext/sandbox-regression/uncaught_exception_with_finally.phpt] -2026-04-08T22:05:17.949944Z 01O TEST 525/647 [4/4 concurrent test workers running] -2026-04-08T22:05:18.450471Z 01O+ PASS Distributed tracing headers propagate with curl_multi_exec() after curl_copy_handle() [tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_multi_exec_copy_handle.phpt] -2026-04-08T22:05:18.450492Z 01O TEST 526/647 [4/4 concurrent test workers running] PASS Send DogStatsD metrics over an Unix Domain Socket [tmp/build_extension/tests/ext/dogstatsd/metrics_over_uds.phpt] -2026-04-08T22:05:18.450500Z 01O TEST 527/647 [4/4 concurrent test workers running] PASS [Prehook Regression] Exception in tracing closure gets logged [tmp/build_extension/tests/ext/sandbox-prehook/exception_error_log.phpt] -2026-04-08T22:05:18.450510Z 01O TEST 528/647 [4/4 concurrent test workers running] PASS _dd.p.ksr rounds rate below 6-decimal precision to 0 [tmp/build_extension/tests/ext/priority_sampling/032-ksr-tag-below-precision-rounds-to-zero.phpt] -2026-04-08T22:05:18.450515Z 01O TEST 529/647 [4/4 concurrent test workers running] PASS Global explicitly set priority sampling must be respected [tmp/build_extension/tests/ext/priority_sampling/manual_global_override.phpt] -2026-04-08T22:05:18.450521Z 01O TEST 530/647 [4/4 concurrent test workers running] PASS DDTrace_trace_id is passed wrong parameters [tmp/build_extension/tests/ext/wrong-parameter-errors/DDTrace_trace_id.phpt] -2026-04-08T22:05:18.450578Z 01O TEST 531/647 [4/4 concurrent test workers running] PASS Functions that return by reference are instrumented [tmp/build_extension/tests/ext/sandbox/return_by_ref.phpt] -2026-04-08T22:05:18.450588Z 01O TEST 532/647 [4/4 concurrent test workers running] PASS Test \DDTrace\set_user with no metadata [tmp/build_extension/tests/ext/set_user_no_metadata.phpt] -2026-04-08T22:05:18.450596Z 01O TEST 533/647 [4/4 concurrent test workers running] PASS Functions that return generators are instrumented [tmp/build_extension/tests/ext/sandbox/generator.phpt] -2026-04-08T22:05:18.450610Z 01O TEST 534/647 [4/4 concurrent test workers running] PASS Distributed tracing headers propagate when curl_multi_init() is called before curl_init() [tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_multi_exec_002.phpt] -2026-04-08T22:05:18.450618Z 01O TEST 535/647 [4/4 concurrent test workers running] PASS Test baggage header interaction with bytes limits configured [tmp/build_extension/tests/ext/distributed_tracing/baggage/distributed_trace_baggage_configured_bytes.phpt] -2026-04-08T22:05:18.450625Z 01O TEST 536/647 [4/4 concurrent test workers running] PASS Distributed tracing headers propagate after curl_copy_handle() [tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_copy_handle.phpt] -2026-04-08T22:05:18.450651Z 01O TEST 537/647 [4/4 concurrent test workers running] PASS DDTrace_set_distributed_tracing_context is passed wrong parameters [tmp/build_extension/tests/ext/wrong-parameter-errors/set_distributed_tracing_context.phpt] -2026-04-08T22:05:18.450661Z 01O TEST 538/647 [4/4 concurrent test workers running] -2026-04-08T22:05:18.951247Z 01O+ PASS dd_trace_send_traces_via_thread is passed wrong parameters [tmp/build_extension/tests/ext/wrong-parameter-errors/dd_trace_send_traces_via_thread.phpt] -2026-04-08T22:05:18.951261Z 01O TEST 539/647 [4/4 concurrent test workers running] PASS DDTrace\trace_function() can trace with internal spans [tmp/build_extension/tests/ext/sandbox/dd_trace_function_complex.phpt] -2026-04-08T22:05:18.951271Z 01O TEST 540/647 [4/4 concurrent test workers running] PASS Priority sampling rules should use the inferred span's service & resource [tmp/build_extension/tests/ext/inferred_proxy/sampling_rules.phpt] -2026-04-08T22:05:18.951280Z 01O TEST 541/647 [4/4 concurrent test workers running] PASS Distributed tracing headers propagate with curl_multi_exec() [tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_multi_exec_001.phpt] -2026-04-08T22:05:18.951286Z 01O TEST 542/647 [4/4 concurrent test workers running] PASS Test \datadog\appsec\v2\track_user_login_success login parameter takes precedence over login value on user object [tmp/build_extension/tests/ext/track_user_login_success_03.phpt] -2026-04-08T22:05:18.951292Z 01O TEST 543/647 [4/4 concurrent test workers running] PASS DDTrace\hook_method prehook does not mess up spans with children [tmp/build_extension/tests/ext/sandbox/hook_method/prehook_span_ids_02.phpt] -2026-04-08T22:05:18.951300Z 01O TEST 544/647 [4/4 concurrent test workers running] PASS Test observing span creation [tmp/build_extension/tests/ext/span_create_observer.phpt] -2026-04-08T22:05:18.951368Z 01O TEST 545/647 [4/4 concurrent test workers running] PASS Test dd_trace_check_memory_under_limit() returning correct values [tmp/build_extension/tests/ext/check_memory_under_limit_high_limit.phpt] -2026-04-08T22:05:18.951375Z 01O TEST 546/647 [4/4 concurrent test workers running] PASS allowNestedHook() [tmp/build_extension/tests/ext/sandbox/install_hook/allow_nested_hook.phpt] -2026-04-08T22:05:18.951383Z 01O TEST 547/647 [4/4 concurrent test workers running] -2026-04-08T22:05:19.451887Z 01O+ PASS Disabling root span removes the root span properly [tmp/build_extension/tests/ext/disabling_root_span_generation_at_runtime.phpt] -2026-04-08T22:05:19.451905Z 01O TEST 548/647 [4/4 concurrent test workers running] PASS DDTrace\hook_function posthook exception is sandboxed (internal) [tmp/build_extension/tests/ext/sandbox/hook_function/posthook_exceptions_03.phpt] -2026-04-08T22:05:19.451913Z 01O TEST 549/647 [4/4 concurrent test workers running] PASS _dd.p.ts is not manipulated when no asm event [tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_asm_standalone_09.phpt] -2026-04-08T22:05:19.451938Z 01O TEST 550/647 [4/4 concurrent test workers running] PASS Verify the right span tags are present when multiple XFF headers are provided. [tmp/build_extension/tests/ext/root_span_http_client_ip_duplicate_ip_headers.phpt] -2026-04-08T22:05:19.451947Z 01O TEST 551/647 [4/4 concurrent test workers running] PASS HTTP server error status configuration parsing test [tmp/build_extension/tests/ext/error_status_configuration/http_error_status_parsing.phpt] -2026-04-08T22:05:19.451956Z 01O TEST 552/647 [4/4 concurrent test workers running] PASS Retrieve the filename where the function/method originated from [tmp/build_extension/tests/ext/sandbox/install_hook/get_source_file.phpt] -2026-04-08T22:05:19.451965Z 01O TEST 553/647 [4/4 concurrent test workers running] PASS [Prehook regression] Trace public static method [tmp/build_extension/tests/ext/sandbox-prehook/trace_static_method.phpt] -2026-04-08T22:05:19.451971Z 01O TEST 554/647 [4/4 concurrent test workers running] -2026-04-08T22:05:19.952705Z 01O+ PASS [Prehook regression] Private and protected methods are called from a tracing closure [tmp/build_extension/tests/ext/sandbox-prehook/access_modifier_method_access_hook.phpt] -2026-04-08T22:05:19.952724Z 01O TEST 555/647 [4/4 concurrent test workers running] PASS Extension is not compiled with STATIC_TLS [tmp/build_extension/tests/ext/extension_no_static_tls.phpt] -2026-04-08T22:05:19.952745Z 01O TEST 556/647 [4/4 concurrent test workers running] PASS Test invalid $_SERVER values are properly ignored [tmp/build_extension/tests/ext/extract_server_values.phpt] -2026-04-08T22:05:19.952749Z 01O TEST 557/647 [4/4 concurrent test workers running] -2026-04-08T22:05:20.453289Z 01O+ PASS Test class scoped file inclusion hooking [tmp/build_extension/tests/ext/sandbox/install_hook/hook_scoped_file.phpt] -2026-04-08T22:05:20.453300Z 01O TEST 558/647 [4/4 concurrent test workers running] PASS Distributed tracing headers propagate existing headers on error: curl_setopt_array() [tmp/build_extension/tests/ext/integrations/curl/distributed_tracing_curl_existing_headers_003.phpt] -2026-04-08T22:05:20.453349Z 01O TEST 559/647 [4/4 concurrent test workers running] PASS [Sandbox] Hook implementations of interface methods on all direct implementors [tmp/build_extension/tests/ext/sandbox/interface_inherit_hook_explicit_reimplement.phpt] -2026-04-08T22:05:20.453360Z 01O TEST 560/647 [4/4 concurrent test workers running] SKIP Ensure proper interoperability with multiple observers installed on observer removal [tmp/build_extension/tests/ext/sandbox/install_hook/remove_executing_hook.phpt] reason: : zend_test may not be loaded twice -2026-04-08T22:05:20.453368Z 01O TEST 561/647 [4/4 concurrent test workers running] -2026-04-08T22:05:20.953431Z 01O+ SKIP Don't dump backtrace when segmentation fault signal is raised and config is default [tmp/build_extension/tests/ext/segfault_backtrace_disabled.phpt] reason: : intentionally causes segfaults -2026-04-08T22:05:20.953452Z 01O TEST 562/647 [4/4 concurrent test workers running] PASS Sampling priority is changed to user keep if no asm upstream and asm standalone enabled. Also apm disabled tag is added [tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_asm_standalone_01.phpt] -2026-04-08T22:05:20.953460Z 01O TEST 563/647 [4/4 concurrent test workers running] PASS An empty container ID is not sent via HTTP headers to the Agent [tmp/build_extension/tests/ext/background-sender/agent_headers_container_id_empty.phpt] -2026-04-08T22:05:20.953485Z 01O TEST 564/647 [4/4 concurrent test workers running] PASS Verify the client ip is added from the peer IP when no XFF header is available. [tmp/build_extension/tests/ext/root_span_http_client_ip.phpt] -2026-04-08T22:05:20.953501Z 01O TEST 565/647 [4/4 concurrent test workers running] PASS Invalid rule json: default sampling rate applies [tmp/build_extension/tests/ext/priority_sampling/invalid-json-rule.phpt] -2026-04-08T22:05:20.953507Z 01O TEST 566/647 [4/4 concurrent test workers running] -2026-04-08T22:05:21.454111Z 01O+ PASS Test \DDTrace\set_user with propagation enabled by default through configuration [tmp/build_extension/tests/ext/set_user_with_propagation_by_default.phpt] -2026-04-08T22:05:21.454126Z 01O TEST 567/647 [4/4 concurrent test workers running] PASS Test baggage span tags specifying keys [tmp/build_extension/tests/ext/distributed_tracing/baggage/baggage_span_tags_keys.phpt] -2026-04-08T22:05:21.454132Z 01O TEST 568/647 [4/4 concurrent test workers running] PASS root span with DD_TRACE_URL_AS_RESOURCE_NAMES_ENABLED [tmp/build_extension/tests/ext/root_span_url_as_resource_names.phpt] -2026-04-08T22:05:21.454142Z 01O TEST 569/647 [4/4 concurrent test workers running] PASS Installing a live debugger span probe [tmp/build_extension/tests/ext/live-debugger/debugger_span_probe.phpt] -2026-04-08T22:05:21.454147Z 01O TEST 570/647 [4/4 concurrent test workers running] SKIP [Prehook regression] Trace public static method [tmp/build_extension/tests/ext/sandbox/preinitialized_tracing_of_method.phpt] reason: : Not a supported scenario anymore -2026-04-08T22:05:21.454153Z 01O TEST 571/647 [4/4 concurrent test workers running] PASS priority_sampling rule with name reject [tmp/build_extension/tests/ext/priority_sampling/006-rule-name-reject.phpt] -2026-04-08T22:05:21.454209Z 01O TEST 572/647 [4/4 concurrent test workers running] PASS Skip previously registered autoloader on match [tmp/build_extension/tests/ext/autoload-php-files/skip_registered_autoloader_match.phpt] -2026-04-08T22:05:21.454221Z 01O TEST 573/647 [4/4 concurrent test workers running] -2026-04-08T22:05:21.954892Z 01O+ SKIP Span metadata is safely converted to strings without errors or exceptions [tmp/build_extension/tests/ext/sandbox/safe_to_string_metadata_ge_php_84.phpt] reason: : test only stable on PHP >= 8.4 -2026-04-08T22:05:21.954906Z 01O TEST 574/647 [4/4 concurrent test workers running] PASS Tracing generic callables via install_hook() [tmp/build_extension/tests/ext/sandbox/install_hook/trace_callable.phpt] -2026-04-08T22:05:21.954912Z 01O TEST 575/647 [4/4 concurrent test workers running] PASS Test autoclosing of spans on abandoned span stacks [tmp/build_extension/tests/ext/span_stack/span_trace_stack_autoclose.phpt] -2026-04-08T22:05:21.954920Z 01O TEST 576/647 [4/4 concurrent test workers running] PASS Execute the default spl_autoload implementation if spl_autoload_register() is called without args [tmp/build_extension/tests/ext/autoload-php-files/default_spl_autoloader.phpt] -2026-04-08T22:05:21.954926Z 01O TEST 577/647 [4/4 concurrent test workers running] PASS Send DogStatsD metrics over a UDP socket [tmp/build_extension/tests/ext/dogstatsd/metrics_over_udp.phpt] -2026-04-08T22:05:21.954934Z 01O TEST 578/647 [4/4 concurrent test workers running] PASS Calling DDTrace\trace_method() overwrites previous tracing functions in unresolved aliases [tmp/build_extension/tests/ext/sandbox/dd_trace_function_alias_overwrite.phpt] -2026-04-08T22:05:21.954949Z 01O TEST 579/647 [4/4 concurrent test workers running] -2026-04-08T22:05:22.457387Z 01O+ PASS DDTrace\hook_method posthook is passed the correct args (variadic) [tmp/build_extension/tests/ext/sandbox/hook_method/posthook_02.phpt] -2026-04-08T22:05:22.457399Z 01O TEST 580/647 [4/4 concurrent test workers running] -2026-04-08T22:05:25.960179Z 01O+ PASS Simple telemetry test [tmp/build_extension/tests/ext/telemetry/simple.phpt] -2026-04-08T22:05:25.960214Z 01O TEST 581/647 [4/4 concurrent test workers running] PASS priority_sampling regression for GH-1828 [tmp/build_extension/tests/ext/priority_sampling/gh-1828.phpt] -2026-04-08T22:05:25.960221Z 01O TEST 582/647 [4/4 concurrent test workers running] PASS [regression] The limiter must reset after a flush [tmp/build_extension/tests/ext/sandbox-regression/dd_trace_tracer_limiter_reset_flush.phpt] -2026-04-08T22:05:25.960242Z 01O TEST 583/647 [4/4 concurrent test workers running] -2026-04-08T22:05:26.460677Z 01O+ PASS overrideException() [tmp/build_extension/tests/ext/sandbox/install_hook/override_exception.phpt] -2026-04-08T22:05:26.460686Z 01O TEST 584/647 [4/4 concurrent test workers running] -2026-04-08T22:05:27.462127Z 01O+ PASS HTTP headers are sent to the Agent from the background sender over an unix domain socket [tmp/build_extension/tests/ext/background-sender/agent_headers_unix_domain_socket.phpt] -2026-04-08T22:05:27.462139Z 01O TEST 585/647 [4/4 concurrent test workers running] -2026-04-08T22:05:27.962461Z 01O+ PASS Gracefully handle out-of-sync spans from traced function [internal][default properties] [tmp/build_extension/tests/ext/sandbox/spans_out_of_sync_02.phpt] -2026-04-08T22:05:27.962534Z 01O TEST 586/647 [4/4 concurrent test workers running] PASS Non regression test for use-after-free segfault in exception replay [tmp/build_extension/tests/ext/live-debugger/exception-replay_non_regression_2989_mysqli.phpt] -2026-04-08T22:05:27.962543Z 01O TEST 587/647 [4/4 concurrent test workers running] PASS Test \datadog\appsec\v2\track_user_login_failure without metadata [tmp/build_extension/tests/ext/track_user_login_failure_02.phpt] -2026-04-08T22:05:27.962550Z 01O TEST 588/647 [4/4 concurrent test workers running] PASS Root span with query params whitelist [tmp/build_extension/tests/ext/root_span_url_with_query_params_whitelist.phpt] -2026-04-08T22:05:27.962555Z 01O TEST 589/647 [4/4 concurrent test workers running] PASS If peer.service is already set by the user, honor it [tmp/build_extension/tests/ext/peer_service_honor_user_value.phpt] -2026-04-08T22:05:27.962561Z 01O TEST 590/647 [4/4 concurrent test workers running] PASS Short running single fork [tmp/build_extension/tests/ext/pcntl/pcntl_fork_short_running_single.phpt] -2026-04-08T22:05:27.962568Z 01O TEST 591/647 [4/4 concurrent test workers running] PASS priority_sampling with manual.keep [tmp/build_extension/tests/ext/priority_sampling/019-manual.keep.phpt] -2026-04-08T22:05:27.962573Z 01O TEST 592/647 [4/4 concurrent test workers running] PASS Test \DDTrace\set_user with metadata [tmp/build_extension/tests/ext/set_user_with_metadata.phpt] -2026-04-08T22:05:27.962577Z 01O TEST 593/647 [4/4 concurrent test workers running] -2026-04-08T22:05:28.463233Z 01O+ PASS DDTrace\hook_method prehook exception is sandboxed (debug) [tmp/build_extension/tests/ext/sandbox/hook_method/prehook_exceptions_02.phpt] -2026-04-08T22:05:28.463246Z 01O TEST 594/647 [4/4 concurrent test workers running] PASS Check the library config files [tmp/build_extension/tests/ext/library_config/local_config_does_not_overload_env.phpt] -2026-04-08T22:05:28.463256Z 01O TEST 595/647 [4/4 concurrent test workers running] PASS Basic Git Metadata Injection from env var (Repository URL & Commit Sha) [tmp/build_extension/tests/ext/integrations/source_code/git_metadata_injection_from_env.phpt] -2026-04-08T22:05:28.463267Z 01O TEST 596/647 [4/4 concurrent test workers running] PASS Test baggage header behavior when configured by itself [tmp/build_extension/tests/ext/distributed_tracing/baggage/distributed_trace_baggage_alone.phpt] -2026-04-08T22:05:28.463272Z 01O TEST 597/647 [4/4 concurrent test workers running] PASS Properly set _dd.base_service when service name is manually changed [tmp/build_extension/tests/ext/base_service.phpt] -2026-04-08T22:05:28.463279Z 01O TEST 598/647 [4/4 concurrent test workers running] PASS Test \datadog\appsec\v2\track_user_login_success no user id or metadata given [tmp/build_extension/tests/ext/track_user_login_success_07.phpt] -2026-04-08T22:05:28.463286Z 01O TEST 599/647 [4/4 concurrent test workers running] -2026-04-08T22:05:28.963493Z 01O+ PASS Basic Git Metadata Injection from invalid .git files (Repository URL & Commit Sha) [tmp/build_extension/tests/ext/integrations/source_code/002/git_metadata_injection_from_invalid_files.phpt] -2026-04-08T22:05:28.963559Z 01O TEST 600/647 [4/4 concurrent test workers running] PASS dd_trace_serialize_msgpack() error conditions [tmp/build_extension/tests/ext/dd_trace_serialize_msgpack_error.phpt] -2026-04-08T22:05:28.963569Z 01O TEST 601/647 [4/4 concurrent test workers running] PASS Overriding function return value via install_hook() [tmp/build_extension/tests/ext/sandbox/install_hook/replace_hook_retval.phpt] -2026-04-08T22:05:28.963579Z 01O TEST 602/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Trace public static method [tmp/build_extension/tests/ext/sandbox-regression/trace_static_method.phpt] -2026-04-08T22:05:28.963583Z 01O TEST 603/647 [4/4 concurrent test workers running] PASS Span creation with distributed context [tmp/build_extension/tests/ext/inferred_proxy/distributed_tracing.phpt] -2026-04-08T22:05:28.963588Z 01O TEST 604/647 [4/4 concurrent test workers running] -2026-04-08T22:05:29.464178Z 01O+ PASS Setting custom distributed header information with invalid propagated tags [tmp/build_extension/tests/ext/distributed_tracing/distributed_trace_span_link_from_headers_invalid_tags.phpt] -2026-04-08T22:05:29.464186Z 01O TEST 605/647 [4/4 concurrent test workers running] PASS dd_trace_function() is aliased to DDTrace\trace_function() [tmp/build_extension/tests/ext/sandbox/dd_trace_function_alias.phpt] -2026-04-08T22:05:29.464192Z 01O TEST 606/647 [4/4 concurrent test workers running] PASS Clone DDTrace\SpanData [tmp/build_extension/tests/ext/sandbox/span_clone.phpt] -2026-04-08T22:05:29.464200Z 01O TEST 607/647 [4/4 concurrent test workers running] PASS [Prehook regression] Trace variadic functions and methods [tmp/build_extension/tests/ext/sandbox-prehook/variable_length_parameter_list.phpt] -2026-04-08T22:05:29.464204Z 01O TEST 608/647 [4/4 concurrent test workers running] -2026-04-08T22:05:29.964773Z 01O+ PASS Exceptions are handled from a generator context [tmp/build_extension/tests/ext/sandbox/generator_with_exception.phpt] -2026-04-08T22:05:29.964787Z 01O TEST 609/647 [4/4 concurrent test workers running] PASS API Gateway span should be created from consuming distributed tracing headers [tmp/build_extension/tests/ext/inferred_proxy/consume_distributed_tracing_headers.phpt] -2026-04-08T22:05:29.964792Z 01O TEST 610/647 [4/4 concurrent test workers running] -2026-04-08T22:05:31.466778Z 01O+ PASS Filesystem integration depends on RASP. If RASP is not enabled, integration is disabled [tmp/build_extension/tests/ext/telemetry/integration_filesystem_01.phpt] -2026-04-08T22:05:31.466798Z 01O TEST 611/647 [4/4 concurrent test workers running] PASS Assess that the log integration is disabled by default [tmp/build_extension/tests/ext/logging_default_value.phpt] -2026-04-08T22:05:31.466805Z 01O TEST 612/647 [4/4 concurrent test workers running] PASS suppressCall() works with JIT [tmp/build_extension/tests/ext/sandbox/install_hook/suppress_call_jit.phpt] -2026-04-08T22:05:31.466814Z 01O TEST 613/647 [4/4 concurrent test workers running] PASS Fatal errors are ignored inside a tracing closure (PHP 7+) [tmp/build_extension/tests/ext/sandbox/fatal_errors_ignored_in_tracing_closure.phpt] -2026-04-08T22:05:31.466884Z 01O TEST 614/647 [4/4 concurrent test workers running] -2026-04-08T22:05:31.967510Z 01O+ PASS URL without host part in referrer [tmp/build_extension/tests/ext/referrer_extraction_03.phpt] -2026-04-08T22:05:31.967523Z 01O TEST 615/647 [4/4 concurrent test workers running] PASS Ensure caching does not bypass the span data write handler [tmp/build_extension/tests/ext/dd_trace_multiple_write.phpt] -2026-04-08T22:05:31.967532Z 01O TEST 616/647 [4/4 concurrent test workers running] PASS DDTrace\trace_function() can trace userland functions with internal spans [tmp/build_extension/tests/ext/sandbox/dd_trace_function_userland.phpt] -2026-04-08T22:05:31.967543Z 01O TEST 617/647 [4/4 concurrent test workers running] PASS Gracefully handle out-of-sync spans in closure itself [user] [tmp/build_extension/tests/ext/sandbox/spans_out_of_sync_05.phpt] -2026-04-08T22:05:31.967549Z 01O TEST 618/647 [4/4 concurrent test workers running] PASS [Sandbox regression] Disable tracing disables all tracing from happening [tmp/build_extension/tests/ext/sandbox-regression/disable_tracing_disables_tracing.phpt] -2026-04-08T22:05:31.967554Z 01O TEST 619/647 [4/4 concurrent test workers running] -2026-04-08T22:05:32.468053Z 01O+ PASS DDTrace\hook_method returns false with diagnostic when no hook is passed [tmp/build_extension/tests/ext/sandbox/hook_method/03.phpt] -2026-04-08T22:05:32.468064Z 01O TEST 620/647 [4/4 concurrent test workers running] -2026-04-08T22:05:32.968878Z 01O+ PASS Report user config telemetry [tmp/build_extension/tests/ext/telemetry/config.phpt] -2026-04-08T22:05:32.968890Z 01O TEST 621/647 [4/4 concurrent test workers running] PASS Using DD_TRACE_LOG_FILE [tmp/build_extension/tests/ext/dd_trace_log_file.phpt] -2026-04-08T22:05:32.968899Z 01O TEST 622/647 [4/4 concurrent test workers running] PASS background sender should reject msgpack array prefix that does not match expected number of traces [tmp/build_extension/tests/ext/dd_trace_send_traces_via_thread_002.phpt] -2026-04-08T22:05:32.968906Z 01O TEST 623/647 [4/4 concurrent test workers running] -2026-04-08T22:05:33.469470Z 01O+ PASS DDTrace\hook_method posthook error is sandboxed (debug) [tmp/build_extension/tests/ext/sandbox/hook_method/posthook_error_02.phpt] -2026-04-08T22:05:33.469484Z 01O TEST 624/647 [4/4 concurrent test workers running] PASS [Prehook Regression] DDTrace\trace_method() can trace with internal spans [tmp/build_extension/tests/ext/sandbox-prehook/dd_trace_method.phpt] -2026-04-08T22:05:33.469493Z 01O TEST 625/647 [4/4 concurrent test workers running] PASS DDTrace\hook_function posthook is called with an exception; args are still good [tmp/build_extension/tests/ext/sandbox/hook_function/posthook_exceptions_01.phpt] -2026-04-08T22:05:33.469504Z 01O TEST 626/647 [4/4 concurrent test workers running] PASS HTTP endpoint resource renaming with DD_TRACE_RESOURCE_RENAMING_ALWAYS_SIMPLIFIED_ENDPOINT=true [tmp/build_extension/tests/ext/http_endpoint_resource_renaming_always_simplified.phpt] -2026-04-08T22:05:33.469518Z 01O TEST 627/647 [4/4 concurrent test workers running] -2026-04-08T22:05:33.970151Z 01O+ PASS Nested exceptions are recorded (GH2498) [tmp/build_extension/tests/ext/nested_exceptions.phpt] -2026-04-08T22:05:33.970219Z 01O TEST 628/647 [4/4 concurrent test workers running] PASS Ensure hooks are not invoked after the tracer has been disabled [tmp/build_extension/tests/ext/sandbox/install_hook/hook_not_invoked_if_tracer_disabled.phpt] -2026-04-08T22:05:33.970227Z 01O TEST 629/647 [4/4 concurrent test workers running] PASS Test try_drop_span() [tmp/build_extension/tests/ext/try_drop_span.phpt] -2026-04-08T22:05:33.970256Z 01O TEST 630/647 [4/4 concurrent test workers running] PASS Functions that return generators with 'yield from' are instrumented [tmp/build_extension/tests/ext/sandbox/generator_yield_from.phpt] -2026-04-08T22:05:33.970272Z 01O TEST 631/647 [4/4 concurrent test workers running] PASS Test creating a new trace [tmp/build_extension/tests/ext/span_stack/start_span_new_trace.phpt] -2026-04-08T22:05:33.970291Z 01O TEST 632/647 [4/4 concurrent test workers running] PASS Sample rate is not changed to 0 after first call during a minute when STANDALONE ASM is enabled and there is asm events [tmp/build_extension/tests/ext/background-sender/agent_sampling-standalone-asm_02.phpt] -2026-04-08T22:05:33.970297Z 01O TEST 633/647 [4/4 concurrent test workers running] -2026-04-08T22:05:34.470780Z 01O+ PASS [Sandbox] Hook implementations of abstract trait methods are not supported [tmp/build_extension/tests/ext/sandbox/abstract_trait_hook.phpt] -2026-04-08T22:05:34.470812Z 01O TEST 634/647 [4/4 concurrent test workers running] PASS Auto-flushing will attach an exception during exception cleanup [tmp/build_extension/tests/ext/sandbox/auto_flush_attach_exception.phpt] -2026-04-08T22:05:34.470819Z 01O TEST 635/647 [4/4 concurrent test workers running] PASS DDTrace\hook_method posthook [tmp/build_extension/tests/ext/sandbox/hook_method/posthook_01.phpt] -2026-04-08T22:05:34.470851Z 01O TEST 636/647 [4/4 concurrent test workers running] PASS Test \DDTrace\set_user with metadata and with usr.id as a distributed tag [tmp/build_extension/tests/ext/set_user_with_propagation_override_default.phpt] -2026-04-08T22:05:34.470868Z 01O TEST 637/647 [4/4 concurrent test workers running] PASS DDTrace\hook_function prehook works with variadic functions [tmp/build_extension/tests/ext/sandbox/hook_function/prehook_variadic.phpt] -2026-04-08T22:05:34.470876Z 01O TEST 638/647 [4/4 concurrent test workers running] PASS _dd.p.ksr uses decimal notation (not scientific) for very small sampling rates [tmp/build_extension/tests/ext/priority_sampling/029-ksr-tag-small-rate-formatting.phpt] -2026-04-08T22:05:34.470885Z 01O TEST 639/647 [4/4 concurrent test workers running] -2026-04-08T22:05:34.470887Z 01O ========DIFF======== -2026-04-08T22:05:34.470891Z 01O 001+  -2026-04-08T22:05:34.470896Z 01O 001- invoked -2026-04-08T22:05:34.470898Z 01O ========DONE======== -2026-04-08T22:05:34.470902Z 01O XFAIL Test hooking fake closures of internal functions [tmp/build_extension/tests/ext/sandbox/hook_function/hook_internal_fake_closure.phpt] XFAIL REASON: Not implemented yet -2026-04-08T22:05:34.470909Z 01O TEST 640/647 [3/4 concurrent test workers running] -2026-04-08T22:05:38.976781Z 01O+ PASS Check the library config files [tmp/build_extension/tests/ext/library_config/fleet_config.phpt] -2026-04-08T22:05:38.976865Z 01O TEST 641/647 [2/4 concurrent test workers running] SKIP background sender survives setuid [tmp/build_extension/tests/ext/background-sender/background_sender_survives_setuid.phpt] reason: leak sanitizer crashes -2026-04-08T22:05:38.976883Z 01O TEST 642/647 [2/4 concurrent test workers running] PASS A call to trace_method from hook_method prehook has non-static closure [tmp/build_extension/tests/ext/sandbox/hook_method/prehook_05.phpt] -2026-04-08T22:05:38.976895Z 01O TEST 643/647 [2/4 concurrent test workers running] -2026-04-08T22:05:39.477443Z 01O+ PASS [Sandbox] Hook implementations of interface methods with multiple parent abstract methods of the same name [tmp/build_extension/tests/ext/sandbox/interface_inherit_hook_multiple.phpt] -2026-04-08T22:05:39.477454Z 01O TEST 644/647 [2/4 concurrent test workers running] PASS API Gateway span should only be created once [tmp/build_extension/tests/ext/inferred_proxy/multiple_traces.phpt] -2026-04-08T22:05:39.477459Z 01O TEST 645/647 [2/4 concurrent test workers running] -2026-04-08T22:05:40.478709Z 01O+ PASS DD_APPSEC_SCA_ENABLED flag is sent to via telemetry with false [tmp/build_extension/tests/ext/appsec/sca_flag_is_sent_03.phpt] -2026-04-08T22:05:40.478729Z 01O TEST 646/647 [1/4 concurrent test workers running] PASS DDTrace\hook_function prehook exception is sandboxed [tmp/build_extension/tests/ext/sandbox/hook_function/prehook_exceptions_01.phpt] -2026-04-08T22:05:40.478736Z 01O TEST 647/647 [1/4 concurrent test workers running] ===================================================================== -2026-04-08T22:05:40.478742Z 01O Number of tests : 647 613 -2026-04-08T22:05:40.478745Z 01O Tests skipped : 34 ( 5.3%) -------- -2026-04-08T22:05:40.478748Z 01O Tests warned : 0 ( 0.0%) ( 0.0%) -2026-04-08T22:05:40.478753Z 01O Tests failed : 3 ( 0.5%) ( 0.5%) -2026-04-08T22:05:40.478755Z 01O Expected fail : 2 ( 0.3%) ( 0.3%) -2026-04-08T22:05:40.478758Z 01O Tests passed : 608 ( 94.0%) ( 99.2%) -2026-04-08T22:05:40.478764Z 01O --------------------------------------------------------------------- -2026-04-08T22:05:40.478767Z 01O Time taken : 101 seconds -2026-04-08T22:05:40.478770Z 01O ===================================================================== -2026-04-08T22:05:40.478775Z 01O -2026-04-08T22:05:40.478778Z 01O ===================================================================== -2026-04-08T22:05:40.478782Z 01O EXPECTED FAILED TEST SUMMARY -2026-04-08T22:05:40.478787Z 01O --------------------------------------------------------------------- -2026-04-08T22:05:40.478790Z 01O Test hooking fake closures of internal functions via install_hook() [tmp/build_extension/tests/ext/sandbox/install_hook/hook_internal_fake_closure.phpt] XFAIL REASON: Not implemented yet -2026-04-08T22:05:40.478809Z 01O Test hooking fake closures of internal functions [tmp/build_extension/tests/ext/sandbox/hook_function/hook_internal_fake_closure.phpt] XFAIL REASON: Not implemented yet -2026-04-08T22:05:40.478839Z 01O ===================================================================== -2026-04-08T22:05:40.478851Z 01O -2026-04-08T22:05:40.478859Z 01O ===================================================================== -2026-04-08T22:05:40.478871Z 01O FAILED TEST SUMMARY -2026-04-08T22:05:40.478881Z 01O --------------------------------------------------------------------- -2026-04-08T22:05:40.478887Z 01O deferred loading doesn't crash if integration loading fails [tmp/build_extension/tests/ext/sandbox/deferred_load_fatal.phpt] -2026-04-08T22:05:40.478898Z 01O Check that sandboxed hooks do not invoke error handlers or set the error code [tmp/build_extension/tests/ext/sandbox/hook_function/hook_does_not_leak_error.phpt] -2026-04-08T22:05:40.478997Z 01O Assert bailouts are gracefully handled within class autoloading [tmp/build_extension/tests/ext/sandbox-regression/class_resolver_bailout_hook.phpt] -2026-04-08T22:05:40.479006Z 01O ===================================================================== -2026-04-08T22:05:40.479017Z 01O make: *** [Makefile:183: test_c_observer] Error 1 -2026-04-08T22:05:40.479019Z 01O -2026-04-08T22:05:40.479071Z 00O section_end:1775685940:step_script -2026-04-08T22:05:40.479073Z 00O+section_start:1775685940:after_script[collapsed=false] -2026-04-08T22:05:40.479507Z 00O+Running after_script -2026-04-08T22:05:40.979596Z 01O Running after script... -2026-04-08T22:05:40.979608Z 01O $ .gitlab/check_test_agent.sh -2026-04-08T22:05:40.979614Z 01O APM Test Agent is running. (HTTP 200) -2026-04-08T22:05:40.979617Z 01O All APM Test Agent Check Traces returned successful! (HTTP 200) -2026-04-08T22:05:40.979621Z 01O APM Test Agent Check Traces Summary Results: -2026-04-08T22:05:40.979627Z 01O {} -2026-04-08T22:05:40.979630Z 01O $ .gitlab/collect_artifacts.sh "tmp/build_extension" -2026-04-08T22:05:40.979634Z 01O $ .gitlab/silent-upload-junit-to-datadog.sh "test.source.file:src/" -2026-04-08T22:06:30.347980Z 01O * View detailed reports on Datadog (they can take a few minutes to become available) -2026-04-08T22:06:30.348760Z 01O * Commit report: -2026-04-08T22:06:30.348880Z 01O * https://app.datadoghq.com/ci/redirect/tests/https%3A%2F%2Fgitlab.ddbuild.io%2FDataDog%2Fapm-reliability%2Fdd-trace-php.git/-/gitlab-runner/-/levi%2Fclang-17-to-19/-/e340959bb2fb46996ed179b27eab9e273fffbacc?env=ci -2026-04-08T22:06:30.348970Z 01O * Test runs report: -2026-04-08T22:06:30.349010Z 01O * https://app.datadoghq.com/ci/test-runs?query=%20%40ci.job.url%3A%22https%3A%2F%2Fgitlab.ddbuild.io%2FDataDog%2Fapm-reliability%2Fdd-trace-php%2F-%2Fjobs%2F1579621450%22 -2026-04-08T22:06:30.349050Z 01O -2026-04-08T22:06:30.349510Z 00O section_end:1775685990:after_script -2026-04-08T22:06:30.349530Z 00O+section_start:1775685990:upload_artifacts_on_failure[collapsed=true] -2026-04-08T22:06:30.360970Z 00O+Uploading artifacts for failed job -2026-04-08T22:06:30.535407Z 01O Uploading artifacts... -2026-04-08T22:06:30.535421Z 01O artifacts/: found 17 matching artifact files and directories -2026-04-08T22:06:33.382170Z 01O Uploading artifacts as "archive" to coordinator... 201 Created id=1579621450 responseStatus=201 Created token=64_mjUGF_ -2026-04-08T22:06:33.382280Z 01O Uploading artifacts... -2026-04-08T22:06:33.538809Z 01O artifacts/tests/php-tests.xml: found 1 matching artifact files and directories -2026-04-08T22:06:33.538821Z 01O Uploading artifacts as "junit" to coordinator... 201 Created id=1579621450 responseStatus=201 Created token=64_mjUGF_ -2026-04-08T22:06:33.538842Z 01O -2026-04-08T22:06:33.538947Z 00O section_end:1775685993:upload_artifacts_on_failure -2026-04-08T22:06:33.538949Z 00O+section_start:1775685993:cleanup_file_variables[collapsed=true] -2026-04-08T22:06:33.539692Z 00O+Cleaning up project directory and file based variables -2026-04-08T22:06:34.395030Z 01O -2026-04-08T22:06:34.395420Z 00O section_end:1775685994:cleanup_file_variables -2026-04-08T22:06:34.395440Z 00O+ -2026-04-08T22:06:34.359018Z 00O ERROR: Job failed: command terminated with exit code 1 -2026-04-08T22:06:34.359024Z 00O  diff --git a/raw2.txt b/raw2.txt deleted file mode 100644 index 2157c69c71e..00000000000 --- a/raw2.txt +++ /dev/null @@ -1,1242 +0,0 @@ -2026-04-08T22:00:58.979619Z 00O Running with gitlab-runner 17.9.3-544784f7 (544784f7) -2026-04-08T22:00:58.979627Z 00O  on gitlab-runner-amd64-shared-6fbbdc57fd-6g7wz _xbvGsbV_, system ID: r_fY7hjOVuHGzO -2026-04-08T22:00:58.979633Z 00O  feature flags: FF_RETRIEVE_POD_WARNING_EVENTS:false -2026-04-08T22:00:58.979653Z 00O section_start:1775685658:prepare_executor[collapsed=true] -2026-04-08T22:00:58.979655Z 00O+Preparing the "kubernetes" executor -2026-04-08T22:00:58.979714Z 00O Using Kubernetes namespace: gitlab-runner -2026-04-08T22:00:58.980083Z 00O Using Kubernetes cluster domain: mudkip-c.us1.ddbuild.io -2026-04-08T22:00:58.980089Z 00O Using Kubernetes executor with image registry.ddbuild.io/images/mirror/datadog/dd-trace-ci:php-8.0_bookworm-7 ... -2026-04-08T22:00:58.980093Z 00O Using attach strategy to execute scripts... -2026-04-08T22:00:59.870520Z 00O section_end:1775685659:prepare_executor -2026-04-08T22:00:59.870590Z 00O+section_start:1775685659:prepare_script[collapsed=true] -2026-04-08T22:00:59.953680Z 00O+Preparing environment -2026-04-08T22:00:59.972740Z 00O Using FF_USE_POD_ACTIVE_DEADLINE_SECONDS, the Pod activeDeadlineSeconds will be set to the job timeout: 1h0m0s... -2026-04-08T22:00:59.101264Z 00O Using service account: dd-trace-php -2026-04-08T22:00:59.422847Z 00E Waiting for pod gitlab-runner/runner-xbvgsbv-project-355-concurrent-3-7xj11su7 to be running, status is Pending -2026-04-08T22:01:02.437470Z 00E Waiting for pod gitlab-runner/runner-xbvgsbv-project-355-concurrent-3-7xj11su7 to be running, status is Pending -2026-04-08T22:01:02.437479Z 00E ContainersNotInitialized: "containers with incomplete status: [emissary init-permissions]" -2026-04-08T22:01:02.437482Z 00E ContainersNotReady: "containers with unready status: [emissary build helper]" -2026-04-08T22:01:02.437484Z 00E ContainersNotReady: "containers with unready status: [emissary build helper]" -2026-04-08T22:01:06.665899Z 01O Running on runner-xbvgsbv-project-355-concurrent-3-7xj11su7 via gitlab-runner-amd64-shared-6fbbdc57fd-6g7wz... -2026-04-08T22:01:06.665909Z 01O -2026-04-08T22:01:06.665939Z 00O section_end:1775685666:prepare_script -2026-04-08T22:01:06.665940Z 00O+section_start:1775685666:get_sources[collapsed=true] -2026-04-08T22:01:06.666740Z 00O+Getting source from Git repository -2026-04-08T22:01:07.166469Z 01O $ if [ -n "${VAULT_ADDR:-}" ]; then # collapsed multi-line command -2026-04-08T22:01:07.166482Z 01O section_start:1775685666:git_cache[collapsed=true] Git cache script -2026-04-08T22:01:07.166495Z 01O {"level":"INFO","ts":"2026-04-08T22:01:06.907514+00:00","caller":"git-cache-s3/main.go:23","msg":"Running git-cache-s3 go application"} -2026-04-08T22:01:07.166501Z 01O {"level":"INFO","ts":"2026-04-08T22:01:06.907607+00:00","caller":"git-cache-s3/main.go:24","msg":"Project name dd-trace-php"} -2026-04-08T22:01:07.166510Z 01O {"level":"INFO","ts":"2026-04-08T22:01:06.922616+00:00","caller":"metric/statsd.go:33","msg":"Creating the statsd instance."} -2026-04-08T22:01:07.166521Z 01O {"level":"INFO","ts":"2026-04-08T22:01:06.924157+00:00","caller":"git-cache-s3/main.go:82","msg":"Experiment is disabled for refreshing the repository cache, skipping refresh"} -2026-04-08T22:01:07.166527Z 01O {"level":"INFO","ts":"2026-04-08T22:01:06.925563+00:00","caller":"git/git.go:44","msg":"Retrieving repository from cache"} -2026-04-08T22:01:14.673935Z 01O {"level":"INFO","ts":"2026-04-08T22:01:14.463906+00:00","caller":"metric/statsd.go:39","msg":"Statsd Client already exists."} -2026-04-08T22:01:14.673978Z 01O {"level":"INFO","ts":"2026-04-08T22:01:14.464097+00:00","caller":"git-cache-s3/main.go:40","msg":"Arrive to the end of the script"} -2026-04-08T22:01:14.673995Z 01O section_end:1775685674:git_cache  -2026-04-08T22:01:14.674019Z 01O Fetching changes... -2026-04-08T22:01:14.674033Z 01O Reinitialized existing Git repository in /go/src/github.com/DataDog/apm-reliability/dd-trace-php/.git/ -2026-04-08T22:01:14.674037Z 01O Created fresh repository. -2026-04-08T22:01:14.674063Z 01O gitretriever: create-ref FAILED (pipeline=106784035 repo=DataDog/apm-reliability/dd-trace-php), falling back to GitLab -2026-04-08T22:01:15.174607Z 01O Checking out e340959b as detached HEAD (ref is levi/clang-17-to-19)... -2026-04-08T22:01:21.681905Z 01O -2026-04-08T22:01:21.681943Z 01O Updating/initializing submodules recursively... -2026-04-08T22:01:21.681950Z 01O Submodule 'appsec/third_party/cpp-base64' (https://github.com/ReneNyffenegger/cpp-base64) registered for path 'appsec/third_party/cpp-base64' -2026-04-08T22:01:21.681976Z 01O Submodule 'appsec/third_party/libddwaf' (https://github.com/DataDog/libddwaf.git) registered for path 'appsec/third_party/libddwaf' -2026-04-08T22:01:21.681992Z 01O Submodule 'appsec/third_party/libddwaf-rust' (https://github.com/DataDog/libddwaf-rust.git) registered for path 'appsec/third_party/libddwaf-rust' -2026-04-08T22:01:21.682000Z 01O Submodule 'appsec/third_party/msgpack-c' (https://github.com/msgpack/msgpack-c.git) registered for path 'appsec/third_party/msgpack-c' -2026-04-08T22:01:21.682034Z 01O Submodule 'libdatadog' (https://github.com/DataDog/libdatadog) registered for path 'libdatadog' -2026-04-08T22:01:21.682059Z 01O Submodule 'tea/benchmarks/google-benchmark' (https://github.com/google/benchmark.git) registered for path 'tea/benchmarks/google-benchmark' -2026-04-08T22:01:21.682068Z 01O Synchronizing submodule url for 'libdatadog' -2026-04-08T22:01:21.682125Z 01O Cloning into '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog'... -2026-04-08T22:01:31.197952Z 01O Submodule path 'libdatadog': checked out '11d4111c934d9af49d8124b8266dbbdda5857cb4' -2026-04-08T22:01:31.197992Z 01O Submodule 'libdd-libunwind-sys/libunwind' (https://github.com/DataDog/libunwind.git) registered for path 'libdatadog/libdd-libunwind-sys/libunwind' -2026-04-08T22:01:31.197999Z 01O Cloning into '/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-libunwind-sys/libunwind'... -2026-04-08T22:01:32.214847Z 01O Submodule path 'libdatadog/libdd-libunwind-sys/libunwind': checked out 'cc1d07281b9e034c9e088733aeb4b94ffd91db9e' -2026-04-08T22:01:32.214865Z 01O Updated submodules -2026-04-08T22:01:32.214874Z 01O Synchronizing submodule url for 'libdatadog' -2026-04-08T22:01:32.214896Z 01O Synchronizing submodule url for 'libdatadog/libdd-libunwind-sys/libunwind' -2026-04-08T22:01:32.702581Z 01O Entering 'libdatadog' -2026-04-08T22:01:32.702592Z 01O Entering 'libdatadog/libdd-libunwind-sys/libunwind' -2026-04-08T22:01:32.702597Z 01O Entering 'libdatadog' -2026-04-08T22:01:32.702602Z 01O Entering 'libdatadog/libdd-libunwind-sys/libunwind' -2026-04-08T22:01:33.202861Z 01O $ export clone_after=$(date +%s) # collapsed multi-line command -2026-04-08T22:01:33.202878Z 01O Clone elapsed 26 -2026-04-08T22:01:33.202882Z 01O -2026-04-08T22:01:33.202924Z 00O section_end:1775685693:get_sources -2026-04-08T22:01:33.202925Z 00O+section_start:1775685693:download_artifacts[collapsed=true] -2026-04-08T22:01:33.204356Z 00O+Downloading artifacts -2026-04-08T22:01:33.704060Z 01O Downloading artifacts for Build & Test Tea: [8.0, debug-zts-asan] (1579619409)... -2026-04-08T22:01:34.205826Z 01O Downloading artifacts from coordinator... ok  host=gitlab.ddbuild.io id=1579619409 responseStatus=200 OK token=64_s81vcx -2026-04-08T22:01:34.205842Z 01O -2026-04-08T22:01:34.205902Z 00O section_end:1775685694:download_artifacts -2026-04-08T22:01:34.205904Z 00O+section_start:1775685694:step_script[collapsed=false] -2026-04-08T22:01:34.206816Z 00O+Executing "step_script" stage of the job script -2026-04-08T22:01:34.707076Z 01O $ export build_before=$(date +%s) # collapsed multi-line command -2026-04-08T22:01:34.707090Z 01O Starting pre-build script -2026-04-08T22:01:34.707097Z 01O Keeping environment unchanged -2026-04-08T22:01:34.707100Z 01O Terminating pre-build script -2026-04-08T22:01:34.707104Z 01O $ switch-php "debug-zts-asan" -2026-04-08T22:01:34.707112Z 01O $ mkdir -p tmp/build_zai && cd tmp/build_zai -2026-04-08T22:01:34.707117Z 01O $ CMAKE_PREFIX_PATH=/opt/catch2 Tea_ROOT=../../tmp/tea/debug-zts-asan cmake -DCMAKE_TOOLCHAIN_FILE=../../cmake/asan.cmake -DCMAKE_BUILD_TYPE=Debug -DBUILD_ZAI_TESTING=ON -DPhpConfig_ROOT=$(php-config --prefix) ../../zend_abstract_interface -2026-04-08T22:01:35.206890Z 01O -- The C compiler identification is Clang 19.1.7 -2026-04-08T22:01:35.206901Z 01O -- Detecting C compiler ABI info -2026-04-08T22:01:35.206908Z 01O -- Detecting C compiler ABI info - done -2026-04-08T22:01:35.206915Z 01O -- Check for working C compiler: /usr/bin/cc - skipped -2026-04-08T22:01:35.206918Z 01O -- Detecting C compile features -2026-04-08T22:01:35.206922Z 01O -- Detecting C compile features - done -2026-04-08T22:01:35.206928Z 01O -- The CXX compiler identification is Clang 19.1.7 -2026-04-08T22:01:35.206930Z 01O -- Detecting CXX compiler ABI info -2026-04-08T22:01:35.707410Z 01O -- Detecting CXX compiler ABI info - done -2026-04-08T22:01:35.707421Z 01O -- Check for working CXX compiler: /usr/bin/c++ - skipped -2026-04-08T22:01:35.707427Z 01O -- Detecting CXX compile features -2026-04-08T22:01:35.707435Z 01O -- Detecting CXX compile features - done -2026-04-08T22:01:35.707439Z 01O -- Found PhpConfig: /opt/php/debug-zts-asan/bin/php-config (found version "8.0.30") -2026-04-08T22:01:35.707442Z 01O -- Detected PHP 8 from version id: 80030 -2026-04-08T22:01:35.707497Z 01O -- Performing Test CMAKE_HAVE_LIBC_PTHREAD -2026-04-08T22:01:35.707504Z 01O -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success -2026-04-08T22:01:35.707526Z 01O -- Found Threads: TRUE -2026-04-08T22:01:35.707534Z 01O -- Configuring done -2026-04-08T22:01:36.208055Z 01O -- Generating done -2026-04-08T22:01:36.208072Z 01O -- Build files have been written to: /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_zai -2026-04-08T22:01:36.208078Z 01O $ make -j all -2026-04-08T22:01:36.208112Z 01O [ 1%] Generating version.h -2026-04-08T22:01:36.208119Z 01O Updating version.h -2026-04-08T22:01:36.208128Z 01O [ 2%] Building C object exceptions/CMakeFiles/zai_exceptions.dir/exceptions.c.o -2026-04-08T22:01:36.208136Z 01O [ 3%] Built target update_version_h -2026-04-08T22:01:36.208140Z 01O [ 3%] Building C object zai_string/CMakeFiles/zai_string.dir/string.c.o -2026-04-08T22:01:36.208144Z 01O [ 5%] Building C object json/CMakeFiles/zai_json.dir/json.c.o -2026-04-08T22:01:36.208150Z 01O [ 5%] Built target libdatadog_stamp -2026-04-08T22:01:36.208153Z 01O [ 6%] Building C object sandbox/CMakeFiles/zai_sandbox.dir/call.c.o -2026-04-08T22:01:36.208157Z 01O [ 7%] Building C object sandbox/CMakeFiles/zai_sandbox.dir/php8/sandbox.c.o -2026-04-08T22:01:36.208165Z 01O [ 9%] Building CXX object config/tests/CMakeFiles/second_consumer_ext.dir/ext_second_consumer.cc.o -2026-04-08T22:01:36.208169Z 01O [ 10%] Building C object config/tests/CMakeFiles/second_consumer_ext.dir/__/config.c.o -2026-04-08T22:01:36.208173Z 01O [ 11%] Building C object config/tests/CMakeFiles/second_consumer_ext.dir/__/config_ini.c.o -2026-04-08T22:01:36.208180Z 01O [ 12%] Building C object config/tests/CMakeFiles/second_consumer_ext.dir/__/config_decode.c.o -2026-04-08T22:01:36.208192Z 01O [ 15%] Building C object config/tests/CMakeFiles/second_consumer_ext.dir/__/config_runtime.c.o -2026-04-08T22:01:36.208199Z 01O [ 16%] Building C object config/tests/CMakeFiles/second_consumer_ext.dir/__/config_stable_file.c.o -2026-04-08T22:01:36.208205Z 01O [ 16%] Building C object jit_utils/CMakeFiles/zai_jit_utils.dir/jit_blacklist.c.o -2026-04-08T22:01:36.208208Z 01O [ 18%] Creating directories for 'components_rs_proj' -2026-04-08T22:01:36.208212Z 01O [ 19%] No download step for 'components_rs_proj' -2026-04-08T22:01:36.208217Z 01O [ 20%] No update step for 'components_rs_proj' -2026-04-08T22:01:36.208219Z 01O [ 22%] No patch step for 'components_rs_proj' -2026-04-08T22:01:36.208223Z 01O [ 23%] No configure step for 'components_rs_proj' -2026-04-08T22:01:36.208232Z 01O [ 24%] Performing build step for 'components_rs_proj' -2026-04-08T22:01:36.708779Z 01O warning: profiles for the non root package will be ignored, specify profiles at the workspace root: -2026-04-08T22:01:36.708790Z 01O package: /go/src/github.com/DataDog/apm-reliability/dd-trace-php/profiling/Cargo.toml -2026-04-08T22:01:36.708796Z 01O workspace: /go/src/github.com/DataDog/apm-reliability/dd-trace-php/Cargo.toml -2026-04-08T22:01:36.708805Z 01O warning: /go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-crashtracker-ffi/Cargo.toml: unused manifest key: target.cfg(windows).features -2026-04-08T22:01:36.708809Z 01O [ 25%] Linking C static library libzai_string.a -2026-04-08T22:01:36.708814Z 01O [ 25%] Built target zai_string -2026-04-08T22:01:36.708819Z 01O Updating crates.io index -2026-04-08T22:01:36.708822Z 01O [ 27%] Building C object env/CMakeFiles/zai_env.dir/env.c.o -2026-04-08T22:01:36.708826Z 01O [ 28%] Building C object headers/CMakeFiles/zai_headers.dir/headers.c.o -2026-04-08T22:01:36.708831Z 01O [ 29%] Linking C static library libzai_json.a -2026-04-08T22:01:36.708834Z 01O [ 31%] Linking C static library libzai_sandbox.a -2026-04-08T22:01:36.708838Z 01O [ 32%] Linking C static library libzai_exceptions.a -2026-04-08T22:01:36.708843Z 01O [ 32%] Built target zai_json -2026-04-08T22:01:36.708846Z 01O [ 32%] Built target zai_sandbox -2026-04-08T22:01:36.708850Z 01O [ 33%] Linking C static library libzai_jit_utils.a -2026-04-08T22:01:36.708856Z 01O [ 35%] Building C object uri_normalization/CMakeFiles/zai_uri_normalization.dir/uri_normalization.c.o -2026-04-08T22:01:36.708908Z 01O [ 35%] Built target zai_exceptions -2026-04-08T22:01:37.209476Z 01O [ 35%] Built target zai_jit_utils -2026-04-08T22:01:37.209493Z 01O [ 36%] Linking C static library libzai_env.a -2026-04-08T22:01:37.209501Z 01O [ 37%] Linking C static library libzai_headers.a -2026-04-08T22:01:37.209518Z 01O [ 38%] Building C object hook/CMakeFiles/zai_hook.dir/hook.c.o -2026-04-08T22:01:37.209531Z 01O [ 38%] Built target zai_env -2026-04-08T22:01:37.209537Z 01O [ 40%] Building C object config/CMakeFiles/zai_config.dir/config_decode.c.o -2026-04-08T22:01:37.209565Z 01O [ 41%] Building C object config/CMakeFiles/zai_config.dir/config.c.o -2026-04-08T22:01:37.209577Z 01O [ 42%] Building C object config/CMakeFiles/zai_config.dir/config_ini.c.o -2026-04-08T22:01:37.209584Z 01O [ 44%] Building C object config/CMakeFiles/zai_config.dir/config_stable_file.c.o -2026-04-08T22:01:37.209593Z 01O [ 45%] Building C object config/CMakeFiles/zai_config.dir/config_runtime.c.o -2026-04-08T22:01:37.209596Z 01O [ 45%] Built target zai_headers -2026-04-08T22:01:37.209600Z 01O [ 46%] Linking CXX shared module second_consumer_ext.so -2026-04-08T22:01:37.209606Z 01O [ 46%] Built target second_consumer_ext -2026-04-08T22:01:37.209609Z 01O [ 48%] Linking C static library libzai_uri_normalization.a -2026-04-08T22:01:37.709974Z 01O [ 48%] Built target zai_uri_normalization -2026-04-08T22:01:37.709981Z 01O [ 49%] Linking C static library libzai_hook.a -2026-04-08T22:01:37.709986Z 01O [ 50%] Linking C static library libzai_config.a -2026-04-08T22:01:37.709993Z 01O [ 50%] Built target zai_hook -2026-04-08T22:01:37.709996Z 01O [ 51%] Building C object interceptor/CMakeFiles/zai_interceptor.dir/php8/interceptor.c.o -2026-04-08T22:01:37.710000Z 01O [ 53%] Building C object interceptor/CMakeFiles/zai_interceptor.dir/php8/resolver_pre-8_2.c.o -2026-04-08T22:01:37.710007Z 01O [ 53%] Built target zai_config -2026-04-08T22:01:37.710012Z 01O /go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/interceptor/php8/resolver_pre-8_2.c:251:14: warning: initializing 'zend_op *' (aka 'struct _zend_op *') with an expression of type 'const zend_op *' (aka 'const struct _zend_op *') discards qualifiers [-Wincompatible-pointer-types-discards-qualifiers] -2026-04-08T22:01:37.710018Z 01O 251 | zend_op *orig_opline = EX(opline); -2026-04-08T22:01:37.710030Z 01O | ^ ~~~~~~~~~~ -2026-04-08T22:01:37.710038Z 01O 1 warning generated. -2026-04-08T22:01:37.710044Z 01O [ 54%] Linking C static library libzai_interceptor.a -2026-04-08T22:01:38.210706Z 01O [ 54%] Built target zai_interceptor -2026-04-08T22:01:38.210715Z 01O Downloading crates ... -2026-04-08T22:01:38.210719Z 01O Downloaded anstyle-parse v0.2.6 -2026-04-08T22:01:38.210724Z 01O Downloaded arrayref v0.3.9 -2026-04-08T22:01:38.210727Z 01O Downloaded constcat v0.4.1 -2026-04-08T22:01:38.210730Z 01O Downloaded is_terminal_polyfill v1.70.1 -2026-04-08T22:01:38.210737Z 01O Downloaded toml v0.8.19 -2026-04-08T22:01:38.210739Z 01O Downloaded pin-utils v0.1.0 -2026-04-08T22:01:38.210742Z 01O Downloaded toml_datetime v0.6.8 -2026-04-08T22:01:38.210749Z 01O Downloaded block-buffer v0.10.4 -2026-04-08T22:01:38.210759Z 01O Downloaded fnv v1.0.7 -2026-04-08T22:01:38.210765Z 01O Downloaded http-body-util v0.1.2 -2026-04-08T22:01:38.210788Z 01O Downloaded zwohash v0.1.2 -2026-04-08T22:01:38.210802Z 01O Downloaded matchers v0.2.0 -2026-04-08T22:01:38.210806Z 01O Downloaded sendfd v0.4.3 -2026-04-08T22:01:38.210830Z 01O Downloaded sha2 v0.10.8 -2026-04-08T22:01:38.210834Z 01O Downloaded serde_bytes v0.11.15 -2026-04-08T22:01:38.210838Z 01O Downloaded sys-info v0.9.1 -2026-04-08T22:01:38.210850Z 01O Downloaded serde_core v1.0.228 -2026-04-08T22:01:38.210860Z 01O Downloaded hyper v1.6.0 -2026-04-08T22:01:38.210865Z 01O Downloaded stable_deref_trait v1.2.0 -2026-04-08T22:01:38.210881Z 01O Downloaded signal-hook-registry v1.4.2 -2026-04-08T22:01:38.210892Z 01O Downloaded serde_spanned v0.6.8 -2026-04-08T22:01:38.210951Z 01O Downloaded serde_with_macros v3.12.0 -2026-04-08T22:01:38.210957Z 01O Downloaded sharded-slab v0.1.7 -2026-04-08T22:01:38.210964Z 01O Downloaded tempfile v3.24.0 -2026-04-08T22:01:38.210966Z 01O Downloaded serde v1.0.228 -2026-04-08T22:01:38.210970Z 01O Downloaded symbolic-demangle v12.13.3 -2026-04-08T22:01:38.210975Z 01O Downloaded time v0.3.37 -2026-04-08T22:01:38.711657Z 01O Downloaded simd-json v0.14.3 -2026-04-08T22:01:38.711666Z 01O Downloaded portable-atomic v1.10.0 -2026-04-08T22:01:38.711671Z 01O Downloaded syn v2.0.96 -2026-04-08T22:01:38.711676Z 01O Downloaded mio v1.0.3 -2026-04-08T22:01:38.711678Z 01O Downloaded serde_json v1.0.137 -2026-04-08T22:01:38.711681Z 01O Downloaded regex v1.11.1 -2026-04-08T22:01:38.711686Z 01O Downloaded nix v0.29.0 -2026-04-08T22:01:38.711689Z 01O Downloaded tracing-subscriber v0.3.22 -2026-04-08T22:01:38.711692Z 01O Downloaded zerocopy v0.8.24 -2026-04-08T22:01:38.711697Z 01O Downloaded nix v0.30.1 -2026-04-08T22:01:38.711699Z 01O Downloaded regex-syntax v0.8.5 -2026-04-08T22:01:38.711703Z 01O Downloaded serde_yaml v0.9.34+deprecated -2026-04-08T22:01:38.711719Z 01O Downloaded rustix v0.38.43 -2026-04-08T22:01:38.711726Z 01O Downloaded tracing v0.1.44 -2026-04-08T22:01:38.711730Z 01O Downloaded rustix v1.1.3 -2026-04-08T22:01:38.711739Z 01O Downloaded symbolic-common v12.13.3 -2026-04-08T22:01:38.711742Z 01O Downloaded subtle v2.6.1 -2026-04-08T22:01:38.711745Z 01O Downloaded serde_derive v1.0.228 -2026-04-08T22:01:38.711750Z 01O Downloaded rand v0.8.5 -2026-04-08T22:01:38.711752Z 01O Downloaded memchr v2.7.4 -2026-04-08T22:01:38.711756Z 01O Downloaded serde_derive_internals v0.29.1 -2026-04-08T22:01:38.711760Z 01O Downloaded proc-macro2 v1.0.93 -2026-04-08T22:01:39.211939Z 01O Downloaded regex-automata v0.4.9 -2026-04-08T22:01:39.211952Z 01O Downloaded tokio v1.49.0 -2026-04-08T22:01:39.211958Z 01O Downloaded pin-project v1.1.8 -2026-04-08T22:01:39.211989Z 01O Downloaded num-traits v0.2.19 -2026-04-08T22:01:39.212003Z 01O Downloaded miniz_oxide v0.9.0 -2026-04-08T22:01:39.212010Z 01O Downloaded memmap2 v0.9.5 -2026-04-08T22:01:39.212017Z 01O Downloaded unsafe-libyaml v0.2.11 -2026-04-08T22:01:39.212020Z 01O Downloaded tracing-core v0.1.36 -2026-04-08T22:01:39.212023Z 01O Downloaded strsim v0.11.1 -2026-04-08T22:01:39.212028Z 01O Downloaded thiserror-impl v1.0.69 -2026-04-08T22:01:39.212030Z 01O Downloaded libc v0.2.177 -2026-04-08T22:01:39.212033Z 01O Downloaded socket2 v0.5.10 -2026-04-08T22:01:39.212038Z 01O Downloaded smallvec v1.15.1 -2026-04-08T22:01:39.212041Z 01O Downloaded windows_x86_64_gnu v0.48.5 -2026-04-08T22:01:39.212044Z 01O Downloaded schemars v0.8.21 -2026-04-08T22:01:39.212051Z 01O Downloaded rustls-pki-types v1.14.0 -2026-04-08T22:01:39.212054Z 01O Downloaded rmpv v1.3.0 -2026-04-08T22:01:39.212057Z 01O Downloaded rmp-serde v1.3.0 -2026-04-08T22:01:39.212066Z 01O Downloaded once_cell v1.21.3 -2026-04-08T22:01:39.212068Z 01O Downloaded memory-stats v1.2.0 -2026-04-08T22:01:39.212071Z 01O Downloaded windows-core v0.51.1 -2026-04-08T22:01:39.212076Z 01O Downloaded uuid v1.12.1 -2026-04-08T22:01:39.212078Z 01O Downloaded typenum v1.17.0 -2026-04-08T22:01:39.212082Z 01O Downloaded static_assertions v1.1.0 -2026-04-08T22:01:39.212086Z 01O Downloaded thiserror v1.0.69 -2026-04-08T22:01:39.212089Z 01O Downloaded termcolor v1.4.1 -2026-04-08T22:01:39.212092Z 01O Downloaded shlex v1.3.0 -2026-04-08T22:01:39.212096Z 01O Downloaded ryu v1.0.18 -2026-04-08T22:01:39.212098Z 01O Downloaded rmp v0.8.14 -2026-04-08T22:01:39.212101Z 01O Downloaded rand_core v0.6.4 -2026-04-08T22:01:39.212106Z 01O Downloaded priority-queue v2.1.1 -2026-04-08T22:01:39.212108Z 01O Downloaded ppv-lite86 v0.2.20 -2026-04-08T22:01:39.212112Z 01O Downloaded pin-project-lite v0.2.16 -2026-04-08T22:01:39.212116Z 01O Downloaded pin-project-internal v1.1.8 -2026-04-08T22:01:39.212119Z 01O Downloaded paste v1.0.15 -2026-04-08T22:01:39.212122Z 01O Downloaded os_info v3.14.0 -2026-04-08T22:01:39.212126Z 01O Downloaded num-conv v0.1.0 -2026-04-08T22:01:39.212176Z 01O Downloaded memoffset v0.9.1 -2026-04-08T22:01:39.212181Z 01O Downloaded itertools v0.11.0 -2026-04-08T22:01:39.212193Z 01O Downloaded winnow v0.6.24 -2026-04-08T22:01:39.212203Z 01O Downloaded want v0.3.1 -2026-04-08T22:01:39.212207Z 01O Downloaded value-trait v0.10.1 -2026-04-08T22:01:39.212212Z 01O Downloaded unicode-xid v0.2.6 -2026-04-08T22:01:39.713189Z 01O Downloaded unicode-ident v1.0.14 -2026-04-08T22:01:39.713195Z 01O Downloaded simd-adler32 v0.3.7 -2026-04-08T22:01:39.713199Z 01O Downloaded rustc-demangle v0.1.26 -2026-04-08T22:01:39.713204Z 01O Downloaded ref-cast-impl v1.0.23 -2026-04-08T22:01:39.713206Z 01O Downloaded ref-cast v1.0.23 -2026-04-08T22:01:39.713210Z 01O Downloaded rand_chacha v0.3.1 -2026-04-08T22:01:39.713214Z 01O Downloaded quote v1.0.38 -2026-04-08T22:01:39.713216Z 01O Downloaded prost-derive v0.14.3 -2026-04-08T22:01:39.713220Z 01O Downloaded percent-encoding v2.3.1 -2026-04-08T22:01:39.713225Z 01O Downloaded ring v0.17.14 -2026-04-08T22:01:39.713227Z 01O Downloaded openssl-probe v0.1.5 -2026-04-08T22:01:39.713232Z 01O Downloaded num-derive v0.4.2 -2026-04-08T22:01:39.713237Z 01O Downloaded zerocopy v0.7.35 -2026-04-08T22:01:39.713239Z 01O Downloaded version_check v0.9.5 -2026-04-08T22:01:39.713243Z 01O Downloaded utf8parse v0.2.2 -2026-04-08T22:01:39.713262Z 01O Downloaded gimli v0.32.0 -2026-04-08T22:01:39.713265Z 01O Downloaded cbindgen v0.29.0 -2026-04-08T22:01:39.713268Z 01O Downloaded cbindgen v0.27.0 -2026-04-08T22:01:40.213288Z 01O Downloaded blazesym v0.2.3 -2026-04-08T22:01:40.213297Z 01O Downloaded aws-lc-rs v1.15.4 -2026-04-08T22:01:40.213302Z 01O Downloaded clap_builder v4.5.27 -2026-04-08T22:01:40.213351Z 01O Downloaded chrono v0.4.41 -2026-04-08T22:01:40.213364Z 01O Downloaded aho-corasick v1.1.3 -2026-04-08T22:01:40.213369Z 01O Downloaded serde_with v3.12.0 -2026-04-08T22:01:40.213374Z 01O Downloaded hashbrown v0.16.1 -2026-04-08T22:01:40.213376Z 01O Downloaded hashbrown v0.15.2 -2026-04-08T22:01:40.213380Z 01O Downloaded hashbrown v0.14.5 -2026-04-08T22:01:40.213385Z 01O Downloaded simdutf8 v0.1.5 -2026-04-08T22:01:40.213459Z 01O Downloaded page_size v0.6.0 -2026-04-08T22:01:40.213466Z 01O Downloaded memfd v0.6.4 -2026-04-08T22:01:40.213470Z 01O Downloaded windows-targets v0.48.5 -2026-04-08T22:01:40.213475Z 01O Downloaded indexmap v2.12.1 -2026-04-08T22:01:40.213639Z 01O Downloaded hyper-util v0.1.15 -2026-04-08T22:01:40.213645Z 01O Downloaded http v1.4.0 -2026-04-08T22:01:40.213648Z 01O Downloaded hashbrown v0.12.3 -2026-04-08T22:01:40.213653Z 01O Downloaded futures-util v0.3.31 -2026-04-08T22:01:40.213935Z 01O Downloaded cpp_demangle v0.5.1 -2026-04-08T22:01:40.213939Z 01O Downloaded cc v1.2.55 -2026-04-08T22:01:40.213943Z 01O Downloaded bytes v1.11.1 -2026-04-08T22:01:40.213947Z 01O Downloaded base64 v0.22.1 -2026-04-08T22:01:40.213950Z 01O Downloaded linux-raw-sys v0.4.15 -2026-04-08T22:01:40.213953Z 01O Downloaded socket2 v0.6.2 -2026-04-08T22:01:40.213958Z 01O Downloaded powerfmt v0.2.0 -2026-04-08T22:01:40.213960Z 01O Downloaded tower-service v0.3.3 -2026-04-08T22:01:40.213963Z 01O Downloaded indexmap v1.9.3 -2026-04-08T22:01:40.713687Z 01O Downloaded futures v0.3.31 -2026-04-08T22:01:40.713698Z 01O Downloaded crossbeam-channel v0.5.15 -2026-04-08T22:01:40.713707Z 01O Downloaded cpp_demangle v0.4.4 -2026-04-08T22:01:40.713724Z 01O Downloaded const_format v0.2.34 -2026-04-08T22:01:40.713730Z 01O Downloaded arc-swap v1.7.1 -2026-04-08T22:01:40.713733Z 01O Downloaded linux-raw-sys v0.11.0 -2026-04-08T22:01:40.713738Z 01O Downloaded allocator-api2 v0.2.21 -2026-04-08T22:01:40.713741Z 01O Downloaded slab v0.4.9 -2026-04-08T22:01:40.713744Z 01O Downloaded rustls-native-certs v0.8.1 -2026-04-08T22:01:40.713749Z 01O Downloaded prctl v1.0.0 -2026-04-08T22:01:40.713752Z 01O Downloaded msvc-demangler v0.10.1 -2026-04-08T22:01:40.713755Z 01O Downloaded itertools v0.12.1 -2026-04-08T22:01:40.713760Z 01O Downloaded untrusted v0.9.0 -2026-04-08T22:01:40.713762Z 01O Downloaded toml_edit v0.22.22 -2026-04-08T22:01:40.713807Z 01O Downloaded io-lifetimes v1.0.11 -2026-04-08T22:01:40.713813Z 01O Downloaded iana-time-zone v0.1.61 -2026-04-08T22:01:40.713817Z 01O Downloaded hyper-rustls v0.27.7 -2026-04-08T22:01:40.713826Z 01O Downloaded humantime v2.1.0 -2026-04-08T22:01:40.713828Z 01O Downloaded httparse v1.9.5 -2026-04-08T22:01:40.713832Z 01O Downloaded getrandom v0.3.2 -2026-04-08T22:01:40.713841Z 01O Downloaded getrandom v0.2.15 -2026-04-08T22:01:40.713843Z 01O Downloaded futures-executor v0.3.31 -2026-04-08T22:01:40.713847Z 01O Downloaded futures-channel v0.3.31 -2026-04-08T22:01:40.713852Z 01O Downloaded thread_local v1.1.8 -2026-04-08T22:01:40.713855Z 01O Downloaded fs_extra v1.3.0 -2026-04-08T22:01:40.713858Z 01O Downloaded env_logger v0.10.2 -2026-04-08T22:01:40.713863Z 01O Downloaded either v1.13.0 -2026-04-08T22:01:40.713865Z 01O Downloaded darling v0.20.10 -2026-04-08T22:01:40.713868Z 01O Downloaded crossbeam-utils v0.8.21 -2026-04-08T22:01:40.713873Z 01O Downloaded const_format_proc_macros v0.2.34 -2026-04-08T22:01:40.713875Z 01O Downloaded clap v4.5.27 -2026-04-08T22:01:40.713879Z 01O Downloaded cadence v1.5.0 -2026-04-08T22:01:40.713883Z 01O Downloaded byteorder v1.5.0 -2026-04-08T22:01:40.713885Z 01O Downloaded bitflags v2.8.0 -2026-04-08T22:01:40.713888Z 01O Downloaded bincode v1.3.3 -2026-04-08T22:01:40.713893Z 01O Downloaded anstyle v1.0.10 -2026-04-08T22:01:40.713895Z 01O Downloaded anstream v0.6.18 -2026-04-08T22:01:40.713898Z 01O Downloaded ahash v0.8.12 -2026-04-08T22:01:40.713903Z 01O Downloaded schemars_derive v0.8.21 -2026-04-08T22:01:40.713905Z 01O Downloaded rustls-webpki v0.103.9 -2026-04-08T22:01:40.713924Z 01O Downloaded rustls v0.23.37 -2026-04-08T22:01:40.713939Z 01O Downloaded prost v0.14.3 -2026-04-08T22:01:40.713949Z 01O Downloaded manual_future v0.1.1 -2026-04-08T22:01:40.713959Z 01O Downloaded log v0.4.25 -2026-04-08T22:01:41.214605Z 01O Downloaded jobserver v0.1.32 -2026-04-08T22:01:41.214622Z 01O Downloaded zeroize v1.8.1 -2026-04-08T22:01:41.214626Z 01O Downloaded zerocopy-derive v0.7.35 -2026-04-08T22:01:41.214649Z 01O Downloaded try-lock v0.2.5 -2026-04-08T22:01:41.214661Z 01O Downloaded tracing-log v0.2.0 -2026-04-08T22:01:41.214666Z 01O Downloaded time-core v0.1.2 -2026-04-08T22:01:41.214671Z 01O Downloaded ident_case v1.0.1 -2026-04-08T22:01:41.214673Z 01O Downloaded http-body v1.0.1 -2026-04-08T22:01:41.214677Z 01O Downloaded hex v0.4.3 -2026-04-08T22:01:41.214681Z 01O Downloaded heck v0.5.0 -2026-04-08T22:01:41.214683Z 01O Downloaded heck v0.4.1 -2026-04-08T22:01:41.214687Z 01O Downloaded glibc_version v0.1.2 -2026-04-08T22:01:41.214692Z 01O Downloaded generic-array v0.14.7 -2026-04-08T22:01:41.214699Z 01O Downloaded futures-sink v0.3.31 -2026-04-08T22:01:41.214703Z 01O Downloaded foldhash v0.1.5 -2026-04-08T22:01:41.214725Z 01O Downloaded float-cmp v0.10.0 -2026-04-08T22:01:41.214737Z 01O Downloaded find-msvc-tools v0.1.9 -2026-04-08T22:01:41.214742Z 01O Downloaded fastrand v2.3.0 -2026-04-08T22:01:41.214757Z 01O Downloaded fallible-iterator v0.3.0 -2026-04-08T22:01:41.214767Z 01O Downloaded equivalent v1.0.1 -2026-04-08T22:01:41.214771Z 01O Downloaded digest v0.10.7 -2026-04-08T22:01:41.214783Z 01O Downloaded deranged v0.3.11 -2026-04-08T22:01:41.214791Z 01O Downloaded darling_macro v0.20.10 -2026-04-08T22:01:41.214796Z 01O Downloaded colorchoice v1.0.3 -2026-04-08T22:01:41.214809Z 01O Downloaded cmake v0.1.57 -2026-04-08T22:01:41.214818Z 01O Downloaded clap_lex v0.7.4 -2026-04-08T22:01:41.214822Z 01O Downloaded cfg-if v1.0.1 -2026-04-08T22:01:41.214835Z 01O Downloaded anstyle-query v1.1.2 -2026-04-08T22:01:41.214843Z 01O Downloaded lazy_static v1.4.0 -2026-04-08T22:01:41.214847Z 01O Downloaded itoa v1.0.14 -2026-04-08T22:01:41.214860Z 01O Downloaded tokio-util v0.7.13 -2026-04-08T22:01:41.214868Z 01O Downloaded tokio-rustls v0.26.1 -2026-04-08T22:01:41.214874Z 01O Downloaded is-terminal v0.4.13 -2026-04-08T22:01:41.214885Z 01O Downloaded halfbrown v0.2.5 -2026-04-08T22:01:41.214943Z 01O Downloaded futures-task v0.3.31 -2026-04-08T22:01:41.214948Z 01O Downloaded futures-macro v0.3.31 -2026-04-08T22:01:41.214961Z 01O Downloaded futures-io v0.3.31 -2026-04-08T22:01:41.214970Z 01O Downloaded function_name-proc-macro v0.3.0 -2026-04-08T22:01:41.214974Z 01O Downloaded function_name v0.3.0 -2026-04-08T22:01:41.214986Z 01O Downloaded errno v0.3.10 -2026-04-08T22:01:41.214989Z 01O Downloaded dunce v1.0.5 -2026-04-08T22:01:41.214992Z 01O Downloaded debugid v0.8.0 -2026-04-08T22:01:41.214998Z 01O Downloaded darling_core v0.20.10 -2026-04-08T22:01:41.215000Z 01O Downloaded crypto-common v0.1.6 -2026-04-08T22:01:41.215005Z 01O Downloaded crossbeam-queue v0.3.12 -2026-04-08T22:01:41.215014Z 01O Downloaded const-str v0.5.7 -2026-04-08T22:01:41.215017Z 01O Downloaded cfg_aliases v0.2.1 -2026-04-08T22:01:41.215020Z 01O Downloaded autocfg v1.4.0 -2026-04-08T22:01:41.215024Z 01O Downloaded futures-core v0.3.31 -2026-04-08T22:01:41.215027Z 01O Downloaded anyhow v1.0.98 -2026-04-08T22:01:41.215030Z 01O Downloaded dyn-clone v1.0.17 -2026-04-08T22:01:41.215035Z 01O Downloaded time-macros v0.2.19 -2026-04-08T22:01:41.215037Z 01O Downloaded tokio-macros v2.6.0 -2026-04-08T22:01:41.215040Z 01O Downloaded cpufeatures v0.2.16 -2026-04-08T22:01:41.215045Z 01O Downloaded adler2 v2.0.0 -2026-04-08T22:01:41.215050Z 01O Downloaded aws-lc-sys v0.37.0 -2026-04-08T22:01:41.715446Z 01O Downloaded windows v0.51.1 -2026-04-08T22:01:42.716839Z 01O Compiling proc-macro2 v1.0.93 -2026-04-08T22:01:42.716856Z 01O Compiling unicode-ident v1.0.14 -2026-04-08T22:01:42.716864Z 01O Compiling libc v0.2.177 -2026-04-08T22:01:42.716884Z 01O Compiling memchr v2.7.4 -2026-04-08T22:01:42.716896Z 01O Compiling cfg-if v1.0.1 -2026-04-08T22:01:42.716902Z 01O Compiling autocfg v1.4.0 -2026-04-08T22:01:42.716929Z 01O Compiling once_cell v1.21.3 -2026-04-08T22:01:42.716936Z 01O Compiling itoa v1.0.14 -2026-04-08T22:01:42.716941Z 01O Compiling bitflags v2.8.0 -2026-04-08T22:01:42.716948Z 01O Compiling find-msvc-tools v0.1.9 -2026-04-08T22:01:42.716951Z 01O Compiling shlex v1.3.0 -2026-04-08T22:01:42.716954Z 01O Compiling serde_core v1.0.228 -2026-04-08T22:01:42.716960Z 01O Compiling pin-project-lite v0.2.16 -2026-04-08T22:01:42.716962Z 01O Compiling serde v1.0.228 -2026-04-08T22:01:42.716966Z 01O Compiling bytes v1.11.1 -2026-04-08T22:01:42.716971Z 01O Compiling pin-utils v0.1.0 -2026-04-08T22:01:42.716974Z 01O Compiling equivalent v1.0.1 -2026-04-08T22:01:42.716979Z 01O Compiling anyhow v1.0.98 -2026-04-08T22:01:42.716984Z 01O Compiling hashbrown v0.16.1 -2026-04-08T22:01:42.716986Z 01O Compiling ryu v1.0.18 -2026-04-08T22:01:42.716990Z 01O Compiling cfg_aliases v0.2.1 -2026-04-08T22:01:42.716996Z 01O Compiling regex-syntax v0.8.5 -2026-04-08T22:01:42.717004Z 01O Compiling futures-sink v0.3.31 -2026-04-08T22:01:42.717009Z 01O Compiling dunce v1.0.5 -2026-04-08T22:01:42.717027Z 01O Compiling fs_extra v1.3.0 -2026-04-08T22:01:43.217830Z 01O Compiling httparse v1.9.5 -2026-04-08T22:01:43.217844Z 01O Compiling futures-core v0.3.31 -2026-04-08T22:01:43.217849Z 01O Compiling strsim v0.11.1 -2026-04-08T22:01:43.217866Z 01O Compiling try-lock v0.2.5 -2026-04-08T22:01:43.217877Z 01O Compiling futures-task v0.3.31 -2026-04-08T22:01:43.217884Z 01O Compiling futures-io v0.3.31 -2026-04-08T22:01:43.217901Z 01O Compiling want v0.3.1 -2026-04-08T22:01:43.217917Z 01O Compiling smallvec v1.15.1 -2026-04-08T22:01:43.217923Z 01O Compiling futures-channel v0.3.31 -2026-04-08T22:01:43.217928Z 01O Compiling zeroize v1.8.1 -2026-04-08T22:01:43.718225Z 01O Compiling aws-lc-rs v1.15.4 -2026-04-08T22:01:43.718232Z 01O Compiling thiserror v1.0.69 -2026-04-08T22:01:43.718238Z 01O Compiling tower-service v0.3.3 -2026-04-08T22:01:43.718243Z 01O Compiling getrandom v0.3.2 -2026-04-08T22:01:43.718248Z 01O Compiling rustls-pki-types v1.14.0 -2026-04-08T22:01:43.718252Z 01O Compiling tracing-core v0.1.36 -2026-04-08T22:01:43.718267Z 01O Compiling unicode-xid v0.2.6 -2026-04-08T22:01:44.218927Z 01O Compiling untrusted v0.9.0 -2026-04-08T22:01:44.218936Z 01O Compiling rustls v0.23.37 -2026-04-08T22:01:44.218940Z 01O Compiling slab v0.4.9 -2026-04-08T22:01:44.218979Z 01O Compiling aho-corasick v1.1.3 -2026-04-08T22:01:44.218986Z 01O Compiling num-traits v0.2.19 -2026-04-08T22:01:44.218993Z 01O Compiling memoffset v0.9.1 -2026-04-08T22:01:44.218999Z 01O Compiling fastrand v2.3.0 -2026-04-08T22:01:44.219002Z 01O Compiling http v1.4.0 -2026-04-08T22:01:44.219006Z 01O Compiling utf8parse v0.2.2 -2026-04-08T22:01:44.719427Z 01O Compiling anstyle-parse v0.2.6 -2026-04-08T22:01:44.719435Z 01O Compiling nix v0.29.0 -2026-04-08T22:01:44.719441Z 01O Compiling anstyle-query v1.1.2 -2026-04-08T22:01:44.719448Z 01O Compiling heck v0.5.0 -2026-04-08T22:01:44.719451Z 01O Compiling is_terminal_polyfill v1.70.1 -2026-04-08T22:01:44.719454Z 01O Compiling rustix v1.1.3 -2026-04-08T22:01:44.719460Z 01O Compiling hex v0.4.3 -2026-04-08T22:01:44.719470Z 01O Compiling colorchoice v1.0.3 -2026-04-08T22:01:44.719475Z 01O Compiling static_assertions v1.1.0 -2026-04-08T22:01:45.219831Z 01O Compiling anstyle v1.0.10 -2026-04-08T22:01:45.219839Z 01O Compiling tracing v0.1.44 -2026-04-08T22:01:45.219843Z 01O Compiling indexmap v2.12.1 -2026-04-08T22:01:45.219848Z 01O Compiling subtle v2.6.1 -2026-04-08T22:01:45.219851Z 01O Compiling either v1.13.0 -2026-04-08T22:01:45.219854Z 01O Compiling winnow v0.6.24 -2026-04-08T22:01:45.219860Z 01O Compiling serde_json v1.0.137 -2026-04-08T22:01:45.219862Z 01O Compiling clap_lex v0.7.4 -2026-04-08T22:01:45.219866Z 01O Compiling version_check v0.9.5 -2026-04-08T22:01:45.725950Z 01O Compiling anstream v0.6.18 -2026-04-08T22:01:45.725958Z 01O Compiling linux-raw-sys v0.11.0 -2026-04-08T22:01:45.725962Z 01O Compiling openssl-probe v0.1.5 -2026-04-08T22:01:45.725968Z 01O Compiling http-body v1.0.1 -2026-04-08T22:01:45.725970Z 01O Compiling itertools v0.12.1 -2026-04-08T22:01:45.725974Z 01O Compiling paste v1.0.15 -2026-04-08T22:01:45.725983Z 01O Compiling cbindgen v0.29.0 -2026-04-08T22:01:45.725986Z 01O Compiling rustls-native-certs v0.8.1 -2026-04-08T22:01:46.226440Z 01O Compiling clap_builder v4.5.27 -2026-04-08T22:01:46.226448Z 01O Compiling quote v1.0.38 -2026-04-08T22:01:46.226452Z 01O Compiling byteorder v1.5.0 -2026-04-08T22:01:46.226458Z 01O Compiling cc v1.2.55 -2026-04-08T22:01:46.226461Z 01O Compiling log v0.4.25 -2026-04-08T22:01:46.727863Z 01O Compiling crossbeam-utils v0.8.21 -2026-04-08T22:01:46.727870Z 01O Compiling allocator-api2 v0.2.21 -2026-04-08T22:01:46.727875Z 01O Compiling syn v2.0.96 -2026-04-08T22:01:47.229182Z 01O Compiling libdd-ddsketch v1.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-ddsketch) -2026-04-08T22:01:47.229191Z 01O Compiling typenum v1.17.0 -2026-04-08T22:01:47.229195Z 01O Compiling const_format_proc_macros v0.2.34 -2026-04-08T22:01:47.229202Z 01O Compiling libdd-trace-protobuf v3.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-trace-protobuf) -2026-04-08T22:01:47.730980Z 01O Compiling generic-array v0.14.7 -2026-04-08T22:01:47.730990Z 01O Compiling foldhash v0.1.5 -2026-04-08T22:01:47.730994Z 01O Compiling regex-automata v0.4.9 -2026-04-08T22:01:48.231422Z 01O Compiling rmp v0.8.14 -2026-04-08T22:01:48.231429Z 01O Compiling base64 v0.22.1 -2026-04-08T22:01:48.732122Z 01O Compiling rustix v0.38.43 -2026-04-08T22:01:48.732143Z 01O Compiling hashbrown v0.15.2 -2026-04-08T22:01:48.732147Z 01O Compiling zerocopy v0.8.24 -2026-04-08T22:01:49.233795Z 01O Compiling iana-time-zone v0.1.61 -2026-04-08T22:01:49.233807Z 01O Compiling rmpv v1.3.0 -2026-04-08T22:01:49.734867Z 01O Compiling const_format v0.2.34 -2026-04-08T22:01:49.734882Z 01O Compiling crossbeam-channel v0.5.15 -2026-04-08T22:01:49.734888Z 01O Compiling ahash v0.8.12 -2026-04-08T22:01:50.235835Z 01O Compiling nix v0.30.1 -2026-04-08T22:01:50.235853Z 01O Compiling stable_deref_trait v1.2.0 -2026-04-08T22:01:50.235887Z 01O Compiling fnv v1.0.7 -2026-04-08T22:01:50.235894Z 01O Compiling ident_case v1.0.1 -2026-04-08T22:01:50.235897Z 01O Compiling windows_x86_64_gnu v0.48.5 -2026-04-08T22:01:50.235901Z 01O Compiling linux-raw-sys v0.4.15 -2026-04-08T22:01:50.736772Z 01O Compiling cpp_demangle v0.5.1 -2026-04-08T22:01:50.736780Z 01O Compiling cadence v1.5.0 -2026-04-08T22:01:51.237620Z 01O Compiling cpp_demangle v0.4.4 -2026-04-08T22:01:51.237635Z 01O Compiling cpufeatures v0.2.16 -2026-04-08T22:01:51.237640Z 01O Compiling crypto-common v0.1.6 -2026-04-08T22:01:51.738045Z 01O Compiling block-buffer v0.10.4 -2026-04-08T22:01:51.738058Z 01O Compiling crossbeam-queue v0.3.12 -2026-04-08T22:01:51.738064Z 01O Compiling simd-adler32 v0.3.7 -2026-04-08T22:01:51.738070Z 01O Compiling digest v0.10.7 -2026-04-08T22:01:51.738073Z 01O Compiling constcat v0.4.1 -2026-04-08T22:01:51.738076Z 01O Compiling adler2 v2.0.0 -2026-04-08T22:01:51.738081Z 01O Compiling fallible-iterator v0.3.0 -2026-04-08T22:01:51.738083Z 01O Compiling schemars v0.8.21 -2026-04-08T22:01:51.738087Z 01O Compiling io-lifetimes v1.0.11 -2026-04-08T22:01:52.238803Z 01O Compiling arc-swap v1.7.1 -2026-04-08T22:01:52.238810Z 01O Compiling blazesym v0.2.3 -2026-04-08T22:01:52.238814Z 01O Compiling portable-atomic v1.10.0 -2026-04-08T22:01:52.739568Z 01O Compiling symbolic-demangle v12.13.3 -2026-04-08T22:01:52.739576Z 01O Compiling rustc-demangle v0.1.26 -2026-04-08T22:01:52.739582Z 01O Compiling gimli v0.32.0 -2026-04-08T22:01:52.739589Z 01O Compiling sha2 v0.10.8 -2026-04-08T22:01:52.739592Z 01O Compiling miniz_oxide v0.9.0 -2026-04-08T22:01:53.240682Z 01O Compiling windows-targets v0.48.5 -2026-04-08T22:01:53.240698Z 01O Compiling msvc-demangler v0.10.1 -2026-04-08T22:01:53.741762Z 01O Compiling ref-cast v1.0.23 -2026-04-08T22:01:53.741769Z 01O Compiling dyn-clone v1.0.17 -2026-04-08T22:01:53.741774Z 01O Compiling regex v1.11.1 -2026-04-08T22:01:53.741798Z 01O Compiling percent-encoding v2.3.1 -2026-04-08T22:01:54.243575Z 01O Compiling powerfmt v0.2.0 -2026-04-08T22:01:54.243582Z 01O Compiling windows-core v0.51.1 -2026-04-08T22:01:54.243586Z 01O Compiling float-cmp v0.10.0 -2026-04-08T22:01:54.243591Z 01O Compiling clap v4.5.27 -2026-04-08T22:01:54.243594Z 01O Compiling function_name-proc-macro v0.3.0 -2026-04-08T22:01:54.243598Z 01O Compiling num-conv v0.1.0 -2026-04-08T22:01:54.243602Z 01O Compiling time-core v0.1.2 -2026-04-08T22:01:54.743783Z 01O Compiling glibc_version v0.1.2 -2026-04-08T22:01:54.743790Z 01O Compiling lazy_static v1.4.0 -2026-04-08T22:01:54.743794Z 01O Compiling thread_local v1.1.8 -2026-04-08T22:01:54.743799Z 01O Compiling unsafe-libyaml v0.2.11 -2026-04-08T22:01:54.743801Z 01O Compiling simdutf8 v0.1.5 -2026-04-08T22:01:54.743805Z 01O Compiling sharded-slab v0.1.7 -2026-04-08T22:01:54.743810Z 01O Compiling function_name v0.3.0 -2026-04-08T22:01:54.743813Z 01O Compiling tracing-log v0.2.0 -2026-04-08T22:01:55.244601Z 01O Compiling memfd v0.6.4 -2026-04-08T22:01:55.244619Z 01O Compiling jobserver v0.1.32 -2026-04-08T22:01:55.244627Z 01O Compiling mio v1.0.3 -2026-04-08T22:01:55.244653Z 01O Compiling socket2 v0.6.2 -2026-04-08T22:01:55.244674Z 01O Compiling signal-hook-registry v1.4.2 -2026-04-08T22:01:55.244687Z 01O Compiling socket2 v0.5.10 -2026-04-08T22:01:55.745229Z 01O Compiling getrandom v0.2.15 -2026-04-08T22:01:55.745236Z 01O Compiling tempfile v3.24.0 -2026-04-08T22:01:55.745240Z 01O Compiling rand_core v0.6.4 -2026-04-08T22:01:56.247764Z 01O Compiling darling_core v0.20.10 -2026-04-08T22:01:56.247774Z 01O Compiling memmap2 v0.9.5 -2026-04-08T22:01:56.247779Z 01O Compiling serde_derive_internals v0.29.1 -2026-04-08T22:01:56.247784Z 01O Compiling hashbrown v0.14.5 -2026-04-08T22:01:56.748873Z 01O Compiling page_size v0.6.0 -2026-04-08T22:01:56.748895Z 01O Compiling errno v0.3.10 -2026-04-08T22:01:56.748899Z 01O Compiling matchers v0.2.0 -2026-04-08T22:01:56.748914Z 01O Compiling memory-stats v1.2.0 -2026-04-08T22:01:56.748976Z 01O Compiling cmake v0.1.57 -2026-04-08T22:01:56.748984Z 01O Compiling cc_utils v0.1.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/tools/cc_utils) -2026-04-08T22:01:56.749010Z 01O Compiling tracing-subscriber v0.3.22 -2026-04-08T22:01:56.749023Z 01O Compiling priority-queue v2.1.1 -2026-04-08T22:01:56.749029Z 01O Compiling zwohash v0.1.2 -2026-04-08T22:01:56.749056Z 01O Compiling prctl v1.0.0 -2026-04-08T22:01:56.749062Z 01O Compiling datadog-ipc v0.1.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/datadog-ipc) -2026-04-08T22:01:56.749070Z 01O Compiling datadog-sidecar-ffi v0.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/datadog-sidecar-ffi) -2026-04-08T22:01:57.249817Z 01O Compiling windows v0.51.1 -2026-04-08T22:01:57.249829Z 01O Compiling arrayref v0.3.9 -2026-04-08T22:01:57.249836Z 01O Compiling is-terminal v0.4.13 -2026-04-08T22:01:57.249857Z 01O Compiling humantime v2.1.0 -2026-04-08T22:01:57.249868Z 01O Compiling termcolor v1.4.1 -2026-04-08T22:01:57.249873Z 01O Compiling itertools v0.11.0 -2026-04-08T22:01:57.249895Z 01O Compiling const-str v0.5.7 -2026-04-08T22:01:57.750539Z 01O Compiling env_logger v0.10.2 -2026-04-08T22:01:57.750554Z 01O Compiling aws-lc-sys v0.37.0 -2026-04-08T22:01:57.750561Z 01O Compiling sys-info v0.9.1 -2026-04-08T22:01:57.750580Z 01O Compiling libdd-libunwind-sys v0.1.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-libunwind-sys) -2026-04-08T22:01:57.750589Z 01O Compiling spawn_worker v0.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/spawn_worker) -2026-04-08T22:01:58.251987Z 01O Compiling serde_derive v1.0.228 -2026-04-08T22:01:58.251993Z 01O Compiling futures-macro v0.3.31 -2026-04-08T22:01:58.251999Z 01O Compiling tokio-macros v2.6.0 -2026-04-08T22:01:58.252006Z 01O Compiling thiserror-impl v1.0.69 -2026-04-08T22:01:58.252008Z 01O Compiling pin-project-internal v1.1.8 -2026-04-08T22:01:58.252012Z 01O Compiling prost-derive v0.14.3 -2026-04-08T22:01:58.252017Z 01O Compiling zerocopy-derive v0.7.35 -2026-04-08T22:01:58.753669Z 01O Compiling schemars_derive v0.8.21 -2026-04-08T22:01:58.753677Z 01O Compiling num-derive v0.4.2 -2026-04-08T22:01:58.753682Z 01O Compiling ref-cast-impl v1.0.23 -2026-04-08T22:01:59.254485Z 01O Compiling datadog-ipc-macros v0.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/datadog-ipc-macros) -2026-04-08T22:01:59.254503Z 01O Compiling datadog-sidecar-macros v0.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/datadog-sidecar-macros) -2026-04-08T22:01:59.254510Z 01O Compiling tokio v1.49.0 -2026-04-08T22:01:59.254527Z 01O Compiling futures-util v0.3.31 -2026-04-08T22:01:59.755122Z 01O Compiling zerocopy v0.7.35 -2026-04-08T22:01:59.755134Z 01O Compiling pin-project v1.1.8 -2026-04-08T22:02:00.256833Z 01O Compiling libdd-capabilities v0.1.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-capabilities) -2026-04-08T22:02:00.256849Z 01O Compiling darling_macro v0.20.10 -2026-04-08T22:02:00.256857Z 01O Compiling ppv-lite86 v0.2.20 -2026-04-08T22:02:00.256879Z 01O Compiling prost v0.14.3 -2026-04-08T22:02:00.758056Z 01O Compiling darling v0.20.10 -2026-04-08T22:02:00.758066Z 01O Compiling serde_with_macros v3.12.0 -2026-04-08T22:02:00.758069Z 01O Compiling rand_chacha v0.3.1 -2026-04-08T22:02:01.257981Z 01O Compiling rand v0.8.5 -2026-04-08T22:02:02.259036Z 01O Compiling toml_datetime v0.6.8 -2026-04-08T22:02:02.259054Z 01O Compiling serde_spanned v0.6.8 -2026-04-08T22:02:02.259062Z 01O Compiling uuid v1.12.1 -2026-04-08T22:02:02.259080Z 01O Compiling toml_edit v0.22.22 -2026-04-08T22:02:02.259093Z 01O Compiling serde_bytes v0.11.15 -2026-04-08T22:02:02.259098Z 01O Compiling futures-executor v0.3.31 -2026-04-08T22:02:02.259114Z 01O Compiling http-body-util v0.1.2 -2026-04-08T22:02:02.259119Z 01O Compiling rmp-serde v1.3.0 -2026-04-08T22:02:02.259126Z 01O Compiling libdd-tinybytes v1.1.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-tinybytes) -2026-04-08T22:02:02.259134Z 01O Compiling chrono v0.4.41 -2026-04-08T22:02:02.259136Z 01O Compiling futures v0.3.31 -2026-04-08T22:02:02.759608Z 01O Compiling halfbrown v0.2.5 -2026-04-08T22:02:02.759633Z 01O Compiling os_info v3.14.0 -2026-04-08T22:02:02.759638Z 01O Compiling debugid v0.8.0 -2026-04-08T22:02:02.759643Z 01O Compiling deranged v0.3.11 -2026-04-08T22:02:02.759646Z 01O Compiling manual_future v0.1.1 -2026-04-08T22:02:02.759649Z 01O Compiling serde_with v3.12.0 -2026-04-08T22:02:02.759663Z 01O Compiling bincode v1.3.3 -2026-04-08T22:02:02.759670Z 01O Compiling serde_yaml v0.9.34+deprecated -2026-04-08T22:02:02.759676Z 01O Compiling symbolic-common v12.13.3 -2026-04-08T22:02:02.759683Z 01O Compiling value-trait v0.10.1 -2026-04-08T22:02:03.260325Z 01O Compiling simd-json v0.14.3 -2026-04-08T22:02:03.260343Z 01O Compiling time v0.3.37 -2026-04-08T22:02:04.263683Z 01O Compiling hyper v1.6.0 -2026-04-08T22:02:04.263692Z 01O Compiling toml v0.8.19 -2026-04-08T22:02:04.263698Z 01O Compiling tokio-util v0.7.13 -2026-04-08T22:02:04.263704Z 01O Compiling sendfd v0.4.3 -2026-04-08T22:02:05.264817Z 01O Compiling hyper-util v0.1.15 -2026-04-08T22:02:05.264828Z 01O Compiling libdd-trace-normalization v2.0.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-trace-normalization) -2026-04-08T22:02:05.264835Z 01O Compiling libdd-library-config v1.1.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-library-config) -2026-04-08T22:02:06.265783Z 01O Compiling libdd-common v3.0.2 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-common) -2026-04-08T22:02:07.767813Z 01O Compiling build_common v0.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/build-common) -2026-04-08T22:02:07.767824Z 01O Compiling libdd-crashtracker v1.0.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-crashtracker) -2026-04-08T22:02:08.268460Z 01O Compiling libdd-common-ffi v0.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-common-ffi) -2026-04-08T22:02:08.268478Z 01O Compiling libdd-telemetry-ffi v0.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-telemetry-ffi) -2026-04-08T22:02:08.268487Z 01O Compiling libdd-crashtracker-ffi v0.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-crashtracker-ffi) -2026-04-08T22:02:08.268515Z 01O Compiling datadog-live-debugger-ffi v0.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/datadog-live-debugger-ffi) -2026-04-08T22:02:08.268537Z 01O Compiling libdd-library-config-ffi v0.0.2 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-library-config-ffi) -2026-04-08T22:02:11.271863Z 01O Compiling rustls-webpki v0.103.9 -2026-04-08T22:02:14.775734Z 01O Compiling tokio-rustls v0.26.1 -2026-04-08T22:02:14.775743Z 01O Compiling hyper-rustls v0.27.7 -2026-04-08T22:02:15.777780Z 01O Compiling libdd-telemetry v4.0.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-telemetry) -2026-04-08T22:02:15.777791Z 01O Compiling libdd-capabilities-impl v0.1.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-capabilities-impl) -2026-04-08T22:02:15.777798Z 01O Compiling libdd-dogstatsd-client v2.0.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-dogstatsd-client) -2026-04-08T22:02:15.777862Z 01O Compiling libdd-trace-utils v3.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-trace-utils) -2026-04-08T22:02:17.779288Z 01O Compiling libdd-trace-stats v2.0.0 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-trace-stats) -2026-04-08T22:02:18.784552Z 01O Compiling libdd-data-pipeline v3.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/libdd-data-pipeline) -2026-04-08T22:02:19.783105Z 01O Compiling datadog-live-debugger v0.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/datadog-live-debugger) -2026-04-08T22:02:21.284459Z 01O Compiling datadog-remote-config v0.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/datadog-remote-config) -2026-04-08T22:02:41.317137Z 01O Compiling datadog-sidecar v0.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/libdatadog/datadog-sidecar) -2026-04-08T22:02:57.340080Z 01O Compiling ddtrace-php v0.0.1 (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/components-rs) -2026-04-08T22:02:59.842715Z 01O Finished `dev` profile [unoptimized + debuginfo] target(s) in 1m 23s -2026-04-08T22:03:00.343129Z 01O [ 55%] No install step for 'components_rs_proj' -2026-04-08T22:03:00.343145Z 01O [ 57%] Completed 'components_rs_proj' -2026-04-08T22:03:00.343152Z 01O [ 57%] Built target components_rs_proj -2026-04-08T22:03:00.343171Z 01O [ 58%] Building CXX object CMakeFiles/catch2_main.dir/catch2_main.cc.o -2026-04-08T22:03:07.853149Z 01O [ 59%] Linking CXX static library libcatch2_main.a -2026-04-08T22:03:07.853178Z 01O [ 59%] Built target catch2_main -2026-04-08T22:03:07.853182Z 01O [ 62%] Building CXX object hook/tests/CMakeFiles/hooks.dir/internal/static.cc.o -2026-04-08T22:03:07.853188Z 01O [ 62%] Building CXX object exceptions/tests/CMakeFiles/exceptions.dir/exceptions.cc.o -2026-04-08T22:03:07.853192Z 01O [ 63%] Building CXX object hook/tests/CMakeFiles/hooks.dir/internal/request.cc.o -2026-04-08T22:03:07.853197Z 01O [ 64%] Building CXX object interceptor/tests/CMakeFiles/interceptor.dir/interceptor.cc.o -2026-04-08T22:03:07.853224Z 01O [ 66%] Building CXX object config/tests/CMakeFiles/config.dir/ext_zai_config.cc.o -2026-04-08T22:03:07.853239Z 01O [ 67%] Building CXX object config/tests/CMakeFiles/config.dir/default.cc.o -2026-04-08T22:03:07.853245Z 01O [ 68%] Building CXX object env/tests/CMakeFiles/env.dir/error.cc.o -2026-04-08T22:03:07.853266Z 01O [ 71%] Building CXX object uri_normalization/tests/CMakeFiles/uri_normalization.dir/uri_normalization.cc.o -2026-04-08T22:03:07.853279Z 01O [ 71%] Building CXX object config/tests/CMakeFiles/config.dir/env.cc.o -2026-04-08T22:03:07.853284Z 01O [ 72%] Building CXX object config/tests/CMakeFiles/config.dir/id.cc.o -2026-04-08T22:03:07.853296Z 01O [ 74%] Building CXX object sandbox/tests/CMakeFiles/sandbox.dir/error.cc.o -2026-04-08T22:03:07.853316Z 01O [ 77%] Building CXX object config/tests/CMakeFiles/config.dir/decode.cc.o -2026-04-08T22:03:07.853321Z 01O [ 77%] Building CXX object sandbox/tests/CMakeFiles/sandbox.dir/exception.cc.o -2026-04-08T22:03:07.853327Z 01O [ 79%] Building CXX object env/tests/CMakeFiles/env.dir/sapi.cc.o -2026-04-08T22:03:07.853330Z 01O [ 79%] Building CXX object headers/tests/CMakeFiles/headers.dir/headers.cc.o -2026-04-08T22:03:07.853334Z 01O [ 80%] Building CXX object sandbox/tests/CMakeFiles/sandbox.dir/sandbox.cc.o -2026-04-08T22:03:07.853339Z 01O [ 83%] Building CXX object json/tests/CMakeFiles/json.dir/json.cc.o -2026-04-08T22:03:07.853342Z 01O [ 83%] Building CXX object env/tests/CMakeFiles/env.dir/host.cc.o -2026-04-08T22:03:07.853348Z 01O [ 84%] Building CXX object zai_string/tests/CMakeFiles/strings.dir/strings.cc.o -2026-04-08T22:03:07.853354Z 01O [ 85%] Building CXX object interceptor/tests/CMakeFiles/interceptor.dir/resolver.cc.o -2026-04-08T22:03:07.853358Z 01O [ 87%] Building CXX object config/tests/CMakeFiles/config.dir/ini.cc.o -2026-04-08T22:03:09.355399Z 01O [ 88%] Linking CXX executable json -2026-04-08T22:03:09.355409Z 01O [ 89%] Linking CXX executable exceptions -2026-04-08T22:03:09.856107Z 01O [ 90%] Linking CXX executable env -2026-04-08T22:03:09.856125Z 01O [ 92%] Linking CXX executable strings -2026-04-08T22:03:09.856132Z 01O [ 93%] Linking CXX executable sandbox -2026-04-08T22:03:09.856150Z 01O [ 94%] Linking CXX executable hooks -2026-04-08T22:03:09.856162Z 01O [ 96%] Linking CXX executable headers -2026-04-08T22:03:09.856168Z 01O [ 96%] Built target json -2026-04-08T22:03:09.856204Z 01O [ 96%] Built target exceptions -2026-04-08T22:03:09.856209Z 01O [ 96%] Built target env -2026-04-08T22:03:09.856215Z 01O [ 96%] Built target strings -2026-04-08T22:03:09.856221Z 01O [ 96%] Built target sandbox -2026-04-08T22:03:09.856224Z 01O [ 96%] Built target headers -2026-04-08T22:03:09.856227Z 01O [ 96%] Built target hooks -2026-04-08T22:03:10.356394Z 01O [ 97%] Linking CXX executable config -2026-04-08T22:03:10.356403Z 01O [ 98%] Linking CXX executable uri_normalization -2026-04-08T22:03:10.356408Z 01O [ 98%] Built target config -2026-04-08T22:03:10.356417Z 01O [100%] Linking CXX executable interceptor -2026-04-08T22:03:10.356420Z 01O [100%] Built target uri_normalization -2026-04-08T22:03:10.856827Z 01O [100%] Built target interceptor -2026-04-08T22:03:10.856845Z 01O $ mkdir -p "${CI_PROJECT_DIR}/artifacts" -2026-04-08T22:03:10.856854Z 01O $ make test ARGS="--output-junit ${CI_PROJECT_DIR}/artifacts/zai-8.0-debug-zts-asan-results.xml --output-on-failure" -2026-04-08T22:03:10.856868Z 01O Running tests... -2026-04-08T22:03:10.856876Z 01O Test project /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_zai -2026-04-08T22:03:10.856933Z 01O Start 1: env/host [non-empty string] -2026-04-08T22:03:10.856964Z 01O 1/205 Test #1: env/host [non-empty string] ................................................................... Passed 0.11 sec -2026-04-08T22:03:10.856969Z 01O Start 2: env/host [empty string] -2026-04-08T22:03:10.856974Z 01O 2/205 Test #2: env/host [empty string] ....................................................................... Passed 0.07 sec -2026-04-08T22:03:10.856981Z 01O Start 3: env/host [not set] -2026-04-08T22:03:10.856983Z 01O 3/205 Test #3: env/host [not set] ............................................................................ Passed 0.06 sec -2026-04-08T22:03:10.856988Z 01O Start 4: env/host [outside request context] -2026-04-08T22:03:10.856993Z 01O 4/205 Test #4: env/host [outside request context] ............................................................ Passed 0.07 sec -2026-04-08T22:03:10.856996Z 01O Start 5: env/error [zero name len (sys)] -2026-04-08T22:03:11.357708Z 01O 5/205 Test #5: env/error [zero name len (sys)] ............................................................... Passed 0.07 sec -2026-04-08T22:03:11.357726Z 01O Start 6: env/sapi [non-empty string] -2026-04-08T22:03:11.357732Z 01O 6/205 Test #6: env/sapi [non-empty string] ................................................................... Passed 0.07 sec -2026-04-08T22:03:11.357769Z 01O Start 7: env/sapi [non-empty string (no host env fallback)] -2026-04-08T22:03:11.357785Z 01O 7/205 Test #7: env/sapi [non-empty string (no host env fallback)] ............................................ Passed 0.07 sec -2026-04-08T22:03:11.357793Z 01O Start 8: env/sapi [fallback to host env when sapi not set] -2026-04-08T22:03:11.357801Z 01O 8/205 Test #8: env/sapi [fallback to host env when sapi not set] ............................................. Passed 0.07 sec -2026-04-08T22:03:11.357804Z 01O Start 9: env/sapi [not set] -2026-04-08T22:03:11.357807Z 01O 9/205 Test #9: env/sapi [not set] ............................................................................ Passed 0.07 sec -2026-04-08T22:03:11.357814Z 01O Start 10: env/sapi [not set (sapi returns null regardless of host env)] -2026-04-08T22:03:11.357817Z 01O 10/205 Test #10: env/sapi [not set (sapi returns null regardless of host env)] ................................. Passed 0.06 sec -2026-04-08T22:03:11.357821Z 01O Start 11: env/sapi [rinit non-empty string] -2026-04-08T22:03:11.357827Z 01O 11/205 Test #11: env/sapi [rinit non-empty string] ............................................................. Passed 0.06 sec -2026-04-08T22:03:11.357831Z 01O Start 12: exceptions [reading message with non-string type returns a non-empty string] -2026-04-08T22:03:11.357837Z 01O 12/205 Test #12: exceptions [reading message with non-string type returns a non-empty string] .................. Passed 0.07 sec -2026-04-08T22:03:11.357872Z 01O Start 13: exceptions [reading message from exception] -2026-04-08T22:03:11.857861Z 01O 13/205 Test #13: exceptions [reading message from exception] ................................................... Passed 0.07 sec -2026-04-08T22:03:11.857872Z 01O Start 14: exceptions [reading message from exception subclass] -2026-04-08T22:03:11.857877Z 01O 14/205 Test #14: exceptions [reading message from exception subclass] .......................................... Passed 0.07 sec -2026-04-08T22:03:11.857887Z 01O Start 15: exceptions [reading message from error] -2026-04-08T22:03:11.857890Z 01O 15/205 Test #15: exceptions [reading message from error] ....................................................... Passed 0.07 sec -2026-04-08T22:03:11.857895Z 01O Start 16: exceptions [reading message from error subclass] -2026-04-08T22:03:11.857901Z 01O 16/205 Test #16: exceptions [reading message from error subclass] .............................................. Passed 0.08 sec -2026-04-08T22:03:11.857954Z 01O Start 17: exceptions [reading trace from exception] -2026-04-08T22:03:11.857960Z 01O 17/205 Test #17: exceptions [reading trace from exception] ..................................................... Passed 0.08 sec -2026-04-08T22:03:11.857984Z 01O Start 18: exceptions [serializing trace with invalid frame] -2026-04-08T22:03:11.858000Z 01O 18/205 Test #18: exceptions [serializing trace with invalid frame] ............................................. Passed 0.07 sec -2026-04-08T22:03:11.858007Z 01O Start 19: exceptions [serializing valid trace] -2026-04-08T22:03:12.358511Z 01O 19/205 Test #19: exceptions [serializing valid trace] .......................................................... Passed 0.08 sec -2026-04-08T22:03:12.358540Z 01O Start 20: exceptions [serializing trace with invalid filename] -2026-04-08T22:03:12.358553Z 01O 20/205 Test #20: exceptions [serializing trace with invalid filename] .......................................... Passed 0.07 sec -2026-04-08T22:03:12.358560Z 01O Start 21: exceptions [serializing trace without line number] -2026-04-08T22:03:12.358563Z 01O 21/205 Test #21: exceptions [serializing trace without line number] ............................................ Passed 0.07 sec -2026-04-08T22:03:12.358569Z 01O Start 22: exceptions [serializing trace with invalid line number] -2026-04-08T22:03:12.358577Z 01O 22/205 Test #22: exceptions [serializing trace with invalid line number] ....................................... Passed 0.07 sec -2026-04-08T22:03:12.358581Z 01O Start 23: exceptions [serializing trace with invalid class, type and function] -2026-04-08T22:03:12.358585Z 01O 23/205 Test #23: exceptions [serializing trace with invalid class, type and function] .......................... Passed 0.07 sec -2026-04-08T22:03:12.358591Z 01O Start 24: config/default [bool] -2026-04-08T22:03:12.358594Z 01O 24/205 Test #24: config/default [bool] ......................................................................... Passed 0.07 sec -2026-04-08T22:03:12.358599Z 01O Start 25: config/default [double] -2026-04-08T22:03:12.358607Z 01O 25/205 Test #25: config/default [double] ....................................................................... Passed 0.07 sec -2026-04-08T22:03:12.358610Z 01O Start 26: config/default [int] -2026-04-08T22:03:12.859292Z 01O 26/205 Test #26: config/default [int] .......................................................................... Passed 0.09 sec -2026-04-08T22:03:12.859321Z 01O Start 27: config/default [map] -2026-04-08T22:03:12.859326Z 01O 27/205 Test #27: config/default [map] .......................................................................... Passed 0.07 sec -2026-04-08T22:03:12.859333Z 01O Start 28: config/default [map (empty)] -2026-04-08T22:03:12.859336Z 01O 28/205 Test #28: config/default [map (empty)] .................................................................. Passed 0.07 sec -2026-04-08T22:03:12.859341Z 01O Start 29: config/default [string] -2026-04-08T22:03:12.859349Z 01O 29/205 Test #29: config/default [string] ....................................................................... Passed 0.07 sec -2026-04-08T22:03:12.859353Z 01O Start 30: config/env [bool] -2026-04-08T22:03:12.859357Z 01O 30/205 Test #30: config/env [bool] ............................................................................. Passed 0.07 sec -2026-04-08T22:03:12.859363Z 01O Start 31: config/env [double] -2026-04-08T22:03:12.859366Z 01O 31/205 Test #31: config/env [double] ........................................................................... Passed 0.07 sec -2026-04-08T22:03:12.859370Z 01O Start 32: config/env [double (decoding error)] -2026-04-08T22:03:12.859376Z 01O 32/205 Test #32: config/env [double (decoding error)] .......................................................... Passed 0.07 sec -2026-04-08T22:03:12.859425Z 01O Start 33: config/env [int] -2026-04-08T22:03:13.360024Z 01O 33/205 Test #33: config/env [int] .............................................................................. Passed 0.07 sec -2026-04-08T22:03:13.360035Z 01O Start 34: config/env [int (decoding error)] -2026-04-08T22:03:13.360040Z 01O 34/205 Test #34: config/env [int (decoding error)] ............................................................. Passed 0.07 sec -2026-04-08T22:03:13.360049Z 01O Start 35: config/env [map] -2026-04-08T22:03:13.360052Z 01O 35/205 Test #35: config/env [map] .............................................................................. Passed 0.07 sec -2026-04-08T22:03:13.360057Z 01O Start 36: config/env [map (empty)] -2026-04-08T22:03:13.360086Z 01O 36/205 Test #36: config/env [map (empty)] ...................................................................... Passed 0.07 sec -2026-04-08T22:03:13.360102Z 01O Start 37: config/env [map (decoding error)] -2026-04-08T22:03:13.360109Z 01O 37/205 Test #37: config/env [map (decoding error)] ............................................................. Passed 0.07 sec -2026-04-08T22:03:13.360130Z 01O Start 38: config/env [string] -2026-04-08T22:03:13.360143Z 01O 38/205 Test #38: config/env [string] ........................................................................... Passed 0.07 sec -2026-04-08T22:03:13.360149Z 01O Start 39: config/env [string (empty)] -2026-04-08T22:03:13.360163Z 01O 39/205 Test #39: config/env [string (empty)] ................................................................... Passed 0.07 sec -2026-04-08T22:03:13.360173Z 01O Start 40: config/env [alias] -2026-04-08T22:03:13.360178Z 01O 40/205 Test #40: config/env [alias] ............................................................................ Passed 0.07 sec -2026-04-08T22:03:13.360189Z 01O Start 41: config/env [sys env change after memoization is not reflected] -2026-04-08T22:03:13.860590Z 01O 41/205 Test #41: config/env [sys env change after memoization is not reflected] ................................ Passed 0.07 sec -2026-04-08T22:03:13.860609Z 01O Start 42: config/id [bool] -2026-04-08T22:03:13.860615Z 01O 42/205 Test #42: config/id [bool] .............................................................................. Passed 0.07 sec -2026-04-08T22:03:13.860638Z 01O Start 43: config/id [alias] -2026-04-08T22:03:13.860653Z 01O 43/205 Test #43: config/id [alias] ............................................................................. Passed 0.07 sec -2026-04-08T22:03:13.860659Z 01O Start 44: config/id [unknown] -2026-04-08T22:03:13.860682Z 01O 44/205 Test #44: config/id [unknown] ........................................................................... Passed 0.07 sec -2026-04-08T22:03:13.860686Z 01O Start 45: config/id [null id] -2026-04-08T22:03:13.860694Z 01O 45/205 Test #45: config/id [null id] ........................................................................... Passed 0.07 sec -2026-04-08T22:03:13.860701Z 01O Start 46: config/decode [bool] -2026-04-08T22:03:13.860704Z 01O 46/205 Test #46: config/decode [bool] .......................................................................... Passed 0.07 sec -2026-04-08T22:03:13.860708Z 01O Start 47: config/decode [double] -2026-04-08T22:03:13.860714Z 01O 47/205 Test #47: config/decode [double] ........................................................................ Passed 0.07 sec -2026-04-08T22:03:13.860718Z 01O Start 48: config/decode [int] -2026-04-08T22:03:14.361381Z 01O 48/205 Test #48: config/decode [int] ........................................................................... Passed 0.07 sec -2026-04-08T22:03:14.361403Z 01O Start 49: config/decode [map] -2026-04-08T22:03:14.361412Z 01O 49/205 Test #49: config/decode [map] ........................................................................... Passed 0.07 sec -2026-04-08T22:03:14.361459Z 01O Start 50: config/decode [set] -2026-04-08T22:03:14.361463Z 01O 50/205 Test #50: config/decode [set] ........................................................................... Passed 0.07 sec -2026-04-08T22:03:14.361467Z 01O Start 51: config/decode [json] -2026-04-08T22:03:14.361475Z 01O 51/205 Test #51: config/decode [json] .......................................................................... Passed 0.07 sec -2026-04-08T22:03:14.361479Z 01O Start 52: config/ini [bool INI: default value] -2026-04-08T22:03:14.361482Z 01O 52/205 Test #52: config/ini [bool INI: default value] .......................................................... Passed 0.07 sec -2026-04-08T22:03:14.361488Z 01O Start 53: config/ini [bool INI: system value] -2026-04-08T22:03:14.361491Z 01O 53/205 Test #53: config/ini [bool INI: system value] ........................................................... Passed 0.07 sec -2026-04-08T22:03:14.361495Z 01O Start 54: config/ini [bool INI: user value] -2026-04-08T22:03:14.361502Z 01O 54/205 Test #54: config/ini [bool INI: user value] ............................................................. Passed 0.07 sec -2026-04-08T22:03:14.361505Z 01O Start 55: config/ini [double INI: default value] -2026-04-08T22:03:14.861939Z 01O 55/205 Test #55: config/ini [double INI: default value] ........................................................ Passed 0.07 sec -2026-04-08T22:03:14.861949Z 01O Start 56: config/ini [double INI: system value] -2026-04-08T22:03:14.861966Z 01O 56/205 Test #56: config/ini [double INI: system value] ......................................................... Passed 0.07 sec -2026-04-08T22:03:14.861974Z 01O Start 57: config/ini [double INI: user value] -2026-04-08T22:03:14.861977Z 01O 57/205 Test #57: config/ini [double INI: user value] ........................................................... Passed 0.07 sec -2026-04-08T22:03:14.861981Z 01O Start 58: config/ini [int INI: default value] -2026-04-08T22:03:14.862004Z 01O 58/205 Test #58: config/ini [int INI: default value] ........................................................... Passed 0.07 sec -2026-04-08T22:03:14.862018Z 01O Start 59: config/ini [int INI: system value] -2026-04-08T22:03:14.862023Z 01O 59/205 Test #59: config/ini [int INI: system value] ............................................................ Passed 0.07 sec -2026-04-08T22:03:14.862048Z 01O Start 60: config/ini [int INI: user value] -2026-04-08T22:03:14.862062Z 01O 60/205 Test #60: config/ini [int INI: user value] .............................................................. Passed 0.07 sec -2026-04-08T22:03:14.862067Z 01O Start 61: config/ini [map INI: default value] -2026-04-08T22:03:14.862081Z 01O 61/205 Test #61: config/ini [map INI: default value] ........................................................... Passed 0.07 sec -2026-04-08T22:03:14.862092Z 01O Start 62: config/ini [map INI: system value] -2026-04-08T22:03:15.362223Z 01O 62/205 Test #62: config/ini [map INI: system value] ............................................................ Passed 0.07 sec -2026-04-08T22:03:15.362243Z 01O Start 63: config/ini [map INI: user value] -2026-04-08T22:03:15.362250Z 01O 63/205 Test #63: config/ini [map INI: user value] .............................................................. Passed 0.07 sec -2026-04-08T22:03:15.362279Z 01O Start 64: config/ini [string INI: default value] -2026-04-08T22:03:15.362296Z 01O 64/205 Test #64: config/ini [string INI: default value] ........................................................ Passed 0.07 sec -2026-04-08T22:03:15.362302Z 01O Start 65: config/ini [string INI: system value] -2026-04-08T22:03:15.362339Z 01O 65/205 Test #65: config/ini [string INI: system value] ......................................................... Passed 0.07 sec -2026-04-08T22:03:15.362396Z 01O Start 66: config/ini [string INI: user value] -2026-04-08T22:03:15.362420Z 01O 66/205 Test #66: config/ini [string INI: user value] ........................................................... Passed 0.07 sec -2026-04-08T22:03:15.362423Z 01O Start 67: config/ini [INI: invalid user value] -2026-04-08T22:03:15.362430Z 01O 67/205 Test #67: config/ini [INI: invalid user value] .......................................................... Passed 0.07 sec -2026-04-08T22:03:15.362438Z 01O Start 68: config/ini [INI: invalid perdir value] -2026-04-08T22:03:15.362442Z 01O 68/205 Test #68: config/ini [INI: invalid perdir value] ........................................................ Passed 0.07 sec -2026-04-08T22:03:15.362446Z 01O Start 69: config/ini [env overrides system INI] -2026-04-08T22:03:15.863007Z 01O 69/205 Test #69: config/ini [env overrides system INI] ......................................................... Passed 0.07 sec -2026-04-08T22:03:15.863026Z 01O Start 70: config/ini [system INI reflected in all aliases] -2026-04-08T22:03:15.863035Z 01O 70/205 Test #70: config/ini [system INI reflected in all aliases] .............................................. Passed 0.07 sec -2026-04-08T22:03:15.863044Z 01O Start 71: config/ini [runtime INI update reflected in all aliases] -2026-04-08T22:03:15.863047Z 01O 71/205 Test #71: config/ini [runtime INI update reflected in all aliases] ...................................... Passed 0.07 sec -2026-04-08T22:03:15.863052Z 01O Start 72: config/ini [env followed by ini_restore] -2026-04-08T22:03:15.863058Z 01O 72/205 Test #72: config/ini [env followed by ini_restore] ...................................................... Passed 0.07 sec -2026-04-08T22:03:15.863062Z 01O Start 73: config/ini [perdir INI setting reflected in all aliases] -2026-04-08T22:03:15.863066Z 01O 73/205 Test #73: config/ini [perdir INI setting reflected in all aliases] ...................................... Passed 0.07 sec -2026-04-08T22:03:15.863076Z 01O Start 74: config/ini [invalid perdir INI setting ignored] -2026-04-08T22:03:15.863080Z 01O 74/205 Test #74: config/ini [invalid perdir INI setting ignored] ............................................... Passed 0.07 sec -2026-04-08T22:03:15.863084Z 01O Start 75: config/ini [change before request startup] -2026-04-08T22:03:15.863090Z 01O 75/205 Test #75: config/ini [change before request startup] .................................................... Passed 0.07 sec -2026-04-08T22:03:15.863095Z 01O Start 76: config/ini [setting perdir INI setting for multiple ZAI config users] -2026-04-08T22:03:15.863100Z 01O 76/205 Test #76: config/ini [setting perdir INI setting for multiple ZAI config users] ......................... Passed 0.07 sec -2026-04-08T22:03:15.863106Z 01O Start 77: config/ini [second consumer extension causes original_on_modify to be set] -2026-04-08T22:03:16.363794Z 01O 77/205 Test #77: config/ini [second consumer extension causes original_on_modify to be set] .................... Passed 0.07 sec -2026-04-08T22:03:16.363813Z 01O Start 78: json [encode] -2026-04-08T22:03:16.363821Z 01O 78/205 Test #78: json [encode] ................................................................................. Passed 0.07 sec -2026-04-08T22:03:16.363842Z 01O Start 79: json [decode] -2026-04-08T22:03:16.363855Z 01O 79/205 Test #79: json [decode] ................................................................................. Passed 0.07 sec -2026-04-08T22:03:16.363861Z 01O Start 80: hook/internal/static [continue] -2026-04-08T22:03:16.363888Z 01O 80/205 Test #80: hook/internal/static [continue] ............................................................... Passed 0.07 sec -2026-04-08T22:03:16.363893Z 01O Start 81: hook/internal/static [stop] -2026-04-08T22:03:16.363947Z 01O 81/205 Test #81: hook/internal/static [stop] ................................................................... Passed 0.07 sec -2026-04-08T22:03:16.363964Z 01O Start 82: hook/internal/static [multiple continue] -2026-04-08T22:03:16.363974Z 01O 82/205 Test #82: hook/internal/static [multiple continue] ...................................................... Passed 0.07 sec -2026-04-08T22:03:16.363980Z 01O Start 83: hook/internal/static [multiple stop] -2026-04-08T22:03:16.363994Z 01O 83/205 Test #83: hook/internal/static [multiple stop] .......................................................... Passed 0.07 sec -2026-04-08T22:03:16.364002Z 01O Start 84: hook/internal/request [continue] -2026-04-08T22:03:16.864428Z 01O 84/205 Test #84: hook/internal/request [continue] .............................................................. Passed 0.07 sec -2026-04-08T22:03:16.864437Z 01O Start 85: hook/internal/request [stop] -2026-04-08T22:03:16.864441Z 01O 85/205 Test #85: hook/internal/request [stop] .................................................................. Passed 0.07 sec -2026-04-08T22:03:16.864448Z 01O Start 86: hook/internal/request [multiple continue] -2026-04-08T22:03:16.864451Z 01O 86/205 Test #86: hook/internal/request [multiple continue] ..................................................... Passed 0.07 sec -2026-04-08T22:03:16.864455Z 01O Start 87: hook/internal/request [multiple stop] -2026-04-08T22:03:16.864460Z 01O 87/205 Test #87: hook/internal/request [multiple stop] ......................................................... Passed 0.07 sec -2026-04-08T22:03:16.864463Z 01O Start 88: hook/internal/request [continue with static] -2026-04-08T22:03:16.864467Z 01O 88/205 Test #88: hook/internal/request [continue with static] .................................................. Passed 0.07 sec -2026-04-08T22:03:16.864491Z 01O Start 89: hook/internal/request [stop with static] -2026-04-08T22:03:16.864505Z 01O 89/205 Test #89: hook/internal/request [stop with static] ...................................................... Passed 0.07 sec -2026-04-08T22:03:16.864511Z 01O Start 90: hook/internal/request [nonexistent removal] -2026-04-08T22:03:16.864540Z 01O 90/205 Test #90: hook/internal/request [nonexistent removal] ................................................... Passed 0.07 sec -2026-04-08T22:03:16.864554Z 01O Start 91: hook/internal/request [resolved removal] -2026-04-08T22:03:17.364829Z 01O 91/205 Test #91: hook/internal/request [resolved removal] ...................................................... Passed 0.07 sec -2026-04-08T22:03:17.364857Z 01O Start 92: hook/internal/request [unresolved removal] -2026-04-08T22:03:17.364862Z 01O 92/205 Test #92: hook/internal/request [unresolved removal] .................................................... Passed 0.07 sec -2026-04-08T22:03:17.364868Z 01O Start 93: hook/internal/request [hook add during begin] -2026-04-08T22:03:17.364882Z 01O 93/205 Test #93: hook/internal/request [hook add during begin] ................................................. Passed 0.07 sec -2026-04-08T22:03:17.364888Z 01O Start 94: interceptor [empty user function intercepting] -2026-04-08T22:03:17.364914Z 01O 94/205 Test #94: interceptor [empty user function intercepting] ................................................ Passed 0.07 sec -2026-04-08T22:03:17.364933Z 01O Start 95: interceptor [function intercepting after initial call] -2026-04-08T22:03:17.364942Z 01O 95/205 Test #95: interceptor [function intercepting after initial call] ........................................ Passed 0.07 sec -2026-04-08T22:03:17.364950Z 01O Start 96: interceptor [user function intercepting returns value] -2026-04-08T22:03:17.364953Z 01O 96/205 Test #96: interceptor [user function intercepting returns value] ........................................ Passed 0.07 sec -2026-04-08T22:03:17.365014Z 01O Start 97: interceptor [user function throws] -2026-04-08T22:03:17.365024Z 01O 97/205 Test #97: interceptor [user function throws] ............................................................ Passed 0.07 sec -2026-04-08T22:03:17.365028Z 01O Start 98: interceptor [user function with caught exception] -2026-04-08T22:03:17.365034Z 01O 98/205 Test #98: interceptor [user function with caught exception] ............................................. Passed 0.07 sec -2026-04-08T22:03:17.365042Z 01O Start 99: interceptor [user function throws despite catch blocks] -2026-04-08T22:03:17.865535Z 01O 99/205 Test #99: interceptor [user function throws despite catch blocks] ....................................... Passed 0.09 sec -2026-04-08T22:03:17.865546Z 01O Start 100: interceptor [user function throws despite finally blocks] -2026-04-08T22:03:17.865551Z 01O 100/205 Test #100: interceptor [user function throws despite finally blocks] ..................................... Passed 0.07 sec -2026-04-08T22:03:17.865557Z 01O Start 101: interceptor [user function with finally-discarded exception] -2026-04-08T22:03:17.865560Z 01O 101/205 Test #101: interceptor [user function with finally-discarded exception] .................................. Passed 0.07 sec -2026-04-08T22:03:17.865564Z 01O Start 102: interceptor [direct internal function intercepting] -2026-04-08T22:03:17.865570Z 01O 102/205 Test #102: interceptor [direct internal function intercepting] ........................................... Passed 0.07 sec -2026-04-08T22:03:17.865573Z 01O Start 103: interceptor [user calls internal function intercepting] -2026-04-08T22:03:17.865577Z 01O 103/205 Test #103: interceptor [user calls internal function intercepting] ....................................... Passed 0.07 sec -2026-04-08T22:03:17.865598Z 01O Start 104: interceptor [internal function throws] -2026-04-08T22:03:17.865612Z 01O 104/205 Test #104: interceptor [internal function throws] ........................................................ Passed 0.07 sec -2026-04-08T22:03:17.865618Z 01O Start 105: interceptor [generator function intercepting from internal call] -2026-04-08T22:03:18.365873Z 01O 105/205 Test #105: interceptor [generator function intercepting from internal call] .............................. Passed 0.07 sec -2026-04-08T22:03:18.365891Z 01O Start 106: interceptor [generator function intercepting from userland call] -2026-04-08T22:03:18.365899Z 01O 106/205 Test #106: interceptor [generator function intercepting from userland call] .............................. Passed 0.07 sec -2026-04-08T22:03:18.365921Z 01O Start 107: interceptor [generator yield intercepting from userland call] -2026-04-08T22:03:18.365936Z 01O 107/205 Test #107: interceptor [generator yield intercepting from userland call] ................................. Passed 0.07 sec -2026-04-08T22:03:18.365942Z 01O Start 108: interceptor [generator sending intercepting from userland call] -2026-04-08T22:03:18.365968Z 01O 108/205 Test #108: interceptor [generator sending intercepting from userland call] ............................... Passed 0.07 sec -2026-04-08T22:03:18.365973Z 01O Start 109: interceptor [generator yield intercepting of yield from array] -2026-04-08T22:03:18.365979Z 01O 109/205 Test #109: interceptor [generator yield intercepting of yield from array] ................................ Passed 0.07 sec -2026-04-08T22:03:18.365988Z 01O Start 110: interceptor [generator yield intercepting of yield from array with thrown in exception] -2026-04-08T22:03:18.365991Z 01O 110/205 Test #110: interceptor [generator yield intercepting of yield from array with thrown in exception] ....... Passed 0.07 sec -2026-04-08T22:03:18.365996Z 01O Start 111: interceptor [generator yield intercepting of yield from iterator] -2026-04-08T22:03:18.366003Z 01O 111/205 Test #111: interceptor [generator yield intercepting of yield from iterator] ............................. Passed 0.07 sec -2026-04-08T22:03:18.366054Z 01O Start 112: interceptor [generator yield intercepting of yield from throwing iterator] -2026-04-08T22:03:18.366060Z 01O 112/205 Test #112: interceptor [generator yield intercepting of yield from throwing iterator] .................... Passed 0.07 sec -2026-04-08T22:03:18.366072Z 01O Start 113: interceptor [generator yield intercepting of simple yield from generator] -2026-04-08T22:03:18.866620Z 01O 113/205 Test #113: interceptor [generator yield intercepting of simple yield from generator] ..................... Passed 0.07 sec -2026-04-08T22:03:18.866631Z 01O Start 114: interceptor [generator yield intercepting of yielded from generator] -2026-04-08T22:03:18.866636Z 01O 114/205 Test #114: interceptor [generator yield intercepting of yielded from generator] .......................... Passed 0.08 sec -2026-04-08T22:03:18.866645Z 01O Start 115: interceptor [generator yield intercepting of yield from multi-generator] -2026-04-08T22:03:18.866649Z 01O 115/205 Test #115: interceptor [generator yield intercepting of yield from multi-generator] ...................... Passed 0.07 sec -2026-04-08T22:03:18.866654Z 01O Start 116: interceptor [generator yield intercepting of nested yield from generator] -2026-04-08T22:03:18.866661Z 01O 116/205 Test #116: interceptor [generator yield intercepting of nested yield from generator] ..................... Passed 0.08 sec -2026-04-08T22:03:18.866665Z 01O Start 117: interceptor [unused generator function intercepting] -2026-04-08T22:03:18.866670Z 01O 117/205 Test #117: interceptor [unused generator function intercepting] .......................................... Passed 0.07 sec -2026-04-08T22:03:18.866676Z 01O Start 118: interceptor [throwing generator intercepting] -2026-04-08T22:03:18.866680Z 01O 118/205 Test #118: interceptor [throwing generator intercepting] ................................................. Passed 0.07 sec -2026-04-08T22:03:18.866685Z 01O Start 119: interceptor [generator with finally intercepting] -2026-04-08T22:03:19.366960Z 01O 119/205 Test #119: interceptor [generator with finally intercepting] ............................................. Passed 0.07 sec -2026-04-08T22:03:19.366971Z 01O Start 120: interceptor [generator with finally and return intercepting] -2026-04-08T22:03:19.366976Z 01O 120/205 Test #120: interceptor [generator with finally and return intercepting] .................................. Passed 0.07 sec -2026-04-08T22:03:19.366992Z 01O Start 121: interceptor [generator with finally and return value intercepting] -2026-04-08T22:03:19.367007Z 01O 121/205 Test #121: interceptor [generator with finally and return value intercepting] ............................ Passed 0.07 sec -2026-04-08T22:03:19.367012Z 01O Start 122: interceptor [bailout in intercepted functions runs end handlers] -2026-04-08T22:03:19.367019Z 01O 122/205 Test #122: interceptor [bailout in intercepted functions runs end handlers] ..............................***Failed 0.33 sec -2026-04-08T22:03:19.367021Z 01O -2026-04-08T22:03:19.367027Z 01O Fatal error: Class Foo contains 4 abstract methods and must therefore be declared abstract or implement the remaining methods (ArrayAccess::offsetExists, ArrayAccess::offsetGet, ArrayAccess::offsetSet, ...) in /go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_zai/interceptor/tests/stubs/stub.php on line 70 -2026-04-08T22:03:19.367034Z 01O ================================================================= -2026-04-08T22:03:19.367037Z 01O ==22972==ERROR: AddressSanitizer: stack-use-after-return on address 0x74560d23fa58 at pc 0x7456159c75dd bp 0x7ffdd2a8d800 sp 0x7ffdd2a8d7f8 -2026-04-08T22:03:19.367041Z 01O READ of size 8 at 0x74560d23fa58 thread T0 -2026-04-08T22:03:19.367047Z 01O #0 0x7456159c75dc in zend_observer_fcall_end_all /usr/local/src/php/Zend/zend_observer.c:232:11 -2026-04-08T22:03:19.367054Z 01O #1 0x647a261b9640 in zai_reset_observed_frame_post_bailout /go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/sandbox/call.c:96:9 -2026-04-08T22:03:19.367093Z 01O #2 0x647a261b9717 in zai_sandbox_call /go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/sandbox/call.c:124:9 -2026-04-08T22:03:19.367101Z 01O #3 0x647a25fcaf10 in zai_test_call_global_with_0_params(zai_str_s, _zval_struct*) /go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/sandbox/tests/zai_tests_common.hpp:29:19 -2026-04-08T22:03:19.367109Z 01O #4 0x647a25fc927b in (anonymous namespace)::C_A_T_C_H_T_E_S_T_56::test() /go/src/github.com/DataDog/apm-reliability/dd-trace-php/zend_abstract_interface/interceptor/tests/interceptor.cc:479:1 -2026-04-08T22:03:19.367112Z 01O #5 0x647a25fd9149 in Catch::TestInvokerAsMethod<(anonymous namespace)::C_A_T_C_H_T_E_S_T_56>::invoke() const /opt/catch2/include/catch2/catch.hpp:969:9 -2026-04-08T22:03:19.367117Z 01O #6 0x647a26024960 in Catch::TestCase::invoke() const /opt/catch2/include/catch2/catch.hpp:14169:15 -2026-04-08T22:03:19.367123Z 01O #7 0x647a260247e0 in Catch::RunContext::invokeActiveTestCase() /opt/catch2/include/catch2/catch.hpp:13025:27 -2026-04-08T22:03:19.367129Z 01O #8 0x647a26020c81 in Catch::RunContext::runCurrentTest(std::__cxx11::basic_string, std::allocator>&, std::__cxx11::basic_string, std::allocator>&) /opt/catch2/include/catch2/catch.hpp:12998:17 -2026-04-08T22:03:19.367135Z 01O #9 0x647a2601f258 in Catch::RunContext::runTest(Catch::TestCase const&) /opt/catch2/include/catch2/catch.hpp:12759:13 -2026-04-08T22:03:19.367141Z 01O #10 0x647a2602a32f in Catch::(anonymous namespace)::TestGroup::execute() /opt/catch2/include/catch2/catch.hpp:13352:45 -2026-04-08T22:03:19.367144Z 01O #11 0x647a26028c4f in Catch::Session::runInternal() /opt/catch2/include/catch2/catch.hpp:13562:39 -2026-04-08T22:03:19.367147Z 01O #12 0x647a2602865b in Catch::Session::run() /opt/catch2/include/catch2/catch.hpp:13518:24 -2026-04-08T22:03:19.367153Z 01O #13 0x647a260980f1 in int Catch::Session::run(int, char const* const*) /opt/catch2/include/catch2/catch.hpp:13236:30 -2026-04-08T22:03:19.367155Z 01O #14 0x647a26058bfc in main /opt/catch2/include/catch2/catch.hpp:17543:29 -2026-04-08T22:03:19.367175Z 01O #15 0x74560fda3249 in __libc_start_call_main csu/../sysdeps/nptl/libc_start_call_main.h:58:16 -2026-04-08T22:03:19.367183Z 01O #16 0x74560fda3304 in __libc_start_main csu/../csu/libc-start.c:360:3 -2026-04-08T22:03:19.367190Z 01O #17 0x647a25f6b6d0 in _start (/go/src/github.com/DataDog/apm-reliability/dd-trace-php/tmp/build_zai/interceptor/tests/interceptor+0xed6d0) (BuildId: d04b0b7c09207b92cc528a833b0b871bd4a1fdbb) -2026-04-08T22:03:19.367197Z 01O -2026-04-08T22:03:19.367200Z 01O Address 0x74560d23fa58 is located in stack of thread T0 at offset 88 in frame -2026-04-08T22:03:19.367205Z 01O #0 0x74561561199f in zend_call_function /usr/local/src/php/Zend/zend_execute_API.c:664 -2026-04-08T22:03:19.367209Z 01O -2026-04-08T22:03:19.367212Z 01O This frame has 6 object(s): -2026-04-08T22:03:19.367216Z 01O [32, 40) 'call' (line 666) -2026-04-08T22:03:19.367226Z 01O [64, 144) 'dummy_execute_data' (line 666) <== Memory access at offset 88 is inside this variable -2026-04-08T22:03:19.367229Z 01O [176, 208) 'fci_cache_local' (line 667) -2026-04-08T22:03:19.367232Z 01O [240, 248) 'error' (line 709) -2026-04-08T22:03:19.367240Z 01O [272, 276) 'arg_num' (line 808) -2026-04-08T22:03:19.367243Z 01O [288, 304) 'cache_slot' (line 814) -2026-04-08T22:03:19.367249Z 01O HINT: this may be a false positive if your program uses some custom stack unwind mechanism, swapcontext or vfork -2026-04-08T22:03:19.367256Z 01O (longjmp and C++ exceptions *are* supported) -2026-04-08T22:03:19.367260Z 01O SUMMARY: AddressSanitizer: stack-use-after-return /usr/local/src/php/Zend/zend_observer.c:232:11 in zend_observer_fcall_end_all -2026-04-08T22:03:19.367295Z 01O Shadow bytes around the buggy address: -2026-04-08T22:03:19.367301Z 01O 0x74560d23f780: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 -2026-04-08T22:03:19.367327Z 01O 0x74560d23f800: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 -2026-04-08T22:03:19.367336Z 01O 0x74560d23f880: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 -2026-04-08T22:03:19.367341Z 01O 0x74560d23f900: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 -2026-04-08T22:03:19.367356Z 01O 0x74560d23f980: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 -2026-04-08T22:03:19.367368Z 01O =>0x74560d23fa00: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5[f5]f5 f5 f5 f5 -2026-04-08T22:03:19.367372Z 01O 0x74560d23fa80: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 -2026-04-08T22:03:19.367387Z 01O 0x74560d23fb00: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 -2026-04-08T22:03:19.367397Z 01O 0x74560d23fb80: f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 f5 -2026-04-08T22:03:19.367402Z 01O 0x74560d23fc00: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 -2026-04-08T22:03:19.367422Z 01O 0x74560d23fc80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 -2026-04-08T22:03:19.367432Z 01O Shadow byte legend (one shadow byte represents 8 application bytes): -2026-04-08T22:03:19.367436Z 01O Addressable: 00 -2026-04-08T22:03:19.367448Z 01O Partially addressable: 01 02 03 04 05 06 07 -2026-04-08T22:03:19.367456Z 01O Heap left redzone: fa -2026-04-08T22:03:19.367460Z 01O Freed heap region: fd -2026-04-08T22:03:19.367476Z 01O Stack left redzone: f1 -2026-04-08T22:03:19.367484Z 01O Stack mid redzone: f2 -2026-04-08T22:03:19.367489Z 01O Stack right redzone: f3 -2026-04-08T22:03:19.367501Z 01O Stack after return: f5 -2026-04-08T22:03:19.367510Z 01O Stack use after scope: f8 -2026-04-08T22:03:19.367515Z 01O Global redzone: f9 -2026-04-08T22:03:19.367526Z 01O Global init order: f6 -2026-04-08T22:03:19.367534Z 01O Poisoned by user: f7 -2026-04-08T22:03:19.367538Z 01O Container overflow: fc -2026-04-08T22:03:19.367560Z 01O Array cookie: ac -2026-04-08T22:03:19.367564Z 01O Intra object redzone: bb -2026-04-08T22:03:19.367568Z 01O ASan internal: fe -2026-04-08T22:03:19.367574Z 01O Left alloca redzone: ca -2026-04-08T22:03:19.367577Z 01O Right alloca redzone: cb -2026-04-08T22:03:19.367581Z 01O ==22972==ABORTING -2026-04-08T22:03:19.367586Z 01O -2026-04-08T22:03:19.367589Z 01O Start 123: interceptor [runtime top-level resolving] -2026-04-08T22:03:19.867150Z 01O 123/205 Test #123: interceptor [runtime top-level resolving] ..................................................... Passed 0.07 sec -2026-04-08T22:03:19.867167Z 01O Start 124: interceptor [runtime eval resolving] -2026-04-08T22:03:19.867175Z 01O 124/205 Test #124: interceptor [runtime eval resolving] .......................................................... Passed 0.07 sec -2026-04-08T22:03:19.867198Z 01O Start 125: interceptor [runtime function resolving] -2026-04-08T22:03:19.867212Z 01O 125/205 Test #125: interceptor [runtime function resolving] ...................................................... Passed 0.07 sec -2026-04-08T22:03:19.867218Z 01O Start 126: interceptor [runtime simple class resolving] -2026-04-08T22:03:19.867240Z 01O 126/205 Test #126: interceptor [runtime simple class resolving] .................................................. Passed 0.07 sec -2026-04-08T22:03:19.867253Z 01O Start 127: interceptor [runtime inherited class resolving] -2026-04-08T22:03:19.867260Z 01O 127/205 Test #127: interceptor [runtime inherited class resolving] ............................................... Passed 0.08 sec -2026-04-08T22:03:19.867273Z 01O Start 128: interceptor [runtime inherited delayed class resolving] -2026-04-08T22:03:19.867283Z 01O 128/205 Test #128: interceptor [runtime inherited delayed class resolving] ....................................... Passed 0.08 sec -2026-04-08T22:03:19.867288Z 01O Start 129: interceptor [runtime trait using class resolving] -2026-04-08T22:03:20.367809Z 01O 129/205 Test #129: interceptor [runtime trait using class resolving] ............................................. Passed 0.08 sec -2026-04-08T22:03:20.367831Z 01O Start 130: interceptor [runtime class_alias resolving] -2026-04-08T22:03:20.367839Z 01O 130/205 Test #130: interceptor [runtime class_alias resolving] ................................................... Passed 0.07 sec -2026-04-08T22:03:20.367848Z 01O Start 131: headers [reading defined header value] -2026-04-08T22:03:20.367851Z 01O 131/205 Test #131: headers [reading defined header value] ........................................................ Passed 0.07 sec -2026-04-08T22:03:20.367856Z 01O Start 132: headers [reading defined header value with autoglobals jit off] -2026-04-08T22:03:20.367862Z 01O 132/205 Test #132: headers [reading defined header value with autoglobals jit off] ............................... Passed 0.07 sec -2026-04-08T22:03:20.367865Z 01O Start 133: headers [reading undefined header value] -2026-04-08T22:03:20.367869Z 01O 133/205 Test #133: headers [reading undefined header value] ...................................................... Passed 0.07 sec -2026-04-08T22:03:20.367877Z 01O Start 134: headers [erroneous read_header input] -2026-04-08T22:03:20.367882Z 01O 134/205 Test #134: headers [erroneous read_header input] ......................................................... Passed 0.08 sec -2026-04-08T22:03:20.367886Z 01O Start 135: headers [get SAPI header (RINIT): defined header] -2026-04-08T22:03:20.367893Z 01O 135/205 Test #135: headers [get SAPI header (RINIT): defined header] ............................................. Passed 0.08 sec -2026-04-08T22:03:20.367896Z 01O Start 136: sandbox/error [fatal errors] -2026-04-08T22:03:20.868818Z 01O 136/205 Test #136: sandbox/error [fatal errors] .................................................................. Passed 0.08 sec -2026-04-08T22:03:20.868835Z 01O Start 137: sandbox/error [fatal errors restore to existing error] -2026-04-08T22:03:20.868841Z 01O 137/205 Test #137: sandbox/error [fatal errors restore to existing error] ........................................ Passed 0.08 sec -2026-04-08T22:03:20.868864Z 01O Start 138: sandbox/error [non-fatal errors] -2026-04-08T22:03:20.868878Z 01O 138/205 Test #138: sandbox/error [non-fatal errors] .............................................................. Passed 0.07 sec -2026-04-08T22:03:20.868884Z 01O Start 139: sandbox/error [non-fatal errors restore to existing error] -2026-04-08T22:03:20.868891Z 01O 139/205 Test #139: sandbox/error [non-fatal errors restore to existing error] .................................... Passed 0.07 sec -2026-04-08T22:03:20.868894Z 01O Start 140: sandbox/error [fatal-error (userland)] -2026-04-08T22:03:20.868897Z 01O 140/205 Test #140: sandbox/error [fatal-error (userland)] ........................................................ Passed 0.07 sec -2026-04-08T22:03:20.868904Z 01O Start 141: sandbox/error [non-fatal error (userland)] -2026-04-08T22:03:20.868906Z 01O 141/205 Test #141: sandbox/error [non-fatal error (userland)] .................................................... Passed 0.07 sec -2026-04-08T22:03:20.868910Z 01O Start 142: sandbox/error [throwable non-fatal errors (PHP 7+)] -2026-04-08T22:03:20.868916Z 01O 142/205 Test #142: sandbox/error [throwable non-fatal errors (PHP 7+)] ........................................... Passed 0.07 sec -2026-04-08T22:03:20.868920Z 01O Start 143: sandbox/error [throwable non-fatal errors restore to existing error (PHP 7+)] -2026-04-08T22:03:21.369599Z 01O 143/205 Test #143: sandbox/error [throwable non-fatal errors restore to existing error (PHP 7+)] ................. Passed 0.07 sec -2026-04-08T22:03:21.369609Z 01O Start 144: sandbox/exception [state: throw exception] -2026-04-08T22:03:21.369616Z 01O 144/205 Test #144: sandbox/exception [state: throw exception] .................................................... Passed 0.07 sec -2026-04-08T22:03:21.369664Z 01O Start 145: sandbox/exception [state: existing unhandled exception] -2026-04-08T22:03:21.369667Z 01O 145/205 Test #145: sandbox/exception [state: existing unhandled exception] ....................................... Passed 0.07 sec -2026-04-08T22:03:21.369671Z 01O Start 146: sandbox/exception [state: throw exception (userland)] -2026-04-08T22:03:21.369697Z 01O 146/205 Test #146: sandbox/exception [state: throw exception (userland)] ......................................... Passed 0.07 sec -2026-04-08T22:03:21.369713Z 01O Start 147: sandbox/exception [zend_throw_exception_hook called once] -2026-04-08T22:03:21.369720Z 01O 147/205 Test #147: sandbox/exception [zend_throw_exception_hook called once] ..................................... Passed 0.07 sec -2026-04-08T22:03:21.369742Z 01O Start 148: sandbox/exception [throw exception] -2026-04-08T22:03:21.369755Z 01O 148/205 Test #148: sandbox/exception [throw exception] ........................................................... Passed 0.08 sec -2026-04-08T22:03:21.369763Z 01O Start 149: sandbox/exception [existing unhandled exception] -2026-04-08T22:03:21.369778Z 01O 149/205 Test #149: sandbox/exception [existing unhandled exception] .............................................. Passed 0.07 sec -2026-04-08T22:03:21.369790Z 01O Start 150: sandbox/exception [throw exception (userland)] -2026-04-08T22:03:21.869741Z 01O 150/205 Test #150: sandbox/exception [throw exception (userland)] ................................................ Passed 0.07 sec -2026-04-08T22:03:21.869756Z 01O Start 151: sandbox [sandbox: exception & error] -2026-04-08T22:03:21.869763Z 01O 151/205 Test #151: sandbox [sandbox: exception & error] .......................................................... Passed 0.07 sec -2026-04-08T22:03:21.869771Z 01O Start 152: sandbox [sandbox: existing exception & existing error] -2026-04-08T22:03:21.869777Z 01O 152/205 Test #152: sandbox [sandbox: existing exception & existing error] ........................................ Passed 0.07 sec -2026-04-08T22:03:21.869782Z 01O Start 153: sandbox/bailout [no timeout] -2026-04-08T22:03:21.869788Z 01O 153/205 Test #153: sandbox/bailout [no timeout] .................................................................. Passed 0.07 sec -2026-04-08T22:03:21.869802Z 01O Start 154: sandbox/bailout [timeout] -2026-04-08T22:03:22.870805Z 01O 154/205 Test #154: sandbox/bailout [timeout] ..................................................................... Passed 1.08 sec -2026-04-08T22:03:22.870815Z 01O Start 155: uri_normalization [default replacement test: trivial_path_unmodified] -2026-04-08T22:03:22.870820Z 01O 155/205 Test #155: uri_normalization [default replacement test: trivial_path_unmodified] ......................... Passed 0.07 sec -2026-04-08T22:03:22.870826Z 01O Start 156: uri_normalization [default replacement test: empty] -2026-04-08T22:03:22.870831Z 01O 156/205 Test #156: uri_normalization [default replacement test: empty] ........................................... Passed 0.08 sec -2026-04-08T22:03:22.870835Z 01O Start 157: uri_normalization [default replacement test: root] -2026-04-08T22:03:23.371535Z 01O 157/205 Test #157: uri_normalization [default replacement test: root] ............................................ Passed 0.08 sec -2026-04-08T22:03:23.371546Z 01O Start 158: uri_normalization [default replacement test: slash_added] -2026-04-08T22:03:23.371550Z 01O 158/205 Test #158: uri_normalization [default replacement test: slash_added] ..................................... Passed 0.08 sec -2026-04-08T22:03:23.371559Z 01O Start 159: uri_normalization [default replacement test: only_digits] -2026-04-08T22:03:23.371562Z 01O 159/205 Test #159: uri_normalization [default replacement test: only_digits] ..................................... Passed 0.08 sec -2026-04-08T22:03:23.371619Z 01O Start 160: uri_normalization [default replacement test: only_digits_with_trailing_slash] -2026-04-08T22:03:23.371628Z 01O 160/205 Test #160: uri_normalization [default replacement test: only_digits_with_trailing_slash] ................. Passed 0.08 sec -2026-04-08T22:03:23.371648Z 01O Start 161: uri_normalization [default replacement test: query_string_removal] -2026-04-08T22:03:23.371656Z 01O 161/205 Test #161: uri_normalization [default replacement test: query_string_removal] ............................ Passed 0.07 sec -2026-04-08T22:03:23.371661Z 01O Start 162: uri_normalization [default replacement test: starts_with_digits] -2026-04-08T22:03:23.371668Z 01O 162/205 Test #162: uri_normalization [default replacement test: starts_with_digits] .............................. Passed 0.07 sec -2026-04-08T22:03:23.371671Z 01O Start 163: uri_normalization [default replacement test: ends_with_digits] -2026-04-08T22:03:23.871724Z 01O 163/205 Test #163: uri_normalization [default replacement test: ends_with_digits] ................................ Passed 0.07 sec -2026-04-08T22:03:23.871733Z 01O Start 164: uri_normalization [default replacement test: has_digits] -2026-04-08T22:03:23.871741Z 01O 164/205 Test #164: uri_normalization [default replacement test: has_digits] ...................................... Passed 0.08 sec -2026-04-08T22:03:23.871749Z 01O Start 165: uri_normalization [default replacement test: only_hex] -2026-04-08T22:03:23.871753Z 01O 165/205 Test #165: uri_normalization [default replacement test: only_hex] ........................................ Passed 0.07 sec -2026-04-08T22:03:23.871758Z 01O Start 166: uri_normalization [default replacement test: starts_with_hex] -2026-04-08T22:03:23.871765Z 01O 166/205 Test #166: uri_normalization [default replacement test: starts_with_hex] ................................. Passed 0.08 sec -2026-04-08T22:03:23.871776Z 01O Start 167: uri_normalization [default replacement test: ends_with_hex] -2026-04-08T22:03:23.871782Z 01O 167/205 Test #167: uri_normalization [default replacement test: ends_with_hex] ................................... Passed 0.07 sec -2026-04-08T22:03:23.871800Z 01O Start 168: uri_normalization [default replacement test: has_hex] -2026-04-08T22:03:23.871812Z 01O 168/205 Test #168: uri_normalization [default replacement test: has_hex] ......................................... Passed 0.07 sec -2026-04-08T22:03:23.871818Z 01O Start 169: uri_normalization [default replacement test: only_uuid] -2026-04-08T22:03:23.871846Z 01O 169/205 Test #169: uri_normalization [default replacement test: only_uuid] ....................................... Passed 0.08 sec -2026-04-08T22:03:23.871850Z 01O Start 170: uri_normalization [default replacement test: starts_with_uuid] -2026-04-08T22:03:24.372397Z 01O 170/205 Test #170: uri_normalization [default replacement test: starts_with_uuid] ................................ Passed 0.07 sec -2026-04-08T22:03:24.372417Z 01O Start 171: uri_normalization [default replacement test: ends_with_uuid] -2026-04-08T22:03:24.372423Z 01O 171/205 Test #171: uri_normalization [default replacement test: ends_with_uuid] .................................. Passed 0.07 sec -2026-04-08T22:03:24.372429Z 01O Start 172: uri_normalization [default replacement test: has_uuid] -2026-04-08T22:03:24.372432Z 01O 172/205 Test #172: uri_normalization [default replacement test: has_uuid] ........................................ Passed 0.07 sec -2026-04-08T22:03:24.372436Z 01O Start 173: uri_normalization [default replacement test: only_uuid_no_dash] -2026-04-08T22:03:24.372442Z 01O 173/205 Test #173: uri_normalization [default replacement test: only_uuid_no_dash] ............................... Passed 0.07 sec -2026-04-08T22:03:24.372445Z 01O Start 174: uri_normalization [default replacement test: starts_with_uuid_no_dash] -2026-04-08T22:03:24.372449Z 01O 174/205 Test #174: uri_normalization [default replacement test: starts_with_uuid_no_dash] ........................ Passed 0.07 sec -2026-04-08T22:03:24.372498Z 01O Start 175: uri_normalization [default replacement test: ends_with_uuid_no_dash] -2026-04-08T22:03:24.372501Z 01O 175/205 Test #175: uri_normalization [default replacement test: ends_with_uuid_no_dash] .......................... Passed 0.07 sec -2026-04-08T22:03:24.372508Z 01O Start 176: uri_normalization [default replacement test: has_uuid_no_dash] -2026-04-08T22:03:24.372515Z 01O 176/205 Test #176: uri_normalization [default replacement test: has_uuid_no_dash] ................................ Passed 0.07 sec -2026-04-08T22:03:24.372531Z 01O Start 177: uri_normalization [default replacement test: multiple_patterns] -2026-04-08T22:03:24.872891Z 01O 177/205 Test #177: uri_normalization [default replacement test: multiple_patterns] ............................... Passed 0.10 sec -2026-04-08T22:03:24.872910Z 01O Start 178: uri_normalization [default replacement test: hex_case_insensitive] -2026-04-08T22:03:24.872919Z 01O 178/205 Test #178: uri_normalization [default replacement test: hex_case_insensitive] ............................ Passed 0.07 sec -2026-04-08T22:03:24.872937Z 01O Start 179: uri_normalization [default replacement test: uuid_case_insensitive] -2026-04-08T22:03:24.872945Z 01O 179/205 Test #179: uri_normalization [default replacement test: uuid_case_insensitive] ........................... Passed 0.07 sec -2026-04-08T22:03:24.872951Z 01O Start 180: uri_normalization [fragment regex: additive to default fragment regexes] -2026-04-08T22:03:24.872958Z 01O 180/205 Test #180: uri_normalization [fragment regex: additive to default fragment regexes] ...................... Passed 0.07 sec -2026-04-08T22:03:24.872963Z 01O Start 181: uri_normalization [fragment regex: leading and trailing slashes and whitespace are ignored] -2026-04-08T22:03:24.872968Z 01O 181/205 Test #181: uri_normalization [fragment regex: leading and trailing slashes and whitespace are ignored] ... Passed 0.07 sec -2026-04-08T22:03:24.872975Z 01O Start 182: uri_normalization [fragment regex: invalid regex fragments are ignored] -2026-04-08T22:03:24.872980Z 01O 182/205 Test #182: uri_normalization [fragment regex: invalid regex fragments are ignored] ....................... Passed 0.07 sec -2026-04-08T22:03:24.872985Z 01O Start 183: uri_normalization [fragment regex: partial match with trivial PCRE syntax usage] -2026-04-08T22:03:24.872992Z 01O 183/205 Test #183: uri_normalization [fragment regex: partial match with trivial PCRE syntax usage] .............. Passed 0.07 sec -2026-04-08T22:03:24.872996Z 01O Start 184: uri_normalization [pattern mapping: normalizing of single fragment] -2026-04-08T22:03:25.373229Z 01O 184/205 Test #184: uri_normalization [pattern mapping: normalizing of single fragment] ........................... Passed 0.07 sec -2026-04-08T22:03:25.373247Z 01O Start 185: uri_normalization [pattern mapping: pattern may be applied multiple times] -2026-04-08T22:03:25.373263Z 01O 185/205 Test #185: uri_normalization [pattern mapping: pattern may be applied multiple times] .................... Passed 0.07 sec -2026-04-08T22:03:25.373270Z 01O Start 186: uri_normalization [pattern mapping: partial matching] -2026-04-08T22:03:25.373274Z 01O 186/205 Test #186: uri_normalization [pattern mapping: partial matching] ......................................... Passed 0.07 sec -2026-04-08T22:03:25.373278Z 01O Start 187: uri_normalization [pattern mapping: matching is case sensititve] -2026-04-08T22:03:25.373285Z 01O 187/205 Test #187: uri_normalization [pattern mapping: matching is case sensititve] .............................. Passed 0.07 sec -2026-04-08T22:03:25.373291Z 01O Start 188: uri_normalization [pattern mapping & fragment regexes: working with http URLs] -2026-04-08T22:03:25.373298Z 01O 188/205 Test #188: uri_normalization [pattern mapping & fragment regexes: working with http URLs] ................ Passed 0.07 sec -2026-04-08T22:03:25.373363Z 01O Start 189: uri_normalization [pattern mapping & fragment regexes: working with https URLs] -2026-04-08T22:03:25.373374Z 01O 189/205 Test #189: uri_normalization [pattern mapping & fragment regexes: working with https URLs] ............... Passed 0.07 sec -2026-04-08T22:03:25.373383Z 01O Start 190: uri_normalization [pattern mapping & fragment regexes: working with full URLs] -2026-04-08T22:03:25.373391Z 01O 190/205 Test #190: uri_normalization [pattern mapping & fragment regexes: working with full URLs] ................ Passed 0.07 sec -2026-04-08T22:03:25.373396Z 01O Start 191: query_string [block everything: simple] -2026-04-08T22:03:25.873754Z 01O 191/205 Test #191: query_string [block everything: simple] ....................................................... Passed 0.08 sec -2026-04-08T22:03:25.873772Z 01O Start 192: query_string [block everything: repeated values] -2026-04-08T22:03:25.873780Z 01O 192/205 Test #192: query_string [block everything: repeated values] .............................................. Passed 0.07 sec -2026-04-08T22:03:25.873805Z 01O Start 193: query_string [allow everything: simple] -2026-04-08T22:03:25.873819Z 01O 193/205 Test #193: query_string [allow everything: simple] ....................................................... Passed 0.07 sec -2026-04-08T22:03:25.873825Z 01O Start 194: query_string [allow everything: repeated values] -2026-04-08T22:03:25.873847Z 01O 194/205 Test #194: query_string [allow everything: repeated values] .............................................. Passed 0.07 sec -2026-04-08T22:03:25.873859Z 01O Start 195: query_string [whitelist some: one] -2026-04-08T22:03:25.873865Z 01O 195/205 Test #195: query_string [whitelist some: one] ............................................................ Passed 0.07 sec -2026-04-08T22:03:25.873877Z 01O Start 196: query_string [whitelist some: multiple] -2026-04-08T22:03:25.873887Z 01O 196/205 Test #196: query_string [whitelist some: multiple] ....................................................... Passed 0.07 sec -2026-04-08T22:03:25.873892Z 01O Start 197: query_string [whitelist some: repeated values] -2026-04-08T22:03:25.873907Z 01O 197/205 Test #197: query_string [whitelist some: repeated values] ................................................ Passed 0.07 sec -2026-04-08T22:03:25.873916Z 01O Start 198: query_string [obfuscate: simple] -2026-04-08T22:03:26.374541Z 01O 198/205 Test #198: query_string [obfuscate: simple] .............................................................. Passed 0.07 sec -2026-04-08T22:03:26.374552Z 01O Start 199: query_string [obfuscate: lowercase] -2026-04-08T22:03:26.374557Z 01O 199/205 Test #199: query_string [obfuscate: lowercase] ........................................................... Passed 0.08 sec -2026-04-08T22:03:26.374570Z 01O Start 200: query_string [obfuscate: everything] -2026-04-08T22:03:26.374573Z 01O 200/205 Test #200: query_string [obfuscate: everything] .......................................................... Passed 0.08 sec -2026-04-08T22:03:26.374578Z 01O Start 201: query_string [obfuscate: no obfuscation on whitelist] -2026-04-08T22:03:26.374584Z 01O 201/205 Test #201: query_string [obfuscate: no obfuscation on whitelist] ......................................... Passed 0.07 sec -2026-04-08T22:03:26.374590Z 01O Start 202: zai_string/strings [zai_str_eq empty string] -2026-04-08T22:03:26.374594Z 01O 202/205 Test #202: zai_string/strings [zai_str_eq empty string] .................................................. Passed 0.07 sec -2026-04-08T22:03:26.374611Z 01O Start 203: zai_string/strings [zai_str_eq non-empty string] -2026-04-08T22:03:26.374616Z 01O 203/205 Test #203: zai_string/strings [zai_str_eq non-empty string] .............................................. Passed 0.07 sec -2026-04-08T22:03:26.374675Z 01O Start 204: zai_string/strings [zai_string_concat3 empty first and second] -2026-04-08T22:03:26.374682Z 01O 204/205 Test #204: zai_string/strings [zai_string_concat3 empty first and second] ................................ Passed 0.07 sec -2026-04-08T22:03:26.374702Z 01O Start 205: zai_string/strings [zai_string_concat3 all full] -2026-04-08T22:03:26.875145Z 01O 205/205 Test #205: zai_string/strings [zai_string_concat3 all full] .............................................. Passed 0.07 sec -2026-04-08T22:03:26.875180Z 01O -2026-04-08T22:03:26.875188Z 01O 99% tests passed, 1 tests failed out of 205 -2026-04-08T22:03:26.875204Z 01O -2026-04-08T22:03:26.875216Z 01O Total Test time (real) = 15.92 sec -2026-04-08T22:03:26.875220Z 01O -2026-04-08T22:03:26.875242Z 01O The following tests FAILED: -2026-04-08T22:03:26.875255Z 01O 122 - interceptor [bailout in intercepted functions runs end handlers] (Failed) -2026-04-08T22:03:26.875260Z 01O Errors while running CTest -2026-04-08T22:03:26.875284Z 01O make: *** [Makefile:71: test] Error 8 -2026-04-08T22:03:26.875287Z 01O -2026-04-08T22:03:26.875362Z 00O section_end:1775685806:step_script -2026-04-08T22:03:26.875363Z 00O+section_start:1775685806:after_script[collapsed=false] -2026-04-08T22:03:26.875807Z 00O+Running after_script -2026-04-08T22:03:27.375997Z 01O Running after script... -2026-04-08T22:03:27.376008Z 01O $ mkdir -p tmp/artifacts -2026-04-08T22:03:27.376016Z 01O $ cp tmp/build*/Testing/Temporary/LastTest.log tmp/artifacts/LastTest.log -2026-04-08T22:03:27.376022Z 01O $ .gitlab/silent-upload-junit-to-datadog.sh "test.source.file:zend_abstract_interface" -2026-04-08T22:04:38.971467Z 01O * View detailed reports on Datadog (they can take a few minutes to become available) -2026-04-08T22:04:38.971499Z 01O * Commit report: -2026-04-08T22:04:38.971506Z 01O * https://app.datadoghq.com/ci/redirect/tests/https%3A%2F%2Fgitlab.ddbuild.io%2FDataDog%2Fapm-reliability%2Fdd-trace-php.git/-/gitlab-runner/-/levi%2Fclang-17-to-19/-/e340959bb2fb46996ed179b27eab9e273fffbacc?env=ci -2026-04-08T22:04:38.971530Z 01O * Test runs report: -2026-04-08T22:04:38.971546Z 01O * https://app.datadoghq.com/ci/test-runs?query=%20%40ci.job.url%3A%22https%3A%2F%2Fgitlab.ddbuild.io%2FDataDog%2Fapm-reliability%2Fdd-trace-php%2F-%2Fjobs%2F1579619499%22 -2026-04-08T22:04:38.971553Z 01O -2026-04-08T22:04:38.971597Z 00O section_end:1775685878:after_script -2026-04-08T22:04:38.971598Z 00O+section_start:1775685878:upload_artifacts_on_failure[collapsed=true] -2026-04-08T22:04:38.972720Z 00O+Uploading artifacts for failed job -2026-04-08T22:04:39.472271Z 01O Uploading artifacts... -2026-04-08T22:04:39.472283Z 01O tmp/artifacts: found 2 matching artifact files and directories -2026-04-08T22:04:39.472289Z 01O artifacts: found 3 matching artifact files and directories -2026-04-08T22:04:39.972845Z 01O Uploading artifacts as "archive" to coordinator... 201 Created id=1579619499 responseStatus=201 Created token=64_s81vcx -2026-04-08T22:04:39.972856Z 01O Uploading artifacts... -2026-04-08T22:04:39.972860Z 01O artifacts/*-results.xml: found 2 matching artifact files and directories -2026-04-08T22:04:40.473640Z 01O Uploading artifacts as "junit" to coordinator... 201 Created id=1579619499 responseStatus=201 Created token=64_s81vcx -2026-04-08T22:04:40.473647Z 01O -2026-04-08T22:04:40.473686Z 00O section_end:1775685880:upload_artifacts_on_failure -2026-04-08T22:04:40.473688Z 00O+section_start:1775685880:cleanup_file_variables[collapsed=true] -2026-04-08T22:04:40.474438Z 00O+Cleaning up project directory and file based variables -2026-04-08T22:04:40.973841Z 01O -2026-04-08T22:04:40.973880Z 00O section_end:1775685880:cleanup_file_variables -2026-04-08T22:04:40.973882Z 00O+ -2026-04-08T22:04:41.124829Z 00O ERROR: Job failed: command terminated with exit code 1 -2026-04-08T22:04:41.124843Z 00O  From f7dc60b3f6a3cf41a2ad7b626bebfaffceb6e482 Mon Sep 17 00:00:00 2001 From: Levi Morrison Date: Wed, 8 Apr 2026 17:08:06 -0600 Subject: [PATCH 30/30] ci: revert unintended change --- dockerfiles/ci/alpine/docker-compose.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfiles/ci/alpine/docker-compose.yml b/dockerfiles/ci/alpine/docker-compose.yml index 18c0ad47d60..525bb61fb44 100644 --- a/dockerfiles/ci/alpine/docker-compose.yml +++ b/dockerfiles/ci/alpine/docker-compose.yml @@ -17,5 +17,5 @@ services: context: ./php-8.0 args: phpVersion: 8.0 - phpTarGzUrl: https://www.php.net/distributions/php-8.0.30.tar.gz - phpSha256Hash: 449d2048fcb20a314d8c218097c6d1047a9f1c5bb72aa54d5d3eba0a27a4c80c + phpTarGzUrl: https://www.php.net/distributions/php-8.0.15.tar.gz + phpSha256Hash: 47f0be6188b05390bb457eb1968ea19463acada79650afc35ec763348d5c2370