summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.travis.yml3
-rwxr-xr-x.travis/install-flatbuffers.sh2
2 files changed, 4 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 87dbdfce..030efe53 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -21,6 +21,9 @@ addons:
21 - libxapian-dev 21 - libxapian-dev
22git: 22git:
23 depth: 1 23 depth: 1
24branches:
25 except:
26 - gh-pages
24 27
25before_install: 28before_install:
26 - source /opt/qt59/bin/qt59-env.sh 29 - source /opt/qt59/bin/qt59-env.sh
diff --git a/.travis/install-flatbuffers.sh b/.travis/install-flatbuffers.sh
index f97248c7..1ff8fcc2 100755
--- a/.travis/install-flatbuffers.sh
+++ b/.travis/install-flatbuffers.sh
@@ -6,7 +6,7 @@ tar xvfa /tmp/flatbuffers.tar.gz
6cd flatbuffers-1.8.0 6cd flatbuffers-1.8.0
7mkdir build 7mkdir build
8cd build 8cd build
9cmake .. -G Ninja -DCMAKE_INSTALL_PREFIX=/usr 9cmake .. -G Ninja -DCMAKE_INSTALL_PREFIX=/usr -DFLATBUFFERS_BUILD_SHAREDLIB=ON
10ninja && sudo ninja install 10ninja && sudo ninja install
11cd 11cd
12rm -rf /tmp/flatbuffers.tar.gz /tmp/flatbuffers-1.8.0 12rm -rf /tmp/flatbuffers.tar.gz /tmp/flatbuffers-1.8.0