aboutsummaryrefslogtreecommitdiff
path: root/scripts/ci/distcheck.sh
blob: c78349e2d44fc4282861911346da732c66a8e5b5 (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

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

make distcheck

make clean

make distcheck DISTCHECK__CONFIGURE_FLAGS=--disable-abi-compat