summaryrefslogtreecommitdiffstats
path: root/tools/clang-format-container.sh
blob: 69a68b1f0abc7ef0788307f21ed28d2d93e9d57a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/bin/bash

set -e

die() {
    echo "$@" >&2
    exit 1
}

DIR="$(realpath "$(dirname "$0")/../")"
cd "$DIR"

# The correct clang-format version is the one from the Fedora version used in our
# github action pipeline. Parse it from ".github/workflows/ci.yml".
FEDORA_VERSION="$(sed -n 's/^      image: fedora:\([0-9]\+\)$/\1/p' .github/workflows/ci.yml)"

test -n "$FEDORA_VERSION" || die "Could not detect the Fedora version in .github/workflows/ci.yml"

IMAGENAME="libnl-code-format-f$FEDORA_VERSION"

ARGS=( "$@" )

if ! podman image exists "$IMAGENAME" ; then
    echo "Building image \"$IMAGENAME\"..."
    podman build \
        --squash-all \
        --tag "$IMAGENAME" \
        -f <(cat <<EOF
FROM fedora:$FEDORA_VERSION
RUN dnf upgrade -y
RUN dnf install -y git /usr/bin/clang-format
EOF
)
fi

CMD=( ./tools/clang-format.sh "${ARGS[@]}" )

podman run \
    --rm \
    --name "libnm-code-format-f$FEDORA_VERSION" \
    -v "$DIR:/tmp/NetworkManager:Z" \
    -w /tmp/NetworkManager \
    -e "_LIBNL_CODE_FORMAT_CONTAINER=$IMAGENAME" \
    -ti \
    "$IMAGENAME" \
    "${CMD[@]}"