]> git.ipfire.org Git - thirdparty/systemd.git/blob - travis-ci/managers/fedora.sh
travis: UBSan should be every C programmer's friend so let's build systemd with it too
[thirdparty/systemd.git] / travis-ci / managers / fedora.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/fedora.sh SETUP RUN CLEANUP
11
12 PHASES=(${@:-SETUP RUN RUN_ASAN CLEANUP})
13 FEDORA_RELEASE="${FEDORA_RELEASE:-rawhide}"
14 CONT_NAME="${CONT_NAME:-fedora-$FEDORA_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=(dnf-plugins-core python2 iputils hostname libasan python3-pyparsing python3-evdev libubsan)
19
20 function info() {
21 echo -e "\033[33;1m$1\033[0m"
22 }
23
24 set -e
25
26 for phase in "${PHASES[@]}"; do
27 case $phase in
28 SETUP)
29 info "Setup phase"
30 info "Using Fedora $FEDORA_RELEASE"
31 # Pull a Docker image and start a new container
32 docker pull fedora:$FEDORA_RELEASE
33 info "Starting container $CONT_NAME"
34 $DOCKER_RUN -v $REPO_ROOT:/build:rw \
35 -w /build --privileged=true --name $CONT_NAME \
36 -dit --net=host fedora:$FEDORA_RELEASE /sbin/init
37 # Beautiful workaround for Fedora's version of Docker
38 sleep 1
39 $DOCKER_EXEC dnf makecache
40 # Install necessary build/test requirements
41 $DOCKER_EXEC dnf -y --exclude selinux-policy\* upgrade
42 $DOCKER_EXEC dnf -y install "${ADDITIONAL_DEPS[@]}"
43 $DOCKER_EXEC dnf -y builddep systemd
44 ;;
45 RUN)
46 info "Run phase"
47 # Build systemd
48 $DOCKER_EXEC meson -Dslow-tests=true build
49 $DOCKER_EXEC ninja -v -C build
50 $DOCKER_EXEC ninja -C build test
51 ;;
52 RUN_ASAN)
53 $DOCKER_EXEC git clean -dxff
54 $DOCKER_EXEC meson -Db_sanitize=address,undefined build
55 $DOCKER_EXEC ninja -v -C build
56
57 # Never remove halt_on_error from UBSAN_OPTIONS. See https://github.com/systemd/systemd/commit/2614d83aa06592aedb.
58 $DOCKER_EXEC sh -c "UBSAN_OPTIONS=print_stacktrace=1:print_summary=1:halt_on_error=1 ninja -C build test"
59 ;;
60 CLEANUP)
61 info "Cleanup phase"
62 docker stop $CONT_NAME
63 docker rm -f $CONT_NAME
64 ;;
65 *)
66 echo >&2 "Unknown phase '$phase'"
67 exit 1
68 esac
69 done