From 3f015c48f05d1297a529886d4d77a3a66c06342f Mon Sep 17 00:00:00 2001 From: alessandrofelder Date: Mon, 29 Apr 2024 15:07:21 +0100 Subject: [PATCH 1/2] run CI on both types of Mac --- .github/workflows/test_and_deploy.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test_and_deploy.yml b/.github/workflows/test_and_deploy.yml index 279ef85..0ef335e 100644 --- a/.github/workflows/test_and_deploy.yml +++ b/.github/workflows/test_and_deploy.yml @@ -31,7 +31,9 @@ jobs: os: [ubuntu-latest] # Include one windows and macos run include: - - os: macos-latest + - os: macos-13 # Intel Mac + python-version: "3.10" + - os: macos-latest # ARM Mac python-version: "3.10" - os: windows-latest python-version: "3.10" From 600bca12c9e61cbae2b779508eb650505bfdfcbb Mon Sep 17 00:00:00 2001 From: Alessandro Felder Date: Mon, 29 Apr 2024 15:23:01 +0100 Subject: [PATCH 2/2] install hd5 on mac --- .github/workflows/test_and_deploy.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/test_and_deploy.yml b/.github/workflows/test_and_deploy.yml index 0ef335e..f8f3a6a 100644 --- a/.github/workflows/test_and_deploy.yml +++ b/.github/workflows/test_and_deploy.yml @@ -39,6 +39,9 @@ jobs: python-version: "3.10" steps: + - name: install HDF libs on ARM Mac + if: matrix.os == 'macos-latest' + run: brew install hdf5 # Run tests - uses: neuroinformatics-unit/actions/test@v2 with: