aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/jenkins.sh
blob: c23bdec608e12f3c2b7c3d76039ee6b0a0c2d523 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env bash
# jenkins build helper script for libasn1c.  This is how we build on jenkins.osmocom.org

set -e
osmo-clean-workspace.sh

set +x
echo
echo
echo
echo " =============================== libasn1c ==============================="
echo
set -x

autoreconf --install --force
./configure --enable-werror
$MAKE $PARALLEL_MAKE
$MAKE distcheck \
  || cat-testlogs.sh
$MAKE maintainer-clean

osmo-clean-workspace.sh