Skip to content

Commit 600e38b

Browse files
[llvm][Release] Add note about binaries to Github release description (llvm#69698)
This appears on the announcements e.g. https://discourse.llvm.org/t/llvm-17-0-3-released/74172 and it is important context. However a lot of folks see release pages e.g. https://github.com/llvm/llvm-project/releases/tag/llvmorg-17.0.3 first so it's good to include it there too.
1 parent 178270b commit 600e38b

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

llvm/utils/release/github-upload-release.py

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
import argparse
3232
import github
33-
33+
from textwrap import dedent
3434

3535
def create_release(repo, release, tag=None, name=None, message=None):
3636
if not tag:
@@ -40,7 +40,18 @@ def create_release(repo, release, tag=None, name=None, message=None):
4040
name = "LLVM {}".format(release)
4141

4242
if not message:
43-
message = "LLVM {} Release".format(release)
43+
message = dedent(
44+
"""\
45+
LLVM {} Release
46+
47+
# A note on binaries
48+
49+
Volunteers make binaries for the LLVM project, which will be uploaded
50+
when they have had time to test and build these binaries. They might
51+
not be available directly or not at all for each release. We suggest
52+
you use the binaries from your distribution or build your own if you
53+
rely on a specific platform or configuration."""
54+
).format(release)
4455

4556
prerelease = True if "rc" in release else False
4657

0 commit comments

Comments
 (0)