Skip to content

Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows #103

Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows

Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows #103

Workflow file for this run

name: macOS CI
on:
push:
branches: [main]
pull_request:
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
brew install autoconf automake hidapi libzip
pip3 install build
- name: Build libconcord
run: |
cd libconcord
mkdir m4; autoreconf --install
./configure
make
sudo make install
cd -
- name: Build libconcord Python bindings
run: |
cd libconcord/bindings/python
python3 -m build
pip3 install dist/*.whl
DYLD_FALLBACK_LIBRARY_PATH=/usr/local/lib python3 -c 'import libconcord; print(libconcord)'
cd -
- name: Build concordance
run: |
cd concordance
mkdir m4; autoreconf --install
./configure
make
sudo make install
cd -
concordance --version