added more build checks
This commit is contained in:
parent
9f5d6b1e9d
commit
1a22cb91fb
|
@ -3,7 +3,13 @@ compiler:
|
||||||
- gcc
|
- gcc
|
||||||
- clang
|
- clang
|
||||||
# Change this to your needs
|
# Change this to your needs
|
||||||
script: ./autogen.sh && ./configure --enable-gtk-doc && make -j4 && make check -j4 && make distcheck
|
script:
|
||||||
|
- ./autogen.sh
|
||||||
|
- ./configure --enable-gtk-doc && make -j4 && make check -j4
|
||||||
|
- ./configure --without-libicu && make clean && make -j4 && make check -j4
|
||||||
|
- ./configure --disable-builtin && make clean && make -j4 && make check -j4
|
||||||
|
- ./configure --disable-builtin --without-libicu && make clean && make -j4 && make check -j4
|
||||||
|
- make distcheck
|
||||||
before_install:
|
before_install:
|
||||||
- apt-cache search libicu | grep icu
|
- apt-cache search libicu | grep icu
|
||||||
- sudo apt-get -qq update
|
- sudo apt-get -qq update
|
||||||
|
|
Loading…
Reference in New Issue