From ef6f654e7bf4c6325c622c30f06b0b80120c1998 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Mon, 12 Aug 2024 15:55:09 +0200 Subject: [PATCH] Build native_mixed on windows Xapian build with meson is static only. This is mainly due to missing "ddl export" or ".def" file. Autotool buildsystem seems to handle that automatically but not meson. See https://github.com/mesonbuild/meson/issues/2132 about meson supporting this. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9303d68..75db2da 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: runs-on: windows-latest env: OS_NAME: windows - COMPILE_CONFIG: native_dyn + COMPILE_CONFIG: native_mixed HOME: 'C:\\Users\\runneradmin' steps: - name: Checkout code