added matrix into .travis.yml

This commit is contained in:
hyunghwan.chung 2018-05-28 10:14:13 +00:00
parent 81e2cc0578
commit 7988a33868

View File

@ -1,9 +1,30 @@
language: c language: c
sudo: false sudo: false
compiler: matrix:
- gcc include:
- clang - compiler: gcc
os: linux
env: OPTIONS="--enable-static --disable-shared --enable-dynamic-module --disable-static-module --enable-unicode=yes:2"
include:
- compiler: gcc
os: linux
env: OPTIONS="--enable-static --disable-shared --enable-dynamic-module --enable-static-module --enable-unicode=yes:2"
include:
- compiler: clang
os: linux
env: OPTIONS="--enable-static --disable-shared --enable-dynamic-module --disable-static-module --enable-unicode=yes:2"
include:
- compiler: clang
os: linux
env: OPTIONS="--enable-static --disable-shared --enable-dynamic-module --enable-static-module --enable-unicode=yes:2"
include:
- compiler: clang
os: osx
env: OPTIONS="--enable-static --disable-shared --enable-dynamic-module --disable-static-module --enable-unicode=yes:2"
include:
- compiler: clang
os: osx
env: OPTIONS="--enable-static --disable-shared --enable-dynamic-module --enable-static-module --enable-unicode=yes:2"
script: script:
- touch --date="`date`" moo/* moo/*/* && cd moo && ./configure && make - touch --date="`date`" moo/* moo/*/* && cd moo && ./configure $OPTIONS && make