]> git.proxmox.com Git - systemd.git/blob - .github/workflows/unit_tests.sh
New upstream version 249~rc1
[systemd.git] / .github / workflows / unit_tests.sh
1 #!/bin/bash
2
3 PHASES=(${@:-SETUP RUN RUN_ASAN_UBSAN CLEANUP})
4 RELEASE="$(lsb_release -cs)"
5 ADDITIONAL_DEPS=(
6 clang
7 expect
8 fdisk
9 jekyll
10 libfdisk-dev
11 libfido2-dev
12 libp11-kit-dev
13 libpwquality-dev
14 libqrencode-dev
15 libssl-dev
16 libtss2-dev
17 libzstd-dev
18 perl
19 python3-libevdev
20 python3-pyparsing
21 zstd
22 )
23
24 function info() {
25 echo -e "\033[33;1m$1\033[0m"
26 }
27
28 set -ex
29
30 for phase in "${PHASES[@]}"; do
31 case $phase in
32 SETUP)
33 info "Setup phase"
34 bash -c "echo 'deb-src http://archive.ubuntu.com/ubuntu/ $RELEASE main restricted universe multiverse' >>/etc/apt/sources.list"
35 # PPA with some newer build dependencies
36 add-apt-repository -y ppa:upstream-systemd-ci/systemd-ci
37 apt-get -y update
38 apt-get -y build-dep systemd
39 apt-get -y install "${ADDITIONAL_DEPS[@]}"
40 ;;
41 RUN|RUN_GCC|RUN_CLANG)
42 if [[ "$phase" = "RUN_CLANG" ]]; then
43 export CC=clang
44 export CXX=clang++
45 fi
46 meson --werror -Dtests=unsafe -Dslow-tests=true -Dfuzz-tests=true -Dman=true build
47 ninja -C build -v
48 meson test -C build --print-errorlogs
49 ;;
50 RUN_ASAN_UBSAN|RUN_GCC_ASAN_UBSAN|RUN_CLANG_ASAN_UBSAN)
51 MESON_ARGS=(--optimization=1)
52
53 if [[ "$phase" = "RUN_CLANG_ASAN_UBSAN" ]]; then
54 export CC=clang
55 export CXX=clang++
56 # Build fuzzer regression tests only with clang (for now),
57 # see: https://github.com/systemd/systemd/pull/15886#issuecomment-632689604
58 # -Db_lundef=false: See https://github.com/mesonbuild/meson/issues/764
59 MESON_ARGS+=(-Db_lundef=false -Dfuzz-tests=true)
60 fi
61 meson --werror -Dtests=unsafe -Db_sanitize=address,undefined "${MESON_ARGS[@]}" build
62 ninja -C build -v
63
64 export ASAN_OPTIONS=strict_string_checks=1:detect_stack_use_after_return=1:check_initialization_order=1:strict_init_order=1
65 # Never remove halt_on_error from UBSAN_OPTIONS. See https://github.com/systemd/systemd/commit/2614d83aa06592aedb.
66 export UBSAN_OPTIONS=print_stacktrace=1:print_summary=1:halt_on_error=1
67
68 # FIXME
69 # For some strange reason the GH Actions VM stops responding after
70 # executing first ~150 tests, _unless_ there's something producing
71 # output (either running `meson test` in verbose mode, or something
72 # else in background). Despite my efforts so far I haven't been able
73 # to identify the culprit (since the issue is not reproducible
74 # during debugging, wonderful), so let's at least keep a workaround
75 # here to make the builds stable for the time being.
76 (set +x; while :; do echo -ne "\n[WATCHDOG] $(date)\n"; sleep 30; done) &
77 meson test --timeout-multiplier=3 -C build --print-errorlogs
78 ;;
79 CLEANUP)
80 info "Cleanup phase"
81 ;;
82 *)
83 echo >&2 "Unknown phase '$phase'"
84 exit 1
85 esac
86 done