aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEven Rouault <even.rouault@mines-paris.org>2015-06-20 23:02:30 +0200
committerEven Rouault <even.rouault@mines-paris.org>2015-06-20 23:02:30 +0200
commit961b328eeba789951081491e88435faf129d4697 (patch)
tree3020479b8eaad3e92a51fa4c673d5a46a3e1d1ba
parent1862c999aa479229477edbb020a709135f1a55fc (diff)
downloadPROJ-961b328eeba789951081491e88435faf129d4697.tar.gz
PROJ-961b328eeba789951081491e88435faf129d4697.zip
Add .travis.yml
-rw-r--r--.travis.yml37
1 files changed, 37 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 00000000..cee17d94
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,37 @@
+# This is the config file for building proj.4 and running its test suite
+# with Travis-ci.org
+
+language: c
+
+compiler:
+ - gcc
+ - clang
+
+install:
+ - mkdir build_cmake
+ - cd build_cmake
+ - cmake .. -DCMAKE_PREFIX_INSTALL=/tmp/proj_cmake_install
+ - make -j3
+ - make install
+ - find /tmp/proj_cmake_install
+ - cd ..
+ - mkdir build_autoconf
+ - cd build_autoconf
+ - ../configure --prefix=/tmp/proj_autoconf_install
+ - make -j3
+ - make install
+ - find /tmp/proj_autoconf_install
+
+script:
+ - make check
+
+notifications:
+ #email:
+ # recipients:
+ # - gdal-commits@lists.osgeo.org
+
+ irc:
+ channels:
+ - "irc.freenode.org#gdal"
+ use_notice: true
+