metadata: annotations: prow.k8s.io/context: pull-sanitizer-asan prow.k8s.io/job: pull-sanitizer-asan creationTimestamp: "2026-05-15T03:37:20Z" generation: 11 labels: created-by-prow: "true" event-GUID: 5fe9b7c0-500f-11f1-91e3-c1e9a381fbe2 prow.k8s.io/build-id: "2055130384525430784" prow.k8s.io/context: pull-sanitizer-asan prow.k8s.io/id: 49ae3c42-5437-4318-b451-44ab9bb9604b prow.k8s.io/is-optional: "true" prow.k8s.io/job: pull-sanitizer-asan prow.k8s.io/refs.base_ref: master prow.k8s.io/refs.org: pingcap prow.k8s.io/refs.pull: "10846" prow.k8s.io/refs.repo: tiflash prow.k8s.io/type: presubmit name: 49ae3c42-5437-4318-b451-44ab9bb9604b namespace: apps resourceVersion: "1778820332086015007" uid: e12ca6c0-3cc5-466a-9410-169084e72338 spec: agent: kubernetes cluster: default context: pull-sanitizer-asan decoration_config: gcs_configuration: bucket: gs://prow-tidb-logs path_strategy: explicit gcs_credentials_secret: gcs-credentials ssh_host_fingerprints: - github.com ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOMqqnkVzrm0SdG6UOoqKLsabgH5C9okWi0dh2l9GKJl - github.com ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBEmKSENjQEezOmxkZMy7opKgwFB9nkt5YRrYMjNuG5N87uRgg6CLrbo5wAdT/y6v0mKV0U2w0WZ2YB/++Tpockg= - github.com ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCj7ndNxQowgcQnjshcLrqPEiiphnt+VTTvDP6mHBL9j1aNUkY4Ue1gvwnGLVlOhGeYrnZaMgRK6+PKCUXaDbC7qtbW8gIkhL7aGCsOr/C56SJMy/BCZfxd1nWzAOxSDPgVsmerOBYfNqltV9/hWCqBywINIR+5dIg6JTJ72pcEpEjcYgXkE2YEFXV1JHnsKgbLWNlhScqb2UmyRkQyytRLtL+38TGxkxCflmO+5Z8CSSNY7GidjMIZ7Q4zMjA2n1nGrlTDkzwDCsw+wqFPGQA179cnfGWOWRVruj16z6XyvxvjJwbz0wQZ75XK5tKSb7FNyeIEs4TT4jk+S4dhPeAUC5y+bDYirYgM4GC7uEnztnZyaVWQ7B381AK4Qdrwt51ZqExKbQpTUNn+EjqoTwvqNj4kqx5QUCI0ThS/YkOxJCXmPUWZbhjpCg56i+2aB6CmK2JGhn57K5mj0MNdBXA4/WnwH6XoPWJzK5Nyu2zB3nAZp+S5hpQs+p1vN1/wsjk= ssh_key_secrets: - github-ssh-secret timeout: 3h0m0s utility_images: clonerefs: gcr.io/k8s-prow/clonerefs:v20230601-43eb1068e4 entrypoint: gcr.io/k8s-prow/entrypoint:v20230601-43eb1068e4 initupload: gcr.io/k8s-prow/initupload:v20230601-43eb1068e4 sidecar: gcr.io/k8s-prow/sidecar:v20230601-43eb1068e4 job: pull-sanitizer-asan namespace: prow-test-pods pod_spec: affinity: nodeAffinity: requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - key: kubernetes.io/arch operator: In values: - amd64 containers: - args: - | set -euo pipefail if ! command -v ccache >/dev/null 2>&1; then yum install -y ccache fi sanitizer="${SANITIZER:-}" if [[ "${sanitizer}" != "ASan" && "${sanitizer}" != "TSan" ]]; then echo "unsupported sanitizer: ${sanitizer}" >&2 exit 1 fi run_with_sanitizer_runtime() { "$@" } if [[ "${sanitizer}" == "TSan" ]] && ! command -v setarch >/dev/null 2>&1; then echo "setarch is required for TSan runtime on this job" >&2 exit 1 fi if [[ "${sanitizer}" == "TSan" ]] && command -v setarch >/dev/null 2>&1; then arch_name="$(uname -m)" run_with_sanitizer_runtime() { setarch "${arch_name}" -R "$@" } fi build_jobs="20" test_workers="16" if [[ "${sanitizer}" == "TSan" ]]; then test_workers="10" fi repo_root="$(pwd)" export RUSTUP_HOME="${repo_root}/.rustup-${sanitizer}" export CARGO_HOME="${repo_root}/.cargo-${sanitizer}" unset RUSTUP_TOOLCHAIN rm -rf "${repo_root}/.ccache" "${repo_root}/build-${sanitizer}" "${RUSTUP_HOME}" "${CARGO_HOME}" mkdir -p "${repo_root}/build-${sanitizer}" "${RUSTUP_HOME}" "${CARGO_HOME}" echo "RUSTUP_HOME=${RUSTUP_HOME}" echo "CARGO_HOME=${CARGO_HOME}" echo "rustup active toolchain before install:" rustup show active-toolchain || true for attempt in 1 2 3; do if rustup toolchain install; then break fi if [[ "${attempt}" == "3" ]]; then echo "failed to install rust toolchain after ${attempt} attempts" >&2 exit 1 fi rm -rf "${RUSTUP_HOME}/tmp" "${RUSTUP_HOME}/downloads" sleep "$((attempt * 10))" done rustup show rustup which cargo cargo --version ccache -o cache_dir="$(realpath "${repo_root}/.ccache")" || true ccache -o max_size=2G || true ccache -o limit_multiple=0.99 || true ccache -o hash_dir=false || true ccache -o compression=true || true ccache -o compression_level=6 || true ccache -z || true ( cd "${repo_root}/build-${sanitizer}" cmake "${repo_root}" \ -DCMAKE_CXX_COMPILER=clang++ \ -DCMAKE_C_COMPILER=clang \ -DENABLE_TESTS=ON \ -DCMAKE_BUILD_TYPE="${sanitizer}" \ -DUSE_CCACHE=ON \ -DRUN_HAVE_STD_REGEX=0 \ -DCMAKE_PREFIX_PATH=/usr/local \ -DUSE_GM_SSL=0 \ -GNinja run_with_sanitizer_runtime ninja -j"${build_jobs}" gtests_dbms gtests_libcommon gtests_libdaemon ) rm -rf /tests /tiflash ln -s "${repo_root}/tests" /tests mkdir -p /tiflash cp "${repo_root}/build-${sanitizer}/dbms/gtests_dbms" /tiflash cp "${repo_root}/build-${sanitizer}/libs/libcommon/src/tests/gtests_libcommon" /tiflash cp "${repo_root}/build-${sanitizer}/libs/libdaemon/src/tests/gtests_libdaemon" /tiflash source /tests/docker/util.sh show_env UBSAN_OPTIONS=print_stacktrace=1:halt_on_error=0 \ LSAN_OPTIONS=suppressions=/tests/sanitize/asan.suppression \ TSAN_OPTIONS="suppressions=/tests/sanitize/tsan.suppression" \ ENV_VARS_PATH=/tests/docker/_env.sh \ NPROC="${test_workers}" \ run_with_sanitizer_runtime /tests/run-gtest.sh command: - /bin/bash - -ce env: - name: SANITIZER value: ASan image: ghcr.io/pingcap-qe/cd/builders/tiflash:v2025.8.10-2-gc9e3144-centos7 imagePullPolicy: Always name: run-sanitizer resources: limits: cpu: "24" memory: 64Gi requests: cpu: "24" memory: 64Gi prowjob_defaults: tenant_id: GlobalDefaultID refs: base_link: https://github.com/pingcap/tiflash/commit/ed4e382d053dbfc2dac92f87c1043485b4154d3a base_ref: master base_sha: ed4e382d053dbfc2dac92f87c1043485b4154d3a clone_uri: git@github.com:pingcap/tiflash.git org: pingcap pulls: - author: yongman author_link: https://github.com/yongman commit_link: https://github.com/pingcap/tiflash/pull/10846/commits/e74426dd3dea2afb15e8e2004a279a15f37bc2ca head_ref: ym/fix-json-function link: https://github.com/pingcap/tiflash/pull/10846 number: 10846 sha: e74426dd3dea2afb15e8e2004a279a15f37bc2ca title: 'functions: save FieldType as value instead of ptr in json function' repo: tiflash repo_link: https://github.com/pingcap/tiflash report: true rerun_command: /test pull-sanitizer-asan type: presubmit status: build_id: "2055130384525430784" completionTime: "2026-05-15T04:45:30Z" description: Job failed. pendingTime: "2026-05-15T03:37:21Z" pod_name: 49ae3c42-5437-4318-b451-44ab9bb9604b prev_report_states: gcsk8sreporter: failure gcsreporter: failure github-reporter: failure startTime: "2026-05-15T03:37:20Z" state: failure url: https://prow.tidb.net/view/gs/prow-tidb-logs/pr-logs/pull/pingcap_tiflash/10846/pull-sanitizer-asan/2055130384525430784