aboutsummaryrefslogtreecommitdiff
path: root/scripts/ci/distcheck.sh
blob: c6e0f4ea809c299410e4c1e41503355d401792ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/bash
set -e

if [ "${CC#clang}" != "${CC}" ] ; then
	export CXX="clang++"
fi

cd "$(dirname "$0")"/../..
./bootstrap
./configure \
	--enable-user-guides

make distcheck

make clean

# Ignore possible failures there because these tests depends on measurements
# and systems might differ in performance.
export CI="true"

make distcheck DISTCHECK__CONFIGURE_FLAGS=--disable-abi-compat