We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c60000d commit 76675cbCopy full SHA for 76675cb
.github/workflows/release-binaries.yml
@@ -122,7 +122,11 @@ jobs:
122
123
# Detect necessary CMake flags
124
target="${{ runner.os }}-${{ runner.arch }}"
125
- echo "enable-pgo=false" >> $GITHUB_OUTPUT
+ if [ "${{ runner.os }}" = "Linux" ]; then
126
+ echo "enable-pgo=true" >> $GITHUB_OUTPUT
127
+ else
128
+ echo "enable-pgo=false" >> $GITHUB_OUTPUT
129
+ fi
130
target_cmake_flags="-DLLVM_RELEASE_ENABLE_PGO=OFF"
131
# The macOS builds try to cross compile some libraries so we need to
132
# add extra CMake args to disable them.
0 commit comments