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.
30 lines
463 B
YAML
30 lines
463 B
YAML
language: c
|
|
|
|
matrix:
|
|
include:
|
|
- os: linux
|
|
compiler: gcc
|
|
- os: linux
|
|
compiler: gcc
|
|
env:
|
|
- EXTRA_FLAGS=-m32
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- gcc-multilib
|
|
- os: osx
|
|
compiler: clang
|
|
- os: osx
|
|
compiler: clang
|
|
env:
|
|
- EXTRA_FLAGS=-m32
|
|
|
|
before_script:
|
|
- autoconf
|
|
- ./configure${EXTRA_FLAGS:+ CC="$CC $EXTRA_FLAGS"}
|
|
- make -j3
|
|
- make -j3 tests
|
|
|
|
script:
|
|
- make check
|