[llvm-branch-commits] [llvm] d533a4b - [llvm][release] Link to .jsonl signatures for Windows x86_64 and ARM64 (#183053)
via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Sat Feb 28 00:43:50 PST 2026
Author: David Spickett
Date: 2026-02-25T11:36:36Z
New Revision: d533a4bab05182986da96316d3ca680c7234a7e9
URL: https://github.com/llvm/llvm-project/commit/d533a4bab05182986da96316d3ca680c7234a7e9
DIFF: https://github.com/llvm/llvm-project/commit/d533a4bab05182986da96316d3ca680c7234a7e9.diff
LOG: [llvm][release] Link to .jsonl signatures for Windows x86_64 and ARM64 (#183053)
Previously we linked to .sig files, which were created by the person who
built the release.
Now these are built in GitHub so they have .jsonl signature files
instead.
(cherry picked from commit cec03ae147c691fb3a48a043053f0def9f4a5a9a)
Added:
Modified:
llvm/utils/release/github-upload-release.py
Removed:
################################################################################
diff --git a/llvm/utils/release/github-upload-release.py b/llvm/utils/release/github-upload-release.py
index 2d8fb4531eb51..bf37bbb7b2bcd 100755
--- a/llvm/utils/release/github-upload-release.py
+++ b/llvm/utils/release/github-upload-release.py
@@ -102,9 +102,9 @@
"* Windows x64 (64-bit): [installer]({0}) ([signature]({1})), [archive]({2}) ([signature]({3}))",
(
"LLVM-{release}-win64.exe",
- "LLVM-{release}-win64.exe.sig",
+ "LLVM-{release}-win64.exe.jsonl",
"clang+llvm-{release}-x86_64-pc-windows-msvc.tar.xz",
- "clang+llvm-{release}-x86_64-pc-windows-msvc.tar.xz.sig",
+ "clang+llvm-{release}-x86_64-pc-windows-msvc.tar.xz.jsonl",
),
),
(
@@ -117,9 +117,9 @@
"* Windows on Arm (ARM64): [installer]({0}) ([signature]({1})), [archive]({2}) ([signature]({3}))",
(
"LLVM-{release}-woa64.exe",
- "LLVM-{release}-woa64.exe.sig",
+ "LLVM-{release}-woa64.exe.jsonl",
"clang+llvm-{release}-aarch64-pc-windows-msvc.tar.xz",
- "clang+llvm-{release}-aarch64-pc-windows-msvc.tar.xz.sig",
+ "clang+llvm-{release}-aarch64-pc-windows-msvc.tar.xz.jsonl",
),
),
),
More information about the llvm-branch-commits
mailing list