#!/bin/sh # # Run tests for continuous integration. # # This script is normally run in a test container or VM, such as via GitHub # Actions. # # Copyright 2015-2021 Russ Allbery # # SPDX-License-Identifier: MIT set -eux # Normally, KERBEROS is set based on the CI matrix, but provide a default in # case someone runs this test by hand. KERBEROS="${KERBEROS:-mit}" # Generate Autotools files. ./bootstrap # Build everything with Clang first, with warnings enabled. if [ "$KERBEROS" = 'heimdal' ]; then ./configure CC=clang PATH_KRB5_CONFIG=/usr/bin/krb5-config.heimdal else ./configure CC=clang fi make warnings # Then rebuild everything with GCC with warnings enabled. make distclean if [ "$KERBEROS" = 'heimdal' ]; then ./configure CC=gcc PATH_KRB5_CONFIG=/usr/bin/krb5-config.heimdal else ./configure CC=gcc fi make warnings # Run the tests with valgrind. make check-valgrind # Run additional style tests, but only in the MIT build. if [ "$KERBEROS" = "mit" ]; then make check-cppcheck fi