File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -483,6 +483,12 @@ if [ -n "${PYTHON_MEETS_MINIMUM_VERSION_3_14}" ]; then
483
483
CONFIGURE_FLAGS=" ${CONFIGURE_FLAGS} ac_cv_func_explicit_bzero=no"
484
484
fi
485
485
486
+ # On 3.14+ `test_strftime_y2k` fails when cross-compiling for `x86_64_v2` and `x86_64_v3` targets on
487
+ # Linux, so we ignore it. See https://github.com/python/cpython/issues/128104
488
+ if [[ -n " ${PYTHON_MEETS_MINIMUM_VERSION_3_14} " && -n " ${CROSS_COMPILING} " && " ${PYBUILD_PLATFORM} " != " macos" ]]; then
489
+ export PROFILE_TASK=' -m test --pgo --ignore test_strftime_y2k'
490
+ fi
491
+
486
492
# We use ndbm on macOS and BerkeleyDB elsewhere.
487
493
if [ " ${PYBUILD_PLATFORM} " = " macos" ]; then
488
494
CONFIGURE_FLAGS=" ${CONFIGURE_FLAGS} --with-dbmliborder=ndbm"
You can’t perform that action at this time.
0 commit comments