summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorAlfred E. Heggestad <alfred.heggestad@gmail.com>2017-04-28 09:02:07 +0200
committerAlfred E. Heggestad <alfred.heggestad@gmail.com>2017-04-28 09:02:07 +0200
commit8875fc1255de4036db1e82df9b7aaccb064daf45 (patch)
tree61dc5b29352e14d19ae024f00d378b94c075f9ec /.travis.yml
parentb0361b54d7bfd166a428e53b00491d2335004e20 (diff)
travis: build against GIT version of libre/librem
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index 99cec87..093f30f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -9,7 +9,7 @@ compiler:
- gcc
env:
- - LIBRE=re-0.5.0 LIBREM=rem-0.5.0
+ - LIBRE=re LIBREM=rem
sudo: require
@@ -19,8 +19,8 @@ addons:
libssl-dev
install:
- - curl "http://www.creytiv.com/pub/${LIBRE}.tar.gz" | tar xzf -
- - curl "http://www.creytiv.com/pub/${LIBREM}.tar.gz" | tar xzf -
+ - git clone https://github.com/creytiv/re.git
+ - git clone https://github.com/creytiv/rem.git
- curl -OL 'https://github.com/alfredh/pytools/raw/master/ccheck.py'
- for p in ${LIBRE} ${LIBREM}; do cd $p && sudo PATH="$PATH" make install && cd - && sudo rm -Rf $p; done
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo ldconfig; fi