travis-ci: update

Drop explicit CFLAGS specification as `-Wno-c11-extensions` is enabled
on FreeBSD by the configure script.

Run and check `make install` and `make installcheck`.
This commit is contained in:
Christian Göttsche 2021-08-28 17:57:31 +02:00 committed by BenBE
parent b81bb9038c
commit 4855d92469
1 changed files with 4 additions and 3 deletions

View File

@ -9,7 +9,8 @@ os:
script:
- ./autogen.sh
# clang might warn about C11 generic selections in isnan()
- CFLAGS=-Wno-c11-extensions ./configure --enable-werror
- ./configure --enable-werror
- make -k
- CFLAGS=-Wno-c11-extensions make distcheck DISTCHECK_CONFIGURE_FLAGS=--enable-werror
- make distcheck DISTCHECK_CONFIGURE_FLAGS=--enable-werror
- sudo make install
- make installcheck