]> git.ipfire.org Git - thirdparty/systemd.git/blob - travis-ci/managers/debian.sh
Merge pull request #12510 from keszybz/test-directives
[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
19 python3-pyparsing
20 clang
21 perl)
22
23 function info() {
24 echo -e "\033[33;1m$1\033[0m"
25 }
26
27 set -e
28
29 source "$(dirname $0)/travis_wait.bash"
30
31 for phase in "${PHASES[@]}"; do
32 case $phase in
33 SETUP)
34 info "Setup phase"
35 info "Using Debian $DEBIAN_RELEASE"
36 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 -
37 info "Starting container $CONT_NAME"
38 $DOCKER_RUN -v $REPO_ROOT:/build:rw \
39 -w /build --privileged=true --name $CONT_NAME \
40 -dit --net=host debian-with-systemd/latest /bin/systemd
41 $DOCKER_EXEC bash -c "echo deb-src http://deb.debian.org/debian $DEBIAN_RELEASE main >>/etc/apt/sources.list"
42 $DOCKER_EXEC apt-get -y update
43 $DOCKER_EXEC apt-get -y build-dep systemd
44 $DOCKER_EXEC apt-get -y install "${ADDITIONAL_DEPS[@]}"
45 ;;
46 RUN|RUN_CLANG)
47 if [[ "$phase" = "RUN_CLANG" ]]; then
48 ENV_VARS="-e CC=clang -e CXX=clang++"
49 fi
50 docker exec $ENV_VARS -it $CONT_NAME meson --werror -Dtests=unsafe -Dslow-tests=true -Dsplit-usr=true -Dman=true build
51 $DOCKER_EXEC ninja -v -C build
52 docker exec -e "TRAVIS=$TRAVIS" -it $CONT_NAME ninja -C build test
53 ;;
54 RUN_ASAN|RUN_CLANG_ASAN)
55 if [[ "$phase" = "RUN_CLANG_ASAN" ]]; then
56 ENV_VARS="-e CC=clang -e CXX=clang++"
57 MESON_ARGS="-Db_lundef=false" # See https://github.com/mesonbuild/meson/issues/764
58 fi
59 docker exec $ENV_VARS -it $CONT_NAME meson --werror -Dtests=unsafe -Db_sanitize=address,undefined -Dsplit-usr=true $MESON_ARGS build
60 $DOCKER_EXEC ninja -v -C build
61
62 # Never remove halt_on_error from UBSAN_OPTIONS. See https://github.com/systemd/systemd/commit/2614d83aa06592aedb.
63 travis_wait docker exec --interactive=false \
64 -e UBSAN_OPTIONS=print_stacktrace=1:print_summary=1:halt_on_error=1 \
65 -e ASAN_OPTIONS=strict_string_checks=1:detect_stack_use_after_return=1:check_initialization_order=1:strict_init_order=1 \
66 -e "TRAVIS=$TRAVIS" \
67 -t $CONT_NAME \
68 meson test --timeout-multiplier=3 -C ./build/ --print-errorlogs
69 ;;
70 CLEANUP)
71 info "Cleanup phase"
72 docker stop $CONT_NAME
73 docker rm -f $CONT_NAME
74 ;;
75 *)
76 echo >&2 "Unknown phase '$phase'"
77 exit 1
78 esac
79 done