blob: 78d1f325fe76a6091a7e2b28b2034b6589fd8ecf (
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
47
48
49
50
51
52
53
54
|
#!/usr/bin/env bash
DISTRO="$1"
VERSION="$2"
BuildBase="$(cd "$(dirname "$0")" && cd .. && pwd)"
# This is temporary - not all of the package-builder images from the helper-images repo
# are available on Docker Hub. When everything falls under the "happy case" below this
# can be deleted in a future iteration. This is written in a weird way for portability,
# can't rely on bash 4.0+ to allow case fall-through with ;&
if cat <<HAPPY_CASE | grep "$DISTRO-$VERSION"
opensuse-15.1
fedora-29
debian-9
debian-8
fedora-30
opensuse-15.0
ubuntu-19.04
centos-7
fedora-31
ubuntu-16.04
ubuntu-18.04
ubuntu-19.10
debian-10
centos-8
ubuntu-1804
ubuntu-1904
ubuntu-1910
debian-stretch
debian-jessie
debian-buster
HAPPY_CASE
then
docker build -f "$BuildBase/clean-install.Dockerfile" -t "${DISTRO}_${VERSION}_dev" "$BuildBase/.." \
--build-arg "DISTRO=$DISTRO" --build-arg "VERSION=$VERSION" \
--build-arg EXTRA_CFLAGS="-DACLK_SSL_ALLOW_SELF_SIGNED"
else
case "$DISTRO-$VERSION" in
arch-current)
docker build -f "$BuildBase/clean-install-arch.Dockerfile" -t "${DISTRO}_${VERSION}_dev" "$BuildBase/.." \
--build-arg "DISTRO=$DISTRO" --build-arg "VERSION=$VERSION" \
--build-arg EXTRA_CFLAGS="-DACLK_SSL_ALLOW_SELF_SIGNED" # --no-cache
;;
arch-extras) # Add valgrind to the container
docker build -f "$BuildBase/clean-install-arch-extras.Dockerfile" -t "${DISTRO}_${VERSION}_dev" "$BuildBase/.." \
--build-arg "DISTRO=$DISTRO" --build-arg "VERSION=$VERSION" \
--build-arg EXTRA_CFLAGS="-DACLK_SSL_ALLOW_SELF_SIGNED" # --no-cache
;;
*)
echo "Unknown $DISTRO-$VERSION"
;;
esac
fi
|