2 # A full clone takes 30 seconds, depth 20 takes 5 seconds.
4 # Using "shallow_clone: true" downloads the commit as a ZIP file so you might
5 # think that would be quicker still, but actually it seems to take ~15 seconds,
6 # and then bootstrap fails due to there not being a ".git" directory.
8 # Specify clone_folder so we can hard-code the Unix path equivalent below.
9 clone_folder: c:\projects\xapian
20 # Fails trying to run apitest.exe etc for unknown reasons.
27 APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
28 VCVARS_BAT: "\"C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\vcvarsall.bat\" x86"
29 # We get exit code 127 trying to run apitest.exe but no error message.
30 # Other test programs which link to libxapian fail too. unittest.exe OK.
33 # APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
34 # VCVARS_BAT: "\"C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\vcvarsall.bat\" x64"
37 APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
38 VCVARS_BAT: "\"C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\Community\\VC\\Auxiliary\\Build\\vcvars32.bat\""
41 APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
42 VCVARS_BAT: "\"C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\Community\\VC\\Auxiliary\\Build\\vcvars64.bat\""
45 $env:CONFIGOPTS="--disable-documentation"
47 if ($env:TOOLCHAIN -eq "mingw") {
48 $env:PATH="C:\Mingw\bin;C:\Mingw\MSYS\1.0\bin;$env:PATH"
49 } elseif ($env:TOOLCHAIN -eq "mingw64") {
50 if ($env:Platform -eq "x86") {
51 $env:PATH="C:\mingw-w64\i686-6.3.0-posix-dwarf-rt_v5-rev1\mingw32\bin;C:\msys64\usr\bin;$env:PATH"
52 $env:CONFIGOPTS+=" --host=i686-pc-mingw32"
54 $env:PATH="C:\mingw-w64\x86_64-7.2.0-posix-seh-rt_v5-rev1\mingw64\bin;C:\msys64\usr\bin;$env:PATH"
55 $env:CONFIGOPTS+=" --host=x86_64-w64-mingw32"
57 } elseif ($env:TOOLCHAIN -eq "cygwin") {
58 # Use 64-bit cygwin install for 32 bit build too to avoid DLL mapping issues.
59 $env:PATH="C:\cygwin64\bin;$env:PATH"
60 if ($env:Platform -eq "x86") {
61 $env:CONFIGOPTS+=" --host=i686-pc-cygwin"
63 $env:CONFIGOPTS+=" --host=x86_64-pc-cygwin"
65 } elseif ($env:TOOLCHAIN -eq "llvm") {
66 $env:PATH="C:\Program Files\LLVM\bin;c:\msys64\usr\bin;$env:PATH"
68 $env:PATH="c:\msys64\usr\bin;$env:PATH"
71 if ($env:TOOLCHAIN -ne "cygwin") {
72 $env:CONFIGOPTS+=" --disable-backend-honey"
74 - if "%TOOLCHAIN%"=="mingw" bash -c "echo 'c:/mingw /mingw' >> /etc/fstab"
75 - if "%TOOLCHAIN%"=="mingw" bash -c 'mingw-get install libz-dev'
76 - if "%TOOLCHAIN%"=="mingw64" bash -c 'pacman -Sy --noconfirm zlib-devel'
77 - if "%TOOLCHAIN%-%Platform%"=="cygwin-x64" C:\cygwin64\setup-x86_64.exe -qnNdO -R C:/cygwin64 -s http://cygwin.mirror.constant.com -l C:/cygwin64/var/cache/setup -P zlib-devel
78 - if "%TOOLCHAIN%-%Platform%"=="cygwin-x86" C:\cygwin64\setup-x86_64.exe -qnNdO -R C:/cygwin64 -s http://cygwin.mirror.constant.com -l C:/cygwin64/var/cache/setup -P cygwin32-zlib -P cygwin32-gcc-core -P cygwin32-gcc-g++
79 - bash -c 'time ./bootstrap --fetch-url-command="curl -L" xapian-core'
80 - if defined VCVARS_BAT call %VCVARS_BAT%
81 - if "%TOOLCHAIN%"=="msvc" mkdir zlib
82 - if "%TOOLCHAIN%"=="msvc" cd zlib
83 - if "%TOOLCHAIN%"=="msvc" bash -c 'curl -L https://github.com/xapian/xapian-dev-deps/releases/download/current/zlib-1.2.11.tar.gz|tar --strip-components=1 -zxf -'
84 - if "%TOOLCHAIN%"=="msvc" nmake -nologo -f win32\Makefile.msc
85 - if "%TOOLCHAIN%"=="msvc" cd ..
86 # Fetch pre-built unicode-data.cc to avoid having to get working tclsh.
87 - curl https://oligarchy.co.uk/xapian/patches/unicode-data.cc > xapian-core\unicode\unicode-data.cc
89 if ($env:TOOLCHAIN -eq "msvc") {
91 $env:CXX="c:/projects/xapian/INST/share/automake-1.15/compile cl -nologo"
93 $env:CPPFLAGS="-Ic:/projects/xapian/zlib"
95 $env:LDFLAGS="-Lc:/projects/xapian/zlib"
98 - bash -c 'time ./configure $CONFIGOPTS'
99 - bash -c 'time make -j2' < nul
101 - bash -c 'time make check VERBOSE=1' < nul