Fixes some bugs in AnechoicRoom bounding box and rir_build.hpp/cpp #625
Workflow file for this run
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: pyroomacoustics | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
max-parallel: 12 | |
matrix: | |
# switch temporarily to windows-2019 due to a breaking | |
# change making mutex constexpr | |
# a crash occurs if python and the extension are built | |
# with different versions | |
# over time, this should hopefully resolves itself | |
# ref: https://github.com/microsoft/STL/issues/4875 | |
os: [ubuntu-latest, macos-13, macos-latest, windows-2019] | |
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"] | |
exclude: | |
- os: macos-latest | |
python-version: 3.8 | |
- os: macos-latest | |
python-version: 3.9 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Checkout submodules | |
shell: bash | |
run: | | |
auth_header="$(git config --local --get http.https://github.com/.extraheader)" | |
git submodule sync --recursive | |
git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: Build package | |
run: | | |
python -m pip install -e . | |
- name: Test with pytest | |
run: | | |
pip install -U pytest setuptools build wheel twine | |
pytest | |
- name: Test the universal wheels | |
if: matrix.os == 'ubuntu-latest' | |
run: | | |
python -m build --sdist | |
twine check dist/* | |
- name: Test the binary wheels | |
if: matrix.os != 'ubuntu-latest' | |
run: | | |
python -m build --wheel | |
twine check dist/* | |
- name: Publish sdist to pypi | |
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v') && matrix.os == 'ubuntu-latest' | |
env: | |
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} | |
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} | |
run: | | |
twine upload --skip-existing dist/* | |
- name: Publish bdist to pypi | |
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v') && matrix.os != 'ubuntu-latest' | |
env: | |
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} | |
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} | |
run: | | |
twine upload --skip-existing dist/* | |
- name: Publish sdist to pypi-test | |
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/test-') && matrix.os == 'ubuntu-latest' | |
env: | |
TWINE_USERNAME: ${{ secrets.PYPITEST_USERNAME }} | |
TWINE_PASSWORD: ${{ secrets.PYPITEST_PASSWORD }} | |
TWINE_REPOSITORY_URL: https://test.pypi.org/legacy/ | |
run: | | |
twine upload --skip-existing dist/* | |
- name: Publish bdist to pypi-test | |
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/test-') && matrix.os != 'ubuntu-latest' | |
env: | |
TWINE_USERNAME: ${{ secrets.PYPITEST_USERNAME }} | |
TWINE_PASSWORD: ${{ secrets.PYPITEST_PASSWORD }} | |
TWINE_REPOSITORY_URL: https://test.pypi.org/legacy/ | |
run: | | |
twine upload --skip-existing dist/* |