summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorMike Hommey <mh@glandium.org>2016-06-09 15:17:19 (GMT)
committerJason Evans <jasone@canonware.com>2016-07-07 20:16:05 (GMT)
commit2ea7742e6ffa7fb20538c0e2dba6ceec80cbe8d9 (patch)
tree5c739aa30967d4923d5aff989a49bcac98ef7955 /.travis.yml
parentc2942e2c0e097e7c75a3addd0b9c87758f91692e (diff)
downloadjemalloc-2ea7742e6ffa7fb20538c0e2dba6ceec80cbe8d9.zip
jemalloc-2ea7742e6ffa7fb20538c0e2dba6ceec80cbe8d9.tar.gz
jemalloc-2ea7742e6ffa7fb20538c0e2dba6ceec80cbe8d9.tar.bz2
Add Travis-CI configuration
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..1fed4f8
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,29 @@
+language: c
+
+matrix:
+ include:
+ - os: linux
+ compiler: gcc
+ - os: linux
+ compiler: gcc
+ env:
+ - EXTRA_FLAGS=-m32
+ addons:
+ apt:
+ packages:
+ - gcc-multilib
+ - os: osx
+ compiler: clang
+ - os: osx
+ compiler: clang
+ env:
+ - EXTRA_FLAGS=-m32
+
+before_script:
+ - autoconf
+ - ./configure${EXTRA_FLAGS:+ CC="$CC $EXTRA_FLAGS"}
+ - make -j3
+ - make -j3 tests
+
+script:
+ - make check