blob: b40d8d6233e3887b2e87119cf49b5735ada20441 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
|
#!/bin/bash
set -e
set -xv
BUILD_DIR="${BUILD_DIR:-/tmp/nm-build}"
BUILD_ID="${BUILD_ID:-master}"
BUILD_REPO="${BUILD_REPO-https://github.com/NetworkManager/NetworkManager.git}"
BUILD_REPO2="${BUILD_REPO2-git://github.com/NetworkManager/NetworkManager.git}"
BUILD_SNAPSHOT="${BUILD_SNAPSHOT:-}"
ARCH="${ARCH:-`arch`}"
WITH_DEBUG="$WITH_DEBUG"
WITH_SANITIZER="$WITH_SANITIZER"
DO_TEST_BUILD="${DO_TEST_BUILD:-yes}"
DO_TEST_PACKAGE="${DO_TEST_PACKAGE:-yes}"
DO_INSTALL="${DO_INSTALL:-yes}"
if [ -z "$SUDO" ]; then
unset SUDO
fi
$SUDO yum install \
git \
rpm-build \
valgrind \
strace \
dbus-devel \
dbus-glib-devel \
wireless-tools-devel \
glib2-devel \
gobject-introspection-devel \
gettext-devel \
pkgconfig \
libnl3-devel \
'perl(XML::Parser)' \
'perl(YAML)' \
automake \
ppp-devel \
nss-devel \
dhclient \
readline-devel \
audit-libs-devel \
gtk-doc \
libudev-devel \
libuuid-devel \
libgudev1-devel \
vala-tools \
iptables \
bluez-libs-devel \
systemd \
libsoup-devel \
libndp-devel \
ModemManager-glib-devel \
newt-devel \
/usr/bin/dbus-launch \
pygobject3-base \
dbus-python \
libselinux-devel \
polkit-devel \
teamd-devel \
jansson-devel \
libpsl-devel \
libcurl-devel \
libasan \
gnutls-devel \
--enablerepo=* --skip-broken \
-y
$SUDO yum install \
libubsan \
-y || true
# for the tests, let's pre-load some modules:
$SUDO modprobe ip_gre
mkdir -p "$BUILD_DIR"
cd "$BUILD_DIR"
rm -rf "./NetworkManager"
if ! timeout 10m git clone "$BUILD_REPO"; then
git clone "$BUILD_REPO2"
fi
cd "./NetworkManager/"
# if we fetch from a github repository, we also care about the refs to the pull-requests
# fetch them too.
git config --add remote.origin.fetch '+refs/heads/*:refs/heads/*'
git config --add remote.origin.fetch '+refs/tags/*:refs/nmbuild-origin/tags/*'
git config --add remote.origin.fetch '+refs/pull/*:refs/nmbuild-origin/pull/*'
git checkout HEAD^{}
git fetch origin --prune
git checkout -B nmbuild "$BUILD_ID"
echo "HEAD is $(git rev-parse HEAD)"
if [[ "$DO_TEST_BUILD" == yes ]]; then
NOCONFIGURE=yes ./autogen.sh
./configure \
--enable-maintainer-mode \
--enable-more-warnings=error \
--prefix=/opt/test \
--sysconfdir=/etc \
--enable-gtk-doc \
--enable-more-asserts \
--with-more-asserts=100 \
--enable-more-logging \
--enable-compile-warnings=yes\
--with-valgrind=no \
--enable-concheck \
--enable-ifcfg-rh \
--enable-ifcfg-suse \
--enable-ifupdown \
--enable-ifnet \
--enable-vala=yes \
--enable-polkit=yes \
--with-nmtui=yes \
--with-modem-manager-1 \
--with-suspend-resume=systemd \
--enable-teamdctl=yes \
--enable-tests=root \
--with-netconfig=/path/does/not/exist/netconfig \
--with-resolvconf=/path/does/not/exist/resolvconf \
--with-crypto=nss \
--with-session-tracking=systemd \
--with-consolekit=yes \
--with-systemd-logind=yes \
--with-consolekit=yes
make -j20
make check -k
fi
if [[ "$DO_TEST_PACKAGE" == yes || "$DO_INSTALL" == yes ]]; then
A=()
if [[ "$WITH_DEBUG" == yes ]]; then
A=("${A[@]}" --with debug)
else
A=("${A[@]}" --without debug)
fi
if [[ "$WITH_SANITIZER" == yes ]]; then
A=("${A[@]}" --with sanitizer)
else
A=("${A[@]}" --without sanitizer)
fi
NM_BUILD_SNAPSHOT="${BUILD_SNAPSHOT}" \
./contrib/fedora/rpm/build_clean.sh -c "${A[@]}"
fi
if [[ "$DO_INSTALL" == yes ]]; then
pushd "./contrib/fedora/rpm/latest/RPMS/"
for p in $(ls -1 ./{$ARCH,noarch}/*.rpm | sed -n 's#^\./[^/]\+/\(NetworkManager.*\)-1\.[0-9]\+\..*#\1#p'); do
$SUDO rpm -e --nodeps $p || true
done
$SUDO yum install -y ./{$ARCH,noarch}/*.rpm
popd
# ensure that the expected NM is installed.
COMMIT_ID="$(git rev-parse --verify HEAD | sed 's/^\(.\{10\}\).*/\1/')"
$SUDO yum list installed NetworkManager | grep -q -e "\.$COMMIT_ID\."
$SUDO systemctl restart NetworkManager
fi
echo "BUILDING $BUILD_ID COMPLETED SUCCESSFULLY"
|