]> git.ipfire.org Git - thirdparty/systemd.git/blob - travis-ci/managers/debian.sh
Merge pull request #12519 from keszybz/man-on-demand
[thirdparty/systemd.git] / travis-ci / managers / debian.sh
1 #!/bin/bash
2
3 # Run this script from the root of the systemd's git repository
4 # or set REPO_ROOT to a correct path.
5 #
6 # Example execution on Fedora:
7 # dnf install docker
8 # systemctl start docker
9 # export CONT_NAME="my-fancy-container"
10 # travis-ci/managers/debian.sh SETUP RUN CLEANUP
11
12 PHASES=(${@:-SETUP RUN RUN_ASAN CLEANUP})
13 DEBIAN_RELEASE="${DEBIAN_RELEASE:-testing}"
14 CONT_NAME="${CONT_NAME:-debian-$DEBIAN_RELEASE-$RANDOM}"
15 DOCKER_EXEC="${DOCKER_EXEC:-docker exec -it $CONT_NAME}"
16 DOCKER_RUN="${DOCKER_RUN:-docker run}"
17 REPO_ROOT="${REPO_ROOT:-$PWD}"
18 ADDITIONAL_DEPS=(python3-libevdev python3-pyparsing clang)
19
20 function info() {
21 echo -e "\033[33;1m$1\033[0m"
22 }
23
24 set -e
25
26 source "$(dirname $0)/travis_wait.bash"
27
28 for phase in "${PHASES[@]}"; do
29 case $phase in
30 SETUP)
31 info "Setup phase"
32 info "Using Debian $DEBIAN_RELEASE"
33 printf "FROM debian:$DEBIAN_RELEASE\nRUN bash -c 'apt-get -y update && apt-get install -y systemd'\n" | docker build -t debian-with-systemd/latest -
34 info "Starting container $CONT_NAME"
35 $DOCKER_RUN -v $REPO_ROOT:/build:rw \
36 -w /build --privileged=true --name $CONT_NAME \
37 -dit --net=host debian-with-systemd/latest /bin/systemd
38 $DOCKER_EXEC bash -c "echo deb-src http://deb.debian.org/debian $DEBIAN_RELEASE main >>/etc/apt/sources.list"
39 $DOCKER_EXEC apt-get -y update
40 $DOCKER_EXEC apt-get -y build-dep systemd
41 $DOCKER_EXEC apt-get -y install "${ADDITIONAL_DEPS[@]}"
42 ;;
43 RUN|RUN_CLANG)
44 if [[ "$phase" = "RUN_CLANG" ]]; then
45 ENV_VARS="-e CC=clang -e CXX=clang++"
46 fi
47 docker exec $ENV_VARS -it $CONT_NAME meson --werror -Dtests=unsafe -Dslow-tests=true -Dsplit-usr=true -Dman=true build
48 $DOCKER_EXEC ninja -v -C build
49 docker exec -e "TRAVIS=$TRAVIS" -it $CONT_NAME ninja -C build test
50 $DOCKER_EXEC tools/check-directives.sh
51 ;;
52 RUN_ASAN|RUN_CLANG_ASAN)
53 if [[ "$phase" = "RUN_CLANG_ASAN" ]]; then
54 ENV_VARS="-e CC=clang -e CXX=clang++"
55 MESON_ARGS="-Db_lundef=false" # See https://github.com/mesonbuild/meson/issues/764
56 fi
57 docker exec $ENV_VARS -it $CONT_NAME meson --werror -Dtests=unsafe -Db_sanitize=address,undefined -Dsplit-usr=true $MESON_ARGS build
58 $DOCKER_EXEC ninja -v -C build
59
60 # Never remove halt_on_error from UBSAN_OPTIONS. See https://github.com/systemd/systemd/commit/2614d83aa06592aedb.
61 travis_wait docker exec --interactive=false \
62 -e UBSAN_OPTIONS=print_stacktrace=1:print_summary=1:halt_on_error=1 \
63 -e ASAN_OPTIONS=strict_string_checks=1:detect_stack_use_after_return=1:check_initialization_order=1:strict_init_order=1 \
64 -e "TRAVIS=$TRAVIS" \
65 -t $CONT_NAME \
66 meson test --timeout-multiplier=3 -C ./build/ --print-errorlogs
67 ;;
68 CLEANUP)
69 info "Cleanup phase"
70 docker stop $CONT_NAME
71 docker rm -f $CONT_NAME
72 ;;
73 *)
74 echo >&2 "Unknown phase '$phase'"
75 exit 1
76 esac
77 done