]> git.ipfire.org Git - thirdparty/systemd.git/blame - travis-ci/managers/fedora.sh
travis: build and run fuzzers against crash reproducers
[thirdparty/systemd.git] / travis-ci / managers / fedora.sh
CommitLineData
a9145fc4
FS
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:
0d589dfc 7# dnf install docker
a9145fc4
FS
8# systemctl start docker
9# export CONT_NAME="my-fancy-container"
10# travis-ci/managers/fedora.sh SETUP RUN CLEANUP
11
12PHASES=(${@:-SETUP RUN CLEANUP})
13FEDORA_RELEASE="${FEDORA_RELEASE:-rawhide}"
14CONT_NAME="${CONT_NAME:-fedora-$FEDORA_RELEASE-$RANDOM}"
15DOCKER_EXEC="${DOCKER_EXEC:-docker exec -it $CONT_NAME}"
16DOCKER_RUN="${DOCKER_RUN:-docker run}"
17REPO_ROOT="${REPO_ROOT:-$PWD}"
059f3192 18ADDITIONAL_DEPS=(dnf-plugins-core python2 iputils hostname libasan)
a9145fc4
FS
19
20function info() {
21 echo -e "\033[33;1m$1\033[0m"
22}
23
24set -e
25
26for phase in "${PHASES[@]}"; do
27 case $phase in
28 SETUP)
29 info "Setup phase"
30 info "Using Fedora $FEDORA_RELEASE"
a9145fc4
FS
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 \
a9145fc4
FS
35 -w /build --privileged=true --name $CONT_NAME \
36 -dit --net=host fedora:$FEDORA_RELEASE /sbin/init
532a92fb
FS
37 # Beautiful workaround for Fedora's version of Docker
38 sleep 1
a9145fc4
FS
39 $DOCKER_EXEC dnf makecache
40 # Install necessary build/test requirements
532a92fb 41 $DOCKER_EXEC dnf -y --exclude selinux-policy\* upgrade
a9145fc4
FS
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
b9abc935 48 $DOCKER_EXEC meson -Dslow-tests=true build
a9145fc4 49 $DOCKER_EXEC ninja -C build
9608a594 50 $DOCKER_EXEC sh -c "printf '#!/bin/sh\necho The test is failing for unknown reason, skipping; exit 77' >/build/build/test-capability"
a9145fc4
FS
51 # Run 'make check'
52 $DOCKER_EXEC ninja -C build test
53 ;;
54 CLEANUP)
55 info "Cleanup phase"
56 docker stop $CONT_NAME
57 docker rm -f $CONT_NAME
58 ;;
59 *)
60 echo >&2 "Unknown phase '$phase'"
61 exit 1
62 esac
63done