Skip to content

Commit 79a24ef

Browse files
WGH-zimmerle
authored andcommitted
Enable LMDB in Travis CI configuration
LMBD is not built by default since 6143eb9, so add explicit --with-lmdb configuration. Missing --with-lmdb build allowed a bug in PR #2003 to pass through, causing issue #2008.
1 parent dc78c0e commit 79a24ef

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ env:
2626
- OPTS="--without-curl $OPTS"
2727
- OPTS="--without-yajl $OPTS"
2828
- OPTS="--without-geoip $OPTS"
29-
- OPTS="--without-lmdb $OPTS"
29+
- OPTS="--with-lmdb $OPTS"
3030
- OPTS="--without-ssdeep $OPTS"
3131
- OPTS="--without-lua $OPTS"
3232
- OPTS="--without-maxmind $OPTS"
@@ -36,6 +36,7 @@ before_script:
3636
- '[ "$TRAVIS_OS_NAME" != osx ] || brew update'
3737
- '[ "$TRAVIS_OS_NAME" != osx ] || brew install cppcheck'
3838
- '[ "$TRAVIS_OS_NAME" != osx ] || brew install libmaxminddb'
39+
- '[ "$TRAVIS_OS_NAME" != osx ] || brew install lmdb'
3940
- '[ "$TRAVIS_OS_NAME" != linux ] || sudo add-apt-repository --yes ppa:maxmind/ppa'
4041
- '[ "$TRAVIS_OS_NAME" != linux ] || sudo apt-get update'
4142
- '[ "$TRAVIS_OS_NAME" != linux ] || sudo apt-cache search maxmind'

0 commit comments

Comments
 (0)