aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml29
1 files changed, 29 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..97f5610
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,29 @@
+language: c++
+sudo: required
+dist: trusty
+
+addons: &addons
+ apt:
+ sources: &sources
+ - ubuntu-toolchain-r-test
+ packages: &packages
+ - automake
+ - libboost1.55-all-dev
+ - libcurl4-openssl-dev
+ - gcc-5
+ - g++-5
+
+compiler:
+ - gcc
+
+script:
+ - |
+ ./bootstrap.sh
+ CC=gcc-5 CXX=g++-5 ./configure
+ make
+ - |
+ sudo apt-get install libmagickwand-dev
+ ./bootstrap.sh
+ CC=gcc-5 CXX=g++-5 ./configure
+ make
+