trying more configure options for testing

This commit is contained in:
Bryan Stansell 2019-03-27 11:22:20 -07:00
parent 2561311abb
commit 009bd45dad
No known key found for this signature in database
GPG Key ID: 28E4B7253029E7F6

@ -6,21 +6,29 @@ freebsd_12_task:
image: freebsd-12-0-release-amd64
install_script:
- pkg install -y autoconf automake
build_script:
basic_script:
- ./package/setup-configure
- ./configure || { cat config.log; exit 1; }
- make
test_script:
- make test
linux_gcc_task:
container:
image: gcc:latest
build_script:
basic_script:
- ./package/setup-configure
- ./configure || { cat config.log; exit 1; }
- make
test_script:
- make test
uds_script:
- ./package/setup-configure
- ./configure --with-trust-uds-cred --with-uds || { cat config.log; exit 1; }
- make
- make test
pam_ssl_script:
- ./package/setup-configure
- ./configure --with-pam --with-openssl || { cat config.log; exit 1; }
- make
- make test
macos_task:
@ -28,9 +36,8 @@ macos_task:
image: mojave-xcode-10.1
install_script:
- brew install autoconf automake
build_script:
basic_script:
- ./package/setup-configure
- ./configure || { cat config.log; exit 1; }
- make
test_script:
- make test