18 lines
689 B
YAML
18 lines
689 B
YAML
language: c
|
|
compiler:
|
|
- gcc
|
|
- clang
|
|
# Change this to your needs
|
|
script:
|
|
- ./autogen.sh
|
|
- ./configure && 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
|
|
- ./configure --enable-gtk-doc && make -j4 && make check -j4
|
|
- make distcheck
|
|
before_install:
|
|
- apt-cache search libicu | grep icu
|
|
- sudo apt-get -qq update
|
|
- sudo apt-get -q install autoconf automake autopoint libtool gtk-doc-tools gettext idn2 libidn2-0 libidn2-0-dev libicu48 libicu-dev
|