From 16ea96f5602f7b1bff52ca07d78b184811148059 Mon Sep 17 00:00:00 2001 From: Alexander Artemenko Date: Tue, 9 Jul 2024 16:18:40 +0000 Subject: [PATCH] Exclude CCL-BIN on OSX from test matrix. --- .github/workflows/ci.yml | 6 ++++++ src/ci.lisp | 3 +++ 2 files changed, 9 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d8f8c1c..1edac2f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -64,6 +64,12 @@ "ubuntu-latest", "macos-latest" ], + "exclude": [ + { + "os": "macos-latest", + "lisp": "ccl-bin" + } + ], "quicklisp": [ "ultralisp", "quicklisp" diff --git a/src/ci.lisp b/src/ci.lisp index f1d4f1a..f652e12 100644 --- a/src/ci.lisp +++ b/src/ci.lisp @@ -25,6 +25,9 @@ :lisp ("sbcl-bin" "ccl-bin" "ecl") + :exclude '((:os "macos-latest" + ;; Not supported platform arm64. + :lisp "ccl-bin")) :coverage t)))