From 3f284954281610c0f02a255729e6bf8daed63f28 Mon Sep 17 00:00:00 2001 From: maximusron Date: Wed, 8 May 2024 19:22:37 +0200 Subject: [PATCH] [ci] Add boost/eigen installation to CI --- .github/workflows/ci.yml | 2 ++ test/test_eigen.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2ae41445..4c6e57fc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -352,6 +352,8 @@ jobs: brew link --overwrite "$pkg" done brew upgrade + brew install eigen + brew install boost pip install distro pytest - name: Restore Cache LLVM/Clang runtime build directory diff --git a/test/test_eigen.py b/test/test_eigen.py index 18ae3129..187e244b 100644 --- a/test/test_eigen.py +++ b/test/test_eigen.py @@ -1,6 +1,6 @@ import py, os, sys from pytest import mark, raises -from .support import setup_make, IS_CLANG_REPL +from .support import setup_make, IS_CLANG_REPL, IS_MAC_X86 inc_paths = [os.path.join(os.path.sep, 'usr', 'include'), os.path.join(os.path.sep, 'usr', 'local', 'include')]