Skip to content

Commit 513edbf

Browse files
committed
Fixes
1 parent 1a5751d commit 513edbf

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/release-binaries.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ jobs:
156156
# that builds more quickly.
157157
macos-13 | macos-14)
158158
bootstrap_prefix="BOOTSTRAP"
159-
target_cmake_flags="$target_cmake_flags -DLLVM_RELEASE_ENABLE_LTO=OFF -DLLVM_RELEASE_ENABLE_PGO=OFF -D${bootstrap_prefix}-LLVM_TARGETS_TO_BUILD=Native -DLLVM_RELEASE_ENABLE_PROJECTS='clang;lld;lldb;clang-tools-extra;polly'"
159+
target_cmake_flags="$target_cmake_flags -DLLVM_RELEASE_ENABLE_LTO=OFF -DLLVM_RELEASE_ENABLE_PGO=OFF -D${bootstrap_prefix}-LLVM_TARGETS_TO_BUILD=Native"
160160
;;
161161
*)
162162
bootstrap_prefix="BOOTSTRAP_BOOTSTRAP"
@@ -273,7 +273,11 @@ jobs:
273273
name: "Test Release Package Mac OS (flang)"
274274
needs:
275275
- prepare
276+
# Flang is currently disabled on Mac due to
277+
# https://github.com/llvm/llvm-project/issues/160546
278+
# so we don't need to test it.
276279
if: >-
280+
false &&
277281
github.event_name == 'pull_request' &&
278282
(needs.prepare.outputs.build-runs-on == 'macos-13' ||
279283
needs.prepare.outputs.build-runs-on == 'macos-14')

0 commit comments

Comments
 (0)