Skip to content

Commit 114ceef

Browse files
committed
get-distro-clang.sh: Update the list and add comment around bumping versions
Signed-off-by: Nathan Chancellor <nathan@kernel.org>
1 parent 71633c8 commit 114ceef

1 file changed

Lines changed: 40 additions & 7 deletions

File tree

distro-clang/get-distro-clang.sh

Lines changed: 40 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,52 @@ if [[ -z ${BINARY} ]]; then
1111
exit 1
1212
fi
1313

14+
# Useful links for bumping versions
15+
#
16+
# Debian:
17+
# * https://www.debian.org/releases/
18+
# * https://wiki.debian.org/LTS
19+
# * https://hub.docker.com/_/debian
20+
#
21+
# Fedora:
22+
# * https://fedoraproject.org/wiki/Releases
23+
# * https://fedoraproject.org/wiki/End_of_life
24+
# * https://hub.docker.com/_/fedora
25+
#
26+
# OpenSUSE:
27+
# * https://en.opensuse.org/openSUSE:Roadmap
28+
# * https://en.opensuse.org/Lifetime
29+
# * https://hub.docker.com/r/opensuse/leap
30+
#
31+
# Ubuntu:
32+
# * https://wiki.ubuntu.com/Releases
33+
# * https://hub.docker.com/_/ubuntu
34+
#
35+
# This list should only include versions that are actively being supported.
36+
#
37+
# Tags such as "latest", "stable", or "rolling" are preferred so that the list
38+
# does not have to be constantly updated. Old but supported releases like
39+
# Fedora or OpenSUSE are the exception.
1440
DOCKER_DISTROS=(
15-
archlinux/archlinux
41+
archlinux:latest
42+
43+
debian:oldoldstable-slim
1644
debian:oldstable-slim
1745
debian:stable-slim
1846
debian:testing-slim
1947
debian:unstable-slim
20-
fedora
48+
49+
fedora:34
50+
fedora:latest
2151
fedora:rawhide
22-
opensuse/leap
23-
opensuse/tumbleweed
24-
ubuntu:18.04
25-
ubuntu:20.04
26-
ubuntu
52+
53+
opensuse/leap:15.2
54+
opensuse/leap:latest
55+
opensuse/tumbleweed:latest
56+
57+
ubuntu:bionic
58+
ubuntu:latest
59+
ubuntu:hirsute
2760
ubuntu:rolling
2861
ubuntu:devel
2962
)

0 commit comments

Comments
 (0)