From 31ce57e324263800f7c845e67ec9fa828a4edfc6 Mon Sep 17 00:00:00 2001 From: James Crook Date: Fri, 6 Apr 2018 10:58:24 +0100 Subject: [PATCH] Make modules as part of Travis build They are quick to build, and this ensures we keep them building OK as we make other changes. --- .travis.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 9aec39447..d8a340666 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,4 +17,6 @@ before_install: language: - cpp script: - - time ./configure && time make -j2 + - mkdir build + - cd build + - time ../configure && time make modules && time make -j2