travis: Fill in the test matrix

The plugins will have to run in a number of different configurations, so let's
test them.
This commit is contained in:
Christian Decker
2019-12-05 01:00:39 +01:00
parent 81199ae3e6
commit e8d4d8dc77
2 changed files with 11 additions and 1 deletions

View File

@@ -4,6 +4,16 @@ dist: bionic
notifications:
email: false
env:
- COMPAT=0 DEVELOPER=0 EXPERIMENTAL_FEATURES=0
- COMPAT=0 DEVELOPER=0 EXPERIMENTAL_FEATURES=1
- COMPAT=0 DEVELOPER=1 EXPERIMENTAL_FEATURES=0
- COMPAT=0 DEVELOPER=1 EXPERIMENTAL_FEATURES=1
- COMPAT=1 DEVELOPER=0 EXPERIMENTAL_FEATURES=0
- COMPAT=1 DEVELOPER=0 EXPERIMENTAL_FEATURES=1
- COMPAT=1 DEVELOPER=1 EXPERIMENTAL_FEATURES=0
- COMPAT=1 DEVELOPER=1 EXPERIMENTAL_FEATURES=1
cache:
directories:
- dependencies

View File

@@ -41,7 +41,7 @@ git clone --recursive https://github.com/ElementsProject/lightning.git /tmp/ligh
if [ ! -f "$CWD/dependencies/usr/local/bin/lightningd" ]; then
(
cd /tmp/lightning && \
./configure --enable-developer --disable-valgrind --enable-experimental-features && \
./configure --disable-valgrind && \
make -j 8 DESTDIR=dependencies/
)
fi