Fix runtime path in linux build against glibc versions #50
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Python Package without Cython | |
on: | |
pull_request: | |
branches: [main] | |
types: [synchronize, opened, reopened, ready_for_review] | |
jobs: | |
build-and-test: | |
name: Test on ${{ matrix.os }} - Python ${{ matrix.python-version }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: ["ubuntu-latest", "macos-latest", "windows-latest"] | |
python-version: ["3.9", "3.10", "3.11", "3.12"] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install WavPack (ubuntu) | |
if: matrix.os == 'ubuntu-latest' | |
run: | | |
chmod +x ./.github/scripts/install-wavpack-linux.sh | |
./.github/scripts/install-wavpack-linux.sh | |
# check libraries | |
ls /usr/local/lib/ | grep wavpack | |
- name: Set up Homebrew (macos) | |
if: matrix.os == 'macos-latest' | |
id: set-up-homebrew | |
uses: Homebrew/actions/setup-homebrew@master | |
- name: Install WavPack (macos) | |
if: matrix.os == 'macos-latest' | |
run: | | |
brew install wavpack | |
# check version | |
brew info wavpack | |
- name: Python version | |
run: | | |
which python | |
- name: Install dependencies | |
run: | | |
pip install . | |
pip install zarr | |
pip install pytest | |
- name: Test imports and version | |
run: | | |
pytest -s tests/test_imports.py | |
- name: Test with pytest | |
run: | | |
pytest -v |