Re: Prebuilt LLVM 18.1.5 uploaded

From: Nathan Chancellor
Date: Thu May 02 2024 - 12:09:22 EST


On Thu, May 02, 2024 at 04:33:32PM +0100, Tomasz Kłoczko wrote:
> On Thu, 2 May 2024 at 16:25, Nathan Chancellor <nathan@xxxxxxxxxx> wrote:
>
> > Hi all,
> >
> > I have built and uploaded LLVM 18.1.5 to
> > https://mirrors.edge.kernel.org/pub/tools/llvm/.
> >
>
> Is it known when dist tar balls will be uploaded as gh assets to
> https://github.com/llvm/llvm-project/releases/tag/llvmorg-18.1.5 ? 🤔

Not sure. It seems like there was a 24 hour delay for 18.1.4 if I am
reading GitHub's release JSON correctly:

$ gh -R llvm/llvm-project release view --json assets,createdAt,tagName llvmorg-18.1.4 | python3 -c "import json, sys

llvm_json = json.load(sys.stdin)

llvm_tag_date = llvm_json['createdAt']
llvm_tag_name = llvm_json['tagName']

print(f'\n{llvm_tag_name} was made at {llvm_tag_date}\n')

for asset in llvm_json['assets']:
if (asset_name := asset['name']).endswith('.src.tar.xz'):
asset_upload_date = asset['createdAt']
print(f'{asset_name} was uploaded at {asset_upload_date}')"

llvmorg-18.1.4 was made at 2024-04-17T00:26:56Z

bolt-18.1.4.src.tar.xz was uploaded at 2024-04-18T00:13:08Z
clang-18.1.4.src.tar.xz was uploaded at 2024-04-18T00:13:09Z
clang-tools-extra-18.1.4.src.tar.xz was uploaded at 2024-04-18T00:13:10Z
cmake-18.1.4.src.tar.xz was uploaded at 2024-04-18T00:13:11Z
compiler-rt-18.1.4.src.tar.xz was uploaded at 2024-04-18T00:13:12Z
flang-18.1.4.src.tar.xz was uploaded at 2024-04-18T00:13:12Z
libclc-18.1.4.src.tar.xz was uploaded at 2024-04-18T00:13:13Z
libcxx-18.1.4.src.tar.xz was uploaded at 2024-04-18T00:13:14Z
libcxxabi-18.1.4.src.tar.xz was uploaded at 2024-04-18T00:13:15Z
libunwind-18.1.4.src.tar.xz was uploaded at 2024-04-18T00:13:16Z
lld-18.1.4.src.tar.xz was uploaded at 2024-04-18T00:13:16Z
lldb-18.1.4.src.tar.xz was uploaded at 2024-04-18T00:13:17Z
llvm-18.1.4.src.tar.xz was uploaded at 2024-04-18T00:13:18Z
llvm-project-18.1.4.src.tar.xz was uploaded at 2024-04-18T00:13:20Z
mlir-18.1.4.src.tar.xz was uploaded at 2024-04-18T00:13:24Z
openmp-18.1.4.src.tar.xz was uploaded at 2024-04-18T00:13:25Z
polly-18.1.4.src.tar.xz was uploaded at 2024-04-18T00:13:26Z
runtimes-18.1.4.src.tar.xz was uploaded at 2024-04-18T00:13:26Z
test-suite-18.1.4.src.tar.xz was uploaded at 2024-04-18T00:13:27Z
third-party-18.1.4.src.tar.xz was uploaded at 2024-04-18T00:13:32Z

Cheers,
Nathan