[llvm] Release fix (PR #200734)
Tom Stellard via llvm-commits
llvm-commits at lists.llvm.org
Wed Jun 3 21:17:20 PDT 2026
https://github.com/tstellar updated https://github.com/llvm/llvm-project/pull/200734
>From 7575d23261e0d1dac47411987429f4239dda8193 Mon Sep 17 00:00:00 2001
From: Tom Stellard <tstellar at redhat.com>
Date: Sun, 31 May 2026 23:35:52 -0700
Subject: [PATCH 01/20] workflows/upload-release-artifact: Fix typo introduced
in 01cfbaabef6cb59a1a6eb870bf5f48ac2e747118
---
.github/workflows/upload-release-artifact/action.yml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/upload-release-artifact/action.yml b/.github/workflows/upload-release-artifact/action.yml
index cc1274ff42f11..9bddb961c76bd 100644
--- a/.github/workflows/upload-release-artifact/action.yml
+++ b/.github/workflows/upload-release-artifact/action.yml
@@ -105,8 +105,8 @@ runs:
uses: ./.github/workflows/require-team-membership
with:
team-slug: llvm-release-managers
- LLVM_TOKEN_GENERATOR_CLIENT_ID: ${{ secrets.LLVM_TOKEN_GENERATOR_CLIENT_ID }}
- LLVM_TOKEN_GENERATOR_PRIVATE_KEY: ${{ secrets.LLVM_TOKEN_GENERATOR_PRIVATE_KEY }}
+ LLVM_TOKEN_GENERATOR_CLIENT_ID: ${{ inputs.LLVM_TOKEN_GENERATOR_CLIENT_ID }}
+ LLVM_TOKEN_GENERATOR_PRIVATE_KEY: ${{ inputs.LLVM_TOKEN_GENERATOR_PRIVATE_KEY }}
- name: Upload Release
shell: bash
>From 3608a8a7b1a0764adce094c51dd99338d8b91d8b Mon Sep 17 00:00:00 2001
From: Tom Stellard <tstellar at redhat.com>
Date: Sun, 31 May 2026 23:58:41 -0700
Subject: [PATCH 02/20] build_llvm_release.bat: Disable pre-compiled headers
This was enabled in b82c7fc65229c8b2b6a964f023f6ec59b3cf9210 and is
causing the release build to fail. I think it's related to this warning
in the builds:
<built-in>(2,9): warning: definition of macro 'LLVM_BUILD_STATIC' does not match definition in precompiled header [-Wclang-cl-pch]
2 | #define LLVM_BUILD_STATIC 1
| ^
---
llvm/utils/release/build_llvm_release.bat | 1 +
1 file changed, 1 insertion(+)
diff --git a/llvm/utils/release/build_llvm_release.bat b/llvm/utils/release/build_llvm_release.bat
index 0f6dbb36ad784..eaf153956271f 100644
--- a/llvm/utils/release/build_llvm_release.bat
+++ b/llvm/utils/release/build_llvm_release.bat
@@ -183,6 +183,7 @@ set common_cmake_flags=^
-DCLANG_ENABLE_LIBXML2=OFF ^
-DLLVM_ENABLE_ZLIB=FORCE_ON ^
-DLLVM_ENABLE_ZSTD=FORCE_ON ^
+ -DCMAKE_DISABLE_PRECOMPILE_HEADERS=ON ^
-DCMAKE_C_FLAGS="%common_compiler_flags%" ^
-DCMAKE_CXX_FLAGS="%common_compiler_flags%" ^
-DLLVM_ENABLE_RPMALLOC=ON ^
>From 5297c89d3c3566dd14ec7638ec52f165a41a925f Mon Sep 17 00:00:00 2001
From: Tom Stellard <tstellar at redhat.com>
Date: Sun, 31 May 2026 23:59:32 -0700
Subject: [PATCH 03/20] workflows-release-binaries-all.yml: Run job when
build_llvm_release.bat changes
---
.github/workflows/release-binaries-all.yml | 1 +
1 file changed, 1 insertion(+)
diff --git a/.github/workflows/release-binaries-all.yml b/.github/workflows/release-binaries-all.yml
index 3687de77e0156..1fa90ce4e3635 100644
--- a/.github/workflows/release-binaries-all.yml
+++ b/.github/workflows/release-binaries-all.yml
@@ -49,6 +49,7 @@ on:
- closed
paths:
- '.github/workflows/release-binaries-all.yml'
+ - 'llvm/utils/release/build_llvm_release.bat'
- '.github/workflows/release-binaries.yml'
- '.github/workflows/release-binaries-setup-stage/*'
- '.github/workflows/release-binaries-save-stage/*'
>From 4fbe4fe247c55eba29e580d65c027106be4c9161 Mon Sep 17 00:00:00 2001
From: Tom Stellard <tstellar at redhat.com>
Date: Mon, 1 Jun 2026 16:13:51 -0700
Subject: [PATCH 04/20] Revert "Add Zstandard to Windows release build
(#186772)"
This reverts commit 60f478a1599fa885f8a9826fad2d540bb3dc3fc4.
---
llvm/utils/release/build_llvm_release.bat | 33 +----------------------
1 file changed, 1 insertion(+), 32 deletions(-)
diff --git a/llvm/utils/release/build_llvm_release.bat b/llvm/utils/release/build_llvm_release.bat
index eaf153956271f..d901c37f69d42 100644
--- a/llvm/utils/release/build_llvm_release.bat
+++ b/llvm/utils/release/build_llvm_release.bat
@@ -161,12 +161,6 @@ curl -LO https://github.com/madler/zlib/releases/download/v%zlib_version%/zlib-%
call :verify_checksum zlib-%zlib_version%.tar.gz sha256 bb329a0a2cd0274d05519d61c667c062e06990d72e125ee2dfa8de64f0119d16 || exit /b 1
tar zxf zlib-%zlib_version%.tar.gz || exit /b 1
-set zstd_version=1.5.7
-curl -LO https://github.com/facebook/zstd/releases/download/v%zstd_version%/zstd-%zstd_version%.tar.gz || exit /b 1
-call :verify_checksum zstd-%zstd_version%.tar.gz sha256 eb33e51f49a15e023950cd7825ca74a4a2b43db8354825ac24fc1b7ee09e6fa3 || exit /b 1
-REM 'tests' directory excluded because of symlinks.
-tar zxf zstd-%zstd_version%.tar.gz --exclude "tests/*" || exit /b 1
-
REM Setting CMAKE_CL_SHOWINCLUDES_PREFIX to work around PR27226.
REM Common flags for all builds.
set common_compiler_flags=-DLIBXML_STATIC
@@ -182,7 +176,6 @@ set common_cmake_flags=^
-DLLVM_ENABLE_LIBXML2=FORCE_ON ^
-DCLANG_ENABLE_LIBXML2=OFF ^
-DLLVM_ENABLE_ZLIB=FORCE_ON ^
- -DLLVM_ENABLE_ZSTD=FORCE_ON ^
-DCMAKE_DISABLE_PRECOMPILE_HEADERS=ON ^
-DCMAKE_C_FLAGS="%common_compiler_flags%" ^
-DCMAKE_CXX_FLAGS="%common_compiler_flags%" ^
@@ -235,7 +228,6 @@ mkdir build32_stage0
cd build32_stage0
call :do_build_libxml || exit /b 1
call :do_build_zlib || exit /b 1
-call :do_build_zstd || exit /b 1
REM Stage0 binaries directory; used in stage1.
set "stage0_bin_dir=%build_dir%/build32_stage0/bin"
@@ -246,10 +238,7 @@ set cmake_flags=^
-DLIBXML2_INCLUDE_DIR=%libxmldir%/include/libxml2 ^
-DLIBXML2_LIBRARIES=%libxmldir%/lib/libxml2s.lib ^
-DZLIB_INCLUDE_DIR=%zlibdir%/include ^
- -DZLIB_LIBRARY=%zlibdir%/lib/zs.lib ^
- -DZLIB_LIBRARY_RELEASE=%zlibdir%/lib/zs.lib ^
- -Dzstd_INCLUDE_DIR=%zstddir%/include ^
- -Dzstd_LIBRARY=%zstddir%/lib/zstd_static.lib
+ -DZLIB_LIBRARY=%zlibdir%/lib/zs.lib
cmake -GNinja %cmake_flags% %llvm_src%\llvm || exit /b 1
ninja || ninja || ninja || exit /b 1
@@ -303,7 +292,6 @@ mkdir build_%arch%_stage0
cd build_%arch%_stage0
call :do_build_libxml || exit /b 1
call :do_build_zlib || exit /b 1
-call :do_build_zstd || exit /b 1
REM Stage0 binaries directory; used in stage1.
set "stage0_bin_dir=%build_dir%/build_%arch%_stage0/bin"
@@ -314,9 +302,6 @@ set cmake_flags=^
-DLIBXML2_LIBRARIES=%libxmldir%/lib/libxml2s.lib ^
-DZLIB_INCLUDE_DIR=%zlibdir%/include ^
-DZLIB_LIBRARY=%zlibdir%/lib/zs.lib ^
- -DZLIB_LIBRARY_RELEASE=%zlibdir%/lib/zs.lib ^
- -Dzstd_INCLUDE_DIR=%zstddir%/include ^
- -Dzstd_LIBRARY=%zstddir%/lib/zstd_static.lib ^
-DCLANG_DEFAULT_LINKER=lld
if "%arch%"=="arm64" (
set cmake_flags=%cmake_flags% ^
@@ -471,22 +456,6 @@ set "zlibdir=%zlibdir:\=/%"
cd ..
exit /b 0
-::==============================================================================
-:: Build zstd.
-::==============================================================================
-:do_build_zstd
-mkdir zstdbuild
-cd zstdbuild
-cmake -GNinja -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=install ^
- -DZSTD_BUILD_PROGRAMS=OFF -DZSTD_BUILD_TESTS=OFF -DZSTD_BUILD_STATIC=ON ^
- -DZSTD_BUILD_SHARED=OFF -DCMAKE_MSVC_RUNTIME_LIBRARY=MultiThreaded ^
- ../../zstd-%zstd_version%/build/cmake || exit /b 1
-ninja install || exit /b 1
-set zstddir=%cd%\install
-set "zstddir=%zstddir:\=/%"
-cd ..
-exit /b 0
-
::==============================================================================
:: Generate a PGO profile.
::==============================================================================
>From dcc0274c0fae7647d38a4b202434ca34277ae3b5 Mon Sep 17 00:00:00 2001
From: Tom Stellard <tstellar at redhat.com>
Date: Mon, 1 Jun 2026 17:28:30 -0700
Subject: [PATCH 05/20] DLL fix
---
llvm/utils/release/build_llvm_release.bat | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/llvm/utils/release/build_llvm_release.bat b/llvm/utils/release/build_llvm_release.bat
index d901c37f69d42..6cce184d3c625 100644
--- a/llvm/utils/release/build_llvm_release.bat
+++ b/llvm/utils/release/build_llvm_release.bat
@@ -448,7 +448,7 @@ mkdir zlibbuild
cd zlibbuild
cmake -GNinja -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=install ^
-DZLIB_BUILD_TESTING=OFF -DZLIB_BUILD_SHARED=OFF -DZLIB_BUILD_STATIC=ON ^
- -DZLIB_INSTALL=ON -DCMAKE_MSVC_RUNTIME_LIBRARY=MultiThreaded ^
+ -DZLIB_INSTALL=ON -DCMAKE_MSVC_RUNTIME_LIBRARY=MultiThreadedDLL ^
../../zlib-%zlib_version% || exit /b 1
ninja install || exit /b 1
set zlibdir=%cd%\install
>From 147f5696f7bd63aa74738b986c9bf0fe237824fe Mon Sep 17 00:00:00 2001
From: Tom Stellard <tstellar at redhat.com>
Date: Mon, 1 Jun 2026 22:09:33 -0700
Subject: [PATCH 06/20] Test 14bcb1a0095408cbf04bad4cea984eb9f448de23
---
llvm/utils/release/build_llvm_release.bat | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/llvm/utils/release/build_llvm_release.bat b/llvm/utils/release/build_llvm_release.bat
index 6cce184d3c625..f00f8e272c993 100644
--- a/llvm/utils/release/build_llvm_release.bat
+++ b/llvm/utils/release/build_llvm_release.bat
@@ -140,7 +140,7 @@ if "%skip-checkout%" == "true" (
set llvm_src=%~dp0..\..\..
) else (
echo Checking out %revision%
- curl -L https://github.com/llvm/llvm-project/archive/%revision%.zip -o src.zip || exit /b 1
+ curl -L https://github.com/llvm/llvm-project/archive/14bcb1a0095408cbf04bad4cea984eb9f448de23.zip -o src.zip || exit /b 1
7z x src.zip || exit /b 1
mv llvm-project-* llvm-project || exit /b 1
set llvm_src=%build_dir%\llvm-project
>From 1c904c59ffb69461e86bdde2642ff60ca027ca92 Mon Sep 17 00:00:00 2001
From: Tom Stellard <tstellar at redhat.com>
Date: Mon, 1 Jun 2026 22:20:55 -0700
Subject: [PATCH 07/20] Debug
---
.github/workflows/release-binaries-all.yml | 4 ----
1 file changed, 4 deletions(-)
diff --git a/.github/workflows/release-binaries-all.yml b/.github/workflows/release-binaries-all.yml
index 1fa90ce4e3635..8c3dad734fd4a 100644
--- a/.github/workflows/release-binaries-all.yml
+++ b/.github/workflows/release-binaries-all.yml
@@ -101,11 +101,7 @@ jobs:
# We use ubuntu-22.04 rather than the latest version to make the built
# binaries more portable (eg functional aginast older glibc).
runs-on:
- - ubuntu-22.04
- - ubuntu-22.04-arm
- - macos-14
- windows-2022
- - windows-11-arm
uses: ./.github/workflows/release-binaries.yml
with:
>From 2c396fc491d84e1e4effb33f0c32bd8b3aa20267 Mon Sep 17 00:00:00 2001
From: Tom Stellard <tstellar at redhat.com>
Date: Mon, 1 Jun 2026 22:46:16 -0700
Subject: [PATCH 08/20] Revert "Add zlib to Windows release build (#186630)"
This reverts commit 63ebca6a50ab32c80eb87aa2a4ce93661b686343.
---
llvm/utils/release/build_llvm_release.bat | 34 +----------------------
1 file changed, 1 insertion(+), 33 deletions(-)
diff --git a/llvm/utils/release/build_llvm_release.bat b/llvm/utils/release/build_llvm_release.bat
index f00f8e272c993..142c0ddfcb80f 100644
--- a/llvm/utils/release/build_llvm_release.bat
+++ b/llvm/utils/release/build_llvm_release.bat
@@ -152,15 +152,6 @@ call :verify_checksum libxml2-v%libxml_version%.tar.gz sha256 98bfa7a9a5e2a75638
REM 'test' directory excluded because of symlinks.
tar zxf libxml2-v%libxml_version%.tar.gz --exclude "test/*" || exit /b 1
-REM FIXME: It would be preferrable to use zlib-ng here since it is better
-REM maintained and performs better than zlib, but lld tests currently
-REM assume the original zlib is used. They need to be fixed first:
-REM https://github.com/llvm/llvm-project/pull/186630#discussion_r2939953952
-set zlib_version=1.3.2
-curl -LO https://github.com/madler/zlib/releases/download/v%zlib_version%/zlib-%zlib_version%.tar.gz || exit /b 1
-call :verify_checksum zlib-%zlib_version%.tar.gz sha256 bb329a0a2cd0274d05519d61c667c062e06990d72e125ee2dfa8de64f0119d16 || exit /b 1
-tar zxf zlib-%zlib_version%.tar.gz || exit /b 1
-
REM Setting CMAKE_CL_SHOWINCLUDES_PREFIX to work around PR27226.
REM Common flags for all builds.
set common_compiler_flags=-DLIBXML_STATIC
@@ -175,7 +166,6 @@ set common_cmake_flags=^
-DCMAKE_CL_SHOWINCLUDES_PREFIX="Note: including file: " ^
-DLLVM_ENABLE_LIBXML2=FORCE_ON ^
-DCLANG_ENABLE_LIBXML2=OFF ^
- -DLLVM_ENABLE_ZLIB=FORCE_ON ^
-DCMAKE_DISABLE_PRECOMPILE_HEADERS=ON ^
-DCMAKE_C_FLAGS="%common_compiler_flags%" ^
-DCMAKE_CXX_FLAGS="%common_compiler_flags%" ^
@@ -227,7 +217,6 @@ call "%vsdevcmd%" -arch=x86 || exit /b 1
mkdir build32_stage0
cd build32_stage0
call :do_build_libxml || exit /b 1
-call :do_build_zlib || exit /b 1
REM Stage0 binaries directory; used in stage1.
set "stage0_bin_dir=%build_dir%/build32_stage0/bin"
@@ -236,9 +225,7 @@ set cmake_flags=^
-DLLVM_ENABLE_RPMALLOC=OFF ^
-DPython3_ROOT_DIR=%PYTHONHOME% ^
-DLIBXML2_INCLUDE_DIR=%libxmldir%/include/libxml2 ^
- -DLIBXML2_LIBRARIES=%libxmldir%/lib/libxml2s.lib ^
- -DZLIB_INCLUDE_DIR=%zlibdir%/include ^
- -DZLIB_LIBRARY=%zlibdir%/lib/zs.lib
+ -DLIBXML2_LIBRARIES=%libxmldir%/lib/libxml2s.lib
cmake -GNinja %cmake_flags% %llvm_src%\llvm || exit /b 1
ninja || ninja || ninja || exit /b 1
@@ -291,7 +278,6 @@ call "%vsdevcmd%" -arch=%arch% || exit /b 1
mkdir build_%arch%_stage0
cd build_%arch%_stage0
call :do_build_libxml || exit /b 1
-call :do_build_zlib || exit /b 1
REM Stage0 binaries directory; used in stage1.
set "stage0_bin_dir=%build_dir%/build_%arch%_stage0/bin"
@@ -300,8 +286,6 @@ set cmake_flags=^
-DPython3_ROOT_DIR=%PYTHONHOME% ^
-DLIBXML2_INCLUDE_DIR=%libxmldir%/include/libxml2 ^
-DLIBXML2_LIBRARIES=%libxmldir%/lib/libxml2s.lib ^
- -DZLIB_INCLUDE_DIR=%zlibdir%/include ^
- -DZLIB_LIBRARY=%zlibdir%/lib/zs.lib ^
-DCLANG_DEFAULT_LINKER=lld
if "%arch%"=="arm64" (
set cmake_flags=%cmake_flags% ^
@@ -440,22 +424,6 @@ set "libxmldir=%libxmldir:\=/%"
cd ..
exit /b 0
-::==============================================================================
-:: Build zlib.
-::==============================================================================
-:do_build_zlib
-mkdir zlibbuild
-cd zlibbuild
-cmake -GNinja -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=install ^
- -DZLIB_BUILD_TESTING=OFF -DZLIB_BUILD_SHARED=OFF -DZLIB_BUILD_STATIC=ON ^
- -DZLIB_INSTALL=ON -DCMAKE_MSVC_RUNTIME_LIBRARY=MultiThreadedDLL ^
- ../../zlib-%zlib_version% || exit /b 1
-ninja install || exit /b 1
-set zlibdir=%cd%\install
-set "zlibdir=%zlibdir:\=/%"
-cd ..
-exit /b 0
-
::==============================================================================
:: Generate a PGO profile.
::==============================================================================
>From 247bb5f62b7b3300f0798317b1e9d7f52bd97794 Mon Sep 17 00:00:00 2001
From: Tom Stellard <tstellar at redhat.com>
Date: Tue, 2 Jun 2026 08:32:19 -0700
Subject: [PATCH 09/20] Revert "Test 14bcb1a0095408cbf04bad4cea984eb9f448de23"
This reverts commit 147f5696f7bd63aa74738b986c9bf0fe237824fe.
---
llvm/utils/release/build_llvm_release.bat | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/llvm/utils/release/build_llvm_release.bat b/llvm/utils/release/build_llvm_release.bat
index 142c0ddfcb80f..efedf9a7ec2bd 100644
--- a/llvm/utils/release/build_llvm_release.bat
+++ b/llvm/utils/release/build_llvm_release.bat
@@ -140,7 +140,7 @@ if "%skip-checkout%" == "true" (
set llvm_src=%~dp0..\..\..
) else (
echo Checking out %revision%
- curl -L https://github.com/llvm/llvm-project/archive/14bcb1a0095408cbf04bad4cea984eb9f448de23.zip -o src.zip || exit /b 1
+ curl -L https://github.com/llvm/llvm-project/archive/%revision%.zip -o src.zip || exit /b 1
7z x src.zip || exit /b 1
mv llvm-project-* llvm-project || exit /b 1
set llvm_src=%build_dir%\llvm-project
>From 1e8f6c4ed3ad1f57bb85fbbdb548ae2ef3f69630 Mon Sep 17 00:00:00 2001
From: Tom Stellard <tstellar at redhat.com>
Date: Tue, 2 Jun 2026 08:33:11 -0700
Subject: [PATCH 10/20] Test llvmorg-23-init
---
.github/workflows/release-binaries.yml | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/release-binaries.yml b/.github/workflows/release-binaries.yml
index b9db22ff8941b..9bc489682dfcb 100644
--- a/.github/workflows/release-binaries.yml
+++ b/.github/workflows/release-binaries.yml
@@ -245,7 +245,8 @@ jobs:
uses: actions/checkout at de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- ref: ${{ needs.prepare.outputs.ref }}
+ #ref: ${{ needs.prepare.outputs.ref }}
+ ref: llvmorg-23-init
- name: Set Build Prefix
id: setup-stage
>From 516d50e129ace741c748cd8b42d688af86707eb8 Mon Sep 17 00:00:00 2001
From: Tom Stellard <tstellar at redhat.com>
Date: Tue, 2 Jun 2026 12:26:24 -0700
Subject: [PATCH 11/20] Test 7fa2752a286bb86945b929356c1dc7d429bcbcdb
---
.github/workflows/release-binaries.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/release-binaries.yml b/.github/workflows/release-binaries.yml
index 9bc489682dfcb..69be5fa916acb 100644
--- a/.github/workflows/release-binaries.yml
+++ b/.github/workflows/release-binaries.yml
@@ -246,7 +246,7 @@ jobs:
with:
persist-credentials: false
#ref: ${{ needs.prepare.outputs.ref }}
- ref: llvmorg-23-init
+ ref: 7fa2752a286bb86945b929356c1dc7d429bcbcdb
- name: Set Build Prefix
id: setup-stage
>From 3aefa2fab4a90f4f89cf28fa009ca56910daeeec Mon Sep 17 00:00:00 2001
From: Tom Stellard <tstellar at redhat.com>
Date: Tue, 2 Jun 2026 17:20:53 -0700
Subject: [PATCH 12/20] Test 0eaa1f5884bf01064e280cee9148fc29b8bfa099
---
.github/workflows/release-binaries.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/release-binaries.yml b/.github/workflows/release-binaries.yml
index b7c7eb05a4af5..21ab8928c605a 100644
--- a/.github/workflows/release-binaries.yml
+++ b/.github/workflows/release-binaries.yml
@@ -246,7 +246,7 @@ jobs:
with:
persist-credentials: false
#ref: ${{ needs.prepare.outputs.ref }}
- ref: 7fa2752a286bb86945b929356c1dc7d429bcbcdb
+ ref: 0eaa1f5884bf01064e280cee9148fc29b8bfa099
- name: Set Build Prefix
id: setup-stage
>From 603be84980e2e64ce42e1f2c8ca6f6704054f4f6 Mon Sep 17 00:00:00 2001
From: Tom Stellard <tstellar at redhat.com>
Date: Tue, 2 Jun 2026 22:11:00 -0700
Subject: [PATCH 13/20] Test a04353fcecacc92c162cd776ac9e09d943f3154e
---
.github/workflows/release-binaries.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/release-binaries.yml b/.github/workflows/release-binaries.yml
index 21ab8928c605a..02ae79620feab 100644
--- a/.github/workflows/release-binaries.yml
+++ b/.github/workflows/release-binaries.yml
@@ -246,7 +246,7 @@ jobs:
with:
persist-credentials: false
#ref: ${{ needs.prepare.outputs.ref }}
- ref: 0eaa1f5884bf01064e280cee9148fc29b8bfa099
+ ref: a04353fcecacc92c162cd776ac9e09d943f3154e
- name: Set Build Prefix
id: setup-stage
>From ba66ee93adb2d849eafa2072d68c00db7662d5f7 Mon Sep 17 00:00:00 2001
From: Tom Stellard <tstellar at redhat.com>
Date: Wed, 3 Jun 2026 05:31:17 -0700
Subject: [PATCH 14/20] Test a6615588ac141ca87c4197f3484e80cb88899cee
---
.github/workflows/release-binaries.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/release-binaries.yml b/.github/workflows/release-binaries.yml
index 02ae79620feab..568a7b6064aca 100644
--- a/.github/workflows/release-binaries.yml
+++ b/.github/workflows/release-binaries.yml
@@ -246,7 +246,7 @@ jobs:
with:
persist-credentials: false
#ref: ${{ needs.prepare.outputs.ref }}
- ref: a04353fcecacc92c162cd776ac9e09d943f3154e
+ ref: a6615588ac141ca87c4197f3484e80cb88899cee
- name: Set Build Prefix
id: setup-stage
>From 9d655be85e101958605c4fb456830d6886ee7b93 Mon Sep 17 00:00:00 2001
From: Tom Stellard <tstellar at redhat.com>
Date: Wed, 3 Jun 2026 06:43:40 -0700
Subject: [PATCH 15/20] Test 1503b86870993f9ad76d79ebd38cb989669c991e
---
.github/workflows/release-binaries.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/release-binaries.yml b/.github/workflows/release-binaries.yml
index 568a7b6064aca..485d8959bdd83 100644
--- a/.github/workflows/release-binaries.yml
+++ b/.github/workflows/release-binaries.yml
@@ -246,7 +246,7 @@ jobs:
with:
persist-credentials: false
#ref: ${{ needs.prepare.outputs.ref }}
- ref: a6615588ac141ca87c4197f3484e80cb88899cee
+ ref: 1503b86870993f9ad76d79ebd38cb989669c991e
- name: Set Build Prefix
id: setup-stage
>From 07b1784cdc1302c74be650e31dd15fcd345dc1a6 Mon Sep 17 00:00:00 2001
From: Tom Stellard <tstellar at redhat.com>
Date: Wed, 3 Jun 2026 09:19:15 -0700
Subject: [PATCH 16/20] Test 64bc1fae11d6591739ed0c14f1f3464ae7bc24ac
---
.github/workflows/release-binaries.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/release-binaries.yml b/.github/workflows/release-binaries.yml
index 485d8959bdd83..ef4b6a275bc2d 100644
--- a/.github/workflows/release-binaries.yml
+++ b/.github/workflows/release-binaries.yml
@@ -246,7 +246,7 @@ jobs:
with:
persist-credentials: false
#ref: ${{ needs.prepare.outputs.ref }}
- ref: 1503b86870993f9ad76d79ebd38cb989669c991e
+ ref: 64bc1fae11d6591739ed0c14f1f3464ae7bc24ac
- name: Set Build Prefix
id: setup-stage
>From ca2614a76a816e0efdb40f6c850b4650562ae2c2 Mon Sep 17 00:00:00 2001
From: Tom Stellard <tstellar at redhat.com>
Date: Wed, 3 Jun 2026 10:10:36 -0700
Subject: [PATCH 17/20] Test 9757718b591fed23f5b38afeb5d2849199d1e241
---
.github/workflows/release-binaries.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/release-binaries.yml b/.github/workflows/release-binaries.yml
index ef4b6a275bc2d..6848f2f1eb31f 100644
--- a/.github/workflows/release-binaries.yml
+++ b/.github/workflows/release-binaries.yml
@@ -246,7 +246,7 @@ jobs:
with:
persist-credentials: false
#ref: ${{ needs.prepare.outputs.ref }}
- ref: 64bc1fae11d6591739ed0c14f1f3464ae7bc24ac
+ ref: 9757718b591fed23f5b38afeb5d2849199d1e241
- name: Set Build Prefix
id: setup-stage
>From bda16289b27f8e235ee4bb94b6e5b7c4d6529e4d Mon Sep 17 00:00:00 2001
From: Tom Stellard <tstellar at redhat.com>
Date: Wed, 3 Jun 2026 14:18:50 -0700
Subject: [PATCH 18/20] Test b115dd117ac109ac501b8bc044dbdefd6f5f2471
---
.github/workflows/release-binaries.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/release-binaries.yml b/.github/workflows/release-binaries.yml
index 6848f2f1eb31f..1138013eeac09 100644
--- a/.github/workflows/release-binaries.yml
+++ b/.github/workflows/release-binaries.yml
@@ -246,7 +246,7 @@ jobs:
with:
persist-credentials: false
#ref: ${{ needs.prepare.outputs.ref }}
- ref: 9757718b591fed23f5b38afeb5d2849199d1e241
+ ref: b115dd117ac109ac501b8bc044dbdefd6f5f2471
- name: Set Build Prefix
id: setup-stage
>From 9f04550c9b67c9e2ff65cb50ded56126d343eb52 Mon Sep 17 00:00:00 2001
From: Tom Stellard <tstellar at redhat.com>
Date: Wed, 3 Jun 2026 16:20:29 -0700
Subject: [PATCH 19/20] Test 4fe4d9844862451b38bb3bd7329ab1b29916e3be
---
.github/workflows/release-binaries.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/release-binaries.yml b/.github/workflows/release-binaries.yml
index 1138013eeac09..f7e648bfdb9e8 100644
--- a/.github/workflows/release-binaries.yml
+++ b/.github/workflows/release-binaries.yml
@@ -246,7 +246,7 @@ jobs:
with:
persist-credentials: false
#ref: ${{ needs.prepare.outputs.ref }}
- ref: b115dd117ac109ac501b8bc044dbdefd6f5f2471
+ ref: 4fe4d9844862451b38bb3bd7329ab1b29916e3be
- name: Set Build Prefix
id: setup-stage
>From fc436d4806d14ee7cb1f9198ac38db0c8a0e2ab8 Mon Sep 17 00:00:00 2001
From: Tom Stellard <tstellar at redhat.com>
Date: Wed, 3 Jun 2026 21:16:39 -0700
Subject: [PATCH 20/20] Test da4894c874edb5fc9b9b82a8a99ed471a49153bf
---
.github/workflows/release-binaries.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/release-binaries.yml b/.github/workflows/release-binaries.yml
index f7e648bfdb9e8..c2918905d8f41 100644
--- a/.github/workflows/release-binaries.yml
+++ b/.github/workflows/release-binaries.yml
@@ -246,7 +246,7 @@ jobs:
with:
persist-credentials: false
#ref: ${{ needs.prepare.outputs.ref }}
- ref: 4fe4d9844862451b38bb3bd7329ab1b29916e3be
+ ref: da4894c874edb5fc9b9b82a8a99ed471a49153bf
- name: Set Build Prefix
id: setup-stage
More information about the llvm-commits
mailing list