Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[llvm][Release] Add note about binaries to Github release description #69698

Merged
merged 1 commit into from
Oct 23, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
15 changes: 13 additions & 2 deletions llvm/utils/release/github-upload-release.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

import argparse
import github

from textwrap import dedent

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

if not message:
message = "LLVM {} Release".format(release)
message = dedent(
"""\
LLVM {} Release

# A note on binaries

Volunteers make binaries for the LLVM project, which will be uploaded
when they have had time to test and build these binaries. They might
not be available directly or not at all for each release. We suggest
you use the binaries from your distribution or build your own if you
rely on a specific platform or configuration."""
).format(release)

prerelease = True if "rc" in release else False

Expand Down