diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e7d78e74af81196fb93ec31adf967b1817ed9d84..683f56c83bfc14213f30f0cb9418447f426e4999 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -860,7 +860,7 @@ nightly-i386-windows-hadrian: - bash -c "PATH=`pwd`/toolchain/bin:$PATH make -j`mk/detect-cpu-count.sh`" - bash -c "PATH=`pwd`/toolchain/bin:$PATH make binary-dist-prep TAR_COMP_OPTS=-1" - bash -c "PATH=`pwd`/toolchain/bin:$PATH make test_bindist TEST_PREP=YES" - - bash -c 'make V=0 test THREADS=`mk/detect-cpu-count.sh` JUNIT_FILE=../../junit.xml' + - bash -c 'make V=0 test PYTHON=/mingw64/bin/python3 THREADS=`mk/detect-cpu-count.sh` JUNIT_FILE=../../junit.xml' tags: - x86_64-windows artifacts: diff --git a/aclocal.m4 b/aclocal.m4 index ed6e8a7c0d4140fd76c7c9f4b4fb42bfe2f06148..6b005acf8229613ad2987d7ce265fb09353a2e69 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -2513,4 +2513,15 @@ AC_DEFUN([FIND_LD],[ CHECK_LD_COPY_BUG([$1]) ]) +# FIND_PYTHON +# ----------- +# Find the version of `python` to use (for the testsuite driver) +# +AC_DEFUN([FIND_PYTHON],[ + dnl Prefer the mingw64 distribution on Windows due to #17483. + AC_PATH_PROG([PYTHON], [python3], [], [/mingw64/bin $PATH]) + PythonCmd="$PYTHON" + AC_SUBST([PythonCmd]) +]) + # LocalWords: fi diff --git a/configure.ac b/configure.ac index 812984ff9bfcd2644915df017b4d5e72ba1e916c..9f0e1567dd7621141720489e1fccba381ab71e5f 100644 --- a/configure.ac +++ b/configure.ac @@ -855,6 +855,9 @@ AC_PATH_PROG(XELATEX,xelatex) dnl ** check for makeinfo AC_PATH_PROG(MAKEINFO,makeinfo) +dnl ** check for Python for testsuite driver +FIND_PYTHON + dnl ** check for ghc-pkg command FP_PROG_GHC_PKG diff --git a/distrib/configure.ac.in b/distrib/configure.ac.in index 027df47db84c379e80b1ceccc66e9ff1bdd48572..c3df6203b58a12a0a613bc500d2c7a4b99f4861d 100644 --- a/distrib/configure.ac.in +++ b/distrib/configure.ac.in @@ -77,6 +77,9 @@ dnl ** Find the path to sed ** # AC_PATH_PROG(SedCmd,gsed sed,sed) +dnl ** check for Python for testsuite driver +FIND_PYTHON + XCODE_VERSION() dnl ** Which gcc to use? diff --git a/hadrian/cfg/system.config.in b/hadrian/cfg/system.config.in index b531bd8c31a06837cc36dd4aca41f5d48976043a..5c494cf27e3d36eda1b85eb8fe8843005bf22af3 100644 --- a/hadrian/cfg/system.config.in +++ b/hadrian/cfg/system.config.in @@ -28,7 +28,7 @@ makeinfo = @MAKEINFO@ # Python 3 is required to run test driver. # See: https://github.com/ghc/ghc/blob/master/testsuite/mk/boilerplate.mk#L220 -python = python3 +python = @PythonCmd@ # Information about builders: #============================ diff --git a/testsuite/mk/boilerplate.mk b/testsuite/mk/boilerplate.mk index 7eb89d978573b144e2f31ce4c7d5fbef18948b9a..5cdc40e68c1fea1074bfa7de72117624a83ecf91 100644 --- a/testsuite/mk/boilerplate.mk +++ b/testsuite/mk/boilerplate.mk @@ -217,7 +217,7 @@ $(eval $(call canonicalise,TOP_ABS)) GS = gs CP = cp RM = rm -f -PYTHON = python3 +PYTHON ?= python3 ifeq "$(CHECK_API_ANNOTATIONS)" "" CHECK_API_ANNOTATIONS := $(abspath $(TOP)/../inplace/bin/check-api-annotations)