summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorCarlo Cabrera <30379873+carlocab@users.noreply.github.com>2022-06-26 23:04:30 +0800
committerGitHub <noreply@github.com>2022-06-26 08:04:30 -0700
commit9077e4e655a34d4548bd85acb9c8f6926464336b (patch)
treed212534051049fd5f92a4f0b1c288a81a2c6c49e
parent9b2fc224d8445dbaa353cbc1c2a7ac284790f314 (diff)
ci(release): use system GPerf on macOS #19105
GPerf gets upset at our attempts to build a universal binary. Conveniently, macOS provides GPerf, so we don't need to build it. This is a workaround for the 0.7.1 branch which still depends on gperf, to get the release CI working. In master we don't use gperf anymore.
-rw-r--r--.github/workflows/release.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 2a4b93981b..44438438ea 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -115,7 +115,7 @@ jobs:
OSX_FLAGS="-DCMAKE_OSX_DEPLOYMENT_TARGET=${MACOSX_DEPLOYMENT_TARGET} -DCMAKE_OSX_ARCHITECTURES=arm64\;x86_64"
make CMAKE_BUILD_TYPE=${NVIM_BUILD_TYPE} \
CMAKE_EXTRA_FLAGS="-DCMAKE_INSTALL_PREFIX:PATH= $OSX_FLAGS" \
- DEPS_CMAKE_FLAGS="$OSX_FLAGS"
+ DEPS_CMAKE_FLAGS="$OSX_FLAGS -DUSE_BUNDLED_GPERF=OFF"
make DESTDIR="$GITHUB_WORKSPACE/build/release/nvim-macos" install
- name: Create package
run: |