mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-22 08:08:53 -05:00
27e29f4fe6
The original jemalloc source tree was modified to: 1. Remove the configure error that prevents nested builds. 2. Insert the Redis private Jemalloc API in order to allow the Redis fragmentation function to work.
29 lines
673 B
YAML
29 lines
673 B
YAML
version: '{build}'
|
|
|
|
environment:
|
|
matrix:
|
|
- MSYSTEM: MINGW64
|
|
CPU: x86_64
|
|
MSVC: amd64
|
|
- MSYSTEM: MINGW32
|
|
CPU: i686
|
|
MSVC: x86
|
|
- MSYSTEM: MINGW64
|
|
CPU: x86_64
|
|
- MSYSTEM: MINGW32
|
|
CPU: i686
|
|
|
|
install:
|
|
- set PATH=c:\msys64\%MSYSTEM%\bin;c:\msys64\usr\bin;%PATH%
|
|
- if defined MSVC call "c:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" %MSVC%
|
|
- if defined MSVC pacman --noconfirm -Rsc mingw-w64-%CPU%-gcc gcc
|
|
- pacman --noconfirm -Suy mingw-w64-%CPU%-make
|
|
|
|
build_script:
|
|
- bash -c "autoconf"
|
|
- bash -c "./configure"
|
|
- mingw32-make -j3
|
|
- file lib/jemalloc.dll
|
|
- mingw32-make -j3 tests
|
|
- mingw32-make -k check
|