From 5a367aedc8987f530e05ce77991a65414c6d6132 Mon Sep 17 00:00:00 2001 From: Scott Talbert Date: Mon, 13 May 2024 23:31:54 -0400 Subject: [PATCH] Fix CI on macOS after upgrade to macos-14 (arm64) Fixes #58. --- .github/workflows/ci-macos.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci-macos.yml b/.github/workflows/ci-macos.yml index ea0220d..cc2b2db 100644 --- a/.github/workflows/ci-macos.yml +++ b/.github/workflows/ci-macos.yml @@ -6,11 +6,17 @@ on: jobs: build: runs-on: macos-latest + env: + CPATH: /opt/homebrew/include + LIBRARY_PATH: /opt/homebrew/lib steps: - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: '3.12' - name: Install dependencies run: | - brew install autoconf automake hidapi libzip + brew install autoconf automake hidapi libtool libzip pip3 install build - name: Build libconcord run: |