From 9dbf4cbf94a562134100f6fef6fc5c96f8ca7873 Mon Sep 17 00:00:00 2001 From: digikar Date: Wed, 8 May 2024 07:56:57 +0530 Subject: [PATCH] [ci] test only on macos-13 --- .github/workflows/CI-macos.yml | 2 +- ci-pre-test.lisp | 2 +- ci-test.lisp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CI-macos.yml b/.github/workflows/CI-macos.yml index 0707d35..8855709 100644 --- a/.github/workflows/CI-macos.yml +++ b/.github/workflows/CI-macos.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: lisp: [sbcl] - os: [macos-14, macos-13] + os: [macos-13] runs-on: ${{ matrix.os }} timeout-minutes: 3 diff --git a/ci-pre-test.lisp b/ci-pre-test.lisp index 68e55a9..35779bf 100644 --- a/ci-pre-test.lisp +++ b/ci-pre-test.lisp @@ -3,7 +3,7 @@ ;; :replace t ;; :prompt nil) (push :ci *features*) -(push #P"~/" ql:*local-project-directories*) +(push #P"./" ql:*local-project-directories*) (print (ql:where-is-system "py4cl2-cffi")) (force-output) (defmacro print-and-call (form) diff --git a/ci-test.lisp b/ci-test.lisp index 57a94f3..53c6aa6 100644 --- a/ci-test.lisp +++ b/ci-test.lisp @@ -3,7 +3,7 @@ (when (eq :linux (uiop:operating-system)) (push (print (pathname (uiop:getenv "EXOTIC_DIR"))) ql:*local-project-directories*)) -(push #P"~/" ql:*local-project-directories*) +(push #P"./" ql:*local-project-directories*) (ql:quickload "py4cl2-cffi-tests") (py4cl2-cffi/config:print-configuration) (let ((report (py4cl2-cffi-tests:run)))