File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -175,7 +175,7 @@ jobs:
175
175
echo "build-flang=$build_flang" >> $GITHUB_OUTPUT
176
176
case "${{ inputs.runs-on }}" in
177
177
ubuntu-22.04*|windows-2022)
178
- build_runs_on="depot-${{ inputs.runs-on }}-16 "
178
+ build_runs_on="depot-${{ inputs.runs-on }}-64 "
179
179
test_runs_on=$build_runs_on
180
180
;;
181
181
macos-13)
@@ -247,6 +247,9 @@ jobs:
247
247
id : setup-stage
248
248
uses : ./workflows-main/.github/workflows/release-binaries-setup-stage
249
249
250
+ - name : Install Wix
251
+ run : |
252
+ dotnet tool install --global wix
250
253
- name : Configure
251
254
id : build
252
255
env :
@@ -276,6 +279,8 @@ jobs:
276
279
-DBOOTSTRAP_BOOTSTRAP_CMAKE_NINJA_FORCE_RESPONSE_FILE=1 `
277
280
-DBOOTSTRAP_CMAKE_OBJECT_PATH_MAX=500 `
278
281
-DBOOTSTRAP_BOOTSTRAP_CMAKE_OBJECT_PATH_MAX=500 `
282
+ -DBOOTSTRAP_BOOTSTRAP_LLVM_BUILD_TOOLS=OFF `
283
+ -DBOOTSTRAP_BOOTSTRAP_CPACK_GENERATOR=WIX `
279
284
-DBOOTSTRAP_BOOTSTRAP_CPACK_PACKAGE_FILE_NAME="${{ needs.prepare.outputs.release-binary-basename }}"
280
285
281
286
- name : Build Unix
Original file line number Diff line number Diff line change @@ -32,7 +32,8 @@ endfunction()
32
32
33
33
if (${CMAKE_HOST_SYSTEM_NAME} MATCHES "Windows" )
34
34
# Reduce projects built for Windows due to 2GB installer limits.
35
- set (DEFAULT_PROJECTS "clang;lld;lldb;clang-tools-extra" )
35
+ #set (DEFAULT_PROJECTS "clang;lld;lldb;clang-tools-extra")
36
+ set (DEFAULT_PROJECTS "clang;lld" )
36
37
else ()
37
38
set (DEFAULT_PROJECTS "clang;lld;lldb;clang-tools-extra;polly;mlir;flang" )
38
39
endif ()
You can’t perform that action at this time.
0 commit comments