Skip to content

Commit

Permalink
Skip zix tests on macOS < 10.15
Browse files Browse the repository at this point in the history
Signed-off-by: falkTX <falktx@falktx.com>
  • Loading branch information
falkTX committed Oct 6, 2024
1 parent f914294 commit 91282b5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion bootstrap-plugins.sh
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,10 @@ if [ -z "${PAWPAW_SKIP_LV2}" ] || [ "${PAWPAW_SKIP_LV2}" -eq 0 ]; then

ZIX_EXTRAFLAGS=""

if [ "${WASM}" -eq 1 ]; then
if [ "${MACOS}" -eq 1 ] && [ "${MACOS_10_15}" -eq 0 ]; then
# tests under macOS require >= 10.15
ZIX_EXTRAFLAGS+=" -Dtests=disabled -Dtests_cpp=disabled"
elif [ "${WASM}" -eq 1 ]; then
ZIX_EXTRAFLAGS+=" -Dtests=disabled -Dtests_cpp=disabled -Dthreads=disabled"
elif [ "${CROSS_COMPILING}" -eq 1 ] && [ "${LINUX}" -eq 0 ] && [ -z "${EXE_WRAPPER}" ]; then
ZIX_EXTRAFLAGS+=" -Dtests=disabled -Dtests_cpp=disabled"
Expand Down

0 comments on commit 91282b5

Please sign in to comment.