diff options
| author | Carlo Cabrera <30379873+carlocab@users.noreply.github.com> | 2023-04-10 02:31:13 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-09 20:31:13 +0200 |
| commit | 5d387c338828d176f335f2a9cec8882ecc4ba954 (patch) | |
| tree | 5945b7a7c2fff6aa32a7459c9bc5f4858ea9a87b /.github/workflows | |
| parent | 339011f59c25937567f1e88d663c22dade5e217a (diff) | |
| download | rneovim-5d387c338828d176f335f2a9cec8882ecc4ba954.tar.gz rneovim-5d387c338828d176f335f2a9cec8882ecc4ba954.tar.bz2 rneovim-5d387c338828d176f335f2a9cec8882ecc4ba954.zip | |
build(ci): ensure correct headers are used on macOS
Currently, the release build picks up headers in
`/Library/Frameworks/Mono.framework/Headers`. You can verify this by
downloading the latest nightly build and checking the output of `nvim
--version`.
These headers are likely to be from a different version of `libintl` than the
one we link to. Let's avoid usage of them by setting `CMAKE_FIND_FRAMEWORK` to
`NEVER`.
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/test.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 86561e468b..8215a79b35 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -143,6 +143,8 @@ jobs: flags: -D UNSIGNED_CHAR=ON - cc: clang runner: macos-12 + flags: -D CMAKE_FIND_FRAMEWORK=NEVER + deps_flags: -D CMAKE_FIND_FRAMEWORK=NEVER # functionaltest-lua is our dumping ground for non-mainline configurations. # 1. Check that the tests pass with PUC Lua instead of LuaJIT. |