Skip to content

Commit b5cf105

Browse files
committed
Enable RE2 testing with Travis
Ubuntu 14.04 doesn't have RE2 package altogether, and Ubuntu 16.04 RE2 package is too old. Ubuntu 18.04 RE2 package might work, but this Ubuntu verison it's not supported by Travis yet. So build RE2 from source.
1 parent ae3f40c commit b5cf105

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

.travis.yml

+2
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ env:
3030
- OPTS="--without-ssdeep $OPTS"
3131
- OPTS="--without-lua $OPTS"
3232
- OPTS="--without-maxmind $OPTS"
33+
- OPTS="--without-re2 $OPTS"
3334

3435
before_script:
3536
- echo $TRAVIS_OS_NAME
@@ -41,6 +42,7 @@ before_script:
4142
- '[ "$TRAVIS_OS_NAME" != linux ] || sudo apt-get update'
4243
- '[ "$TRAVIS_OS_NAME" != linux ] || sudo apt-cache search maxmind'
4344
- '[ "$TRAVIS_OS_NAME" != linux ] || sudo apt-get install -y libmaxminddb-dev'
45+
- '[ "$OPTS" == "*--without-re2*" ] || ./.travis/install_re2.sh'
4446

4547
script:
4648
- ./build.sh

.travis/install_re2.sh

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/bin/sh
2+
3+
# Ubuntu 14.04 doesn't have RE2 package altogether,
4+
# and Ubuntu 16.04 RE2 package is too old.
5+
#
6+
# Ubuntu 18.04 RE2 package might work, but this Ubuntu verison it's not
7+
# supported by Travis yet.
8+
9+
RELEASE=2019-01-01
10+
11+
set -ex
12+
13+
cd /tmp
14+
wget https://github.com/google/re2/archive/$RELEASE.tar.gz -O re2.tar.gz
15+
tar -xf re2.tar.gz
16+
(cd re2-$RELEASE && make && sudo make install)

0 commit comments

Comments
 (0)