From 8bc2250e646068088a814929534cd50d2a60ba9d Mon Sep 17 00:00:00 2001 From: Liviu Ionescu Date: Sun, 29 Oct 2023 18:40:34 +0200 Subject: [PATCH] disable meson on macos (due to ldd --version) --- tests/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/package.json b/tests/package.json index 6e18e9d..b9a193a 100644 --- a/tests/package.json +++ b/tests/package.json @@ -82,7 +82,7 @@ ], "test": [ "xpm run test-native-cmake-gcc", - "xpm run test-native-meson-clang", + "{% if os.platform == 'darwin' %}echo {% endif %}xpm run test-native-meson-clang", "xpm run test-qemu-cortex-m0-cmake", "xpm run test-qemu-cortex-m0-meson", "xpm run test-qemu-cortex-m7f-cmake", @@ -92,7 +92,7 @@ ], "test-all": [ "xpm run test-native-cmake", - "xpm run test-native-meson", + "{% if os.platform == 'darwin' %}echo {% endif %}xpm run test-native-meson", "xpm run test-cortex-cmake", "xpm run test-cortex-meson", "xpm run test-riscv-cmake",