summaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authorErik de Castro Lopo <erikd@mega-nerd.com>2015-02-21 08:47:41 +1100
committerErik de Castro Lopo <erikd@mega-nerd.com>2015-02-21 10:04:42 +1100
commitffcda161ad1f47d730490c91bb95653c4a0be403 (patch)
tree9e3a42eb17c0bee543bd4978c6ce8f0ac6b2521c /ci
parentc431a6c581bc40b5d92918ff03de654555378dbe (diff)
downloadflac-ffcda161ad1f47d730490c91bb95653c4a0be403.tar.gz
Add file ci/flac-autotool.sh.
Currently only does 'make check' because 'make distcheck' is currently broken.
Diffstat (limited to 'ci')
-rwxr-xr-xci/flac-autotool.sh14
1 files changed, 14 insertions, 0 deletions
diff --git a/ci/flac-autotool.sh b/ci/flac-autotool.sh
new file mode 100755
index 00000000..e77c6cec
--- /dev/null
+++ b/ci/flac-autotool.sh
@@ -0,0 +1,14 @@
+# 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