From f0f6af7d29940c4fc1b4ade59f4130a53f89e391 Mon Sep 17 00:00:00 2001 From: Liviu Ionescu Date: Sun, 29 Oct 2023 18:43:41 +0200 Subject: [PATCH] package.json: disable clang 13/14 on linux --- tests/package.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/package.json b/tests/package.json index b9a193a..1069b57 100644 --- a/tests/package.json +++ b/tests/package.json @@ -105,8 +105,8 @@ "{% if os.platform == 'darwin' %}echo {% endif %}xpm run test-native-cmake-gcc11", "xpm run test-native-cmake-clang16", "xpm run test-native-cmake-clang15", - "xpm run test-native-cmake-clang14", - "xpm run test-native-cmake-clang13" + "{% if os.platform == 'linux' %}echo {% endif %}xpm run test-native-cmake-clang14", + "{% if os.platform == 'linux' %}echo {% endif %}xpm run test-native-cmake-clang13" ], "test-native-meson": [ "{% if os.platform == 'darwin' %}xpm run test-native-meson-sys{% endif %}", @@ -115,8 +115,8 @@ "{% if os.platform == 'darwin' %}echo {% endif %}xpm run test-native-meson-gcc11", "xpm run test-native-meson-clang16", "xpm run test-native-meson-clang15", - "xpm run test-native-meson-clang14", - "xpm run test-native-meson-clang13" + "{% if os.platform == 'linux' %}echo {% endif %}xpm run test-native-meson-clang14", + "{% if os.platform == 'linux' %}echo {% endif %}xpm run test-native-meson-clang13" ], "test-cortex-cmake": [ "xpm run test-qemu-cortex-m0-cmake",