2018-12-23 15:31:14 +03:00
#!/bin/bash
set -e
set -x
2019-05-12 04:45:29 +03:00
bash -c "echo 'deb-src http://archive.ubuntu.com/ubuntu/ xenial main restricted universe multiverse' >>/etc/apt/sources.list"
2018-12-23 15:31:14 +03:00
apt-get update
apt-get build-dep systemd -y
apt-get install -y util-linux libmount-dev libblkid-dev liblzma-dev libqrencode-dev libmicrohttpd-dev iptables-dev liblz4-dev libcurl4-gnutls-dev unifont itstool kbd cryptsetup-bin net-tools isc-dhcp-client iputils-ping strace qemu-system-x86 linux-image-virtual mount libgpg-error-dev libxkbcommon-dev python-lxml python3-lxml python3-pip libcap-dev
apt-get install -y gettext python3-evdev python3-pyparsing libmount-dev python3-setuptools ninja-build
pip3 install meson
2019-05-12 04:45:29 +03:00
cd ${ REPO_ROOT :- $( pwd ) }
2018-12-23 15:31:14 +03:00
2019-02-03 08:07:23 +03:00
sed -i 's/2\.30/2.27/' meson.build
2018-12-23 15:31:14 +03:00
meson --werror -Db_sanitize= address,undefined -Dsplit-usr= true build
ninja -v -C build
2019-05-14 14:04:42 +03:00
make -C test/TEST-01-BASIC clean setup run NSPAWN_TIMEOUT = 600 TEST_NO_QEMU = yes NSPAWN_ARGUMENTS = --keep-unit RUN_IN_UNPRIVILEGED_CONTAINER = no
2018-12-25 07:56:46 +03:00
# Now that we're more or less sure that ASan isn't going to crash systemd and cause a kernel panic
# let's also run the test with QEMU to cover udevd, sysctl and everything else that isn't run
# in containers.
2019-05-14 14:13:04 +03:00
# This should be turned on once `journalctl --flush` isn't flaky any more
#make -C test/TEST-01-BASIC clean setup run QEMU_TIMEOUT=900 TEST_NO_NSPAWN=yes