aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Clason <c.clason@uni-graz.at>2022-06-19 16:20:27 +0200
committerGitHub <noreply@github.com>2022-06-19 16:20:27 +0200
commitc5c5d980a1e2b758048cf6310ccf97807c575a63 (patch)
treeb1fb1d86e4267b8beae3938c88b54a7748230117
parent7b2b44bce4bff85d9fd1bef09d294ddb889056e4 (diff)
downloadrneovim-c5c5d980a1e2b758048cf6310ccf97807c575a63.tar.gz
rneovim-c5c5d980a1e2b758048cf6310ccf97807c575a63.tar.bz2
rneovim-c5c5d980a1e2b758048cf6310ccf97807c575a63.zip
ci(release): skip CoreServices system library on macOS (#19021)
Problem: The release script bundles a system library (CoreServices) that was added in #18294, which leads to errors on M1 since the architecture is different from the Github runner. Solution: Skip CoreServices when bundling the libraries (as was done for the CoreFoundation library that #18294 replaced with CoreServices).
-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 518a30158b..aad76d0979 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -102,7 +102,7 @@ jobs:
libs=($(otool -L nvim-osx64/bin/nvim | sed 1d | sed -E -e 's|^[[:space:]]*||' -e 's| .*||'))
echo "libs:"
for lib in "${libs[@]}"; do
- if echo "$lib" | grep -q -E 'libSystem|CoreFoundation' 2>/dev/null; then
+ if echo "$lib" | grep -q -E 'libSystem|CoreServices' 2>/dev/null; then
echo " [skipped] $lib"
else
echo " $lib"