Skip to content

Commit 8cafe0e

Browse files
committed
Cleanups
1 parent de562c7 commit 8cafe0e

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/release-binaries.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -240,8 +240,10 @@ jobs:
240240
fi
241241
echo "build-prefix=$build_prefix" >> $GITHUB_OUTPUT
242242
243-
# We will use Wix to generate the installer on Windows, because this supports
244-
# installers > 2GB.
243+
# We will use Wix to generate the installer on Windows, because this
244+
# reportedly works better with larger installers, though, I haven't actually
245+
# seen an installer > 2GB, which is the limit for default installer
246+
# generator.
245247
- name: Install Wix
246248
if: runner.os == 'Windows'
247249
run: |
@@ -284,7 +286,7 @@ jobs:
284286
ninja -C ${{ steps.setup-stage.outputs.build-prefix }}/build stage2-check-all
285287
286288
- name: Dump logs
287-
if: failure()
289+
if: failure() && runner.os == 'Windows'
288290
run: |
289291
cat S:/build/tools/clang/stage2-instrumented-bins/tools/clang/stage2-bins/_CPack_Packages/win64/WIX/wix.log
290292

cmake/Modules/LLVMVersion.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ if(NOT DEFINED LLVM_VERSION_PATCH)
1010
set(LLVM_VERSION_PATCH 0)
1111
endif()
1212
if(NOT DEFINED LLVM_VERSION_SUFFIX)
13-
set(LLVM_VERSION_SUFFIX)
13+
set(LLVM_VERSION_SUFFIX git)
1414
endif()
1515

0 commit comments

Comments
 (0)