Files
flac/ci/flac-autotool.sh
Erik de Castro Lopo ffcda161ad Add file ci/flac-autotool.sh.
Currently only does 'make check' because 'make distcheck' is currently
broken.
2015-02-21 10:04:42 +11:00

15 lines
366 B
Bash
Executable File

# Continuous integration build script for FLAC.
# This script is run by automated frameworks to verify commits
# see https://mf4.xiph.org/jenkins/job/flac/
# This is intended to be run from the top-level source directory.
set -x
./autogen.sh
./configure
# Should do 'distcheck' here instead of 'check', but 'distcheck' is currently busted.
V=1 make clean check