Skip to content

bugfix for chained protocols where session gets killed in the egg by … #525

bugfix for chained protocols where session gets killed in the egg by …

bugfix for chained protocols where session gets killed in the egg by … #525

Workflow file for this run

name: iblrigv8 CI
on:
push:
branches: [iblrigv8]
pull_request:
branches: [iblrigv8]
jobs:
tests:
name: build (${{ matrix.python-version }}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ["ubuntu-latest", "windows-latest"]
python-version: ["3.10"]
steps:
- name: Checkout iblrig repo
uses: actions/checkout@v3
with:
path: iblrig
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: flake8
run: |
pip install flake8 --quiet
cd iblrig
python -m flake8
- name: iblrig and iblpybpod requirements
shell: bash -l {0}
run: |
pip install --editable iblrig
pip install -r iblrig/requirements.txt
- name: Install audio library (Ubuntu only)
if: matrix.os == 'ubuntu-latest'
run: sudo apt-get install -y libportaudio2
- name: Install Bonsai (Windows only)
if: matrix.os == 'windows-latest'
shell: pwsh -l {0}
run: |
cd iblrig\Bonsai
powershell.exe .\install.ps1
- name: iblrig unit tests
shell: bash -l {0}
run: |
cd iblrig
cd test
python -m unittest discover
cd test_tasks
python -m unittest discover
- name: Generate requirements_frozen.txt
run: pip freeze > requirements_frozen.txt
- name: Store frozen requirements as artifacts
uses: actions/upload-artifact@v3
with:
name: requirements_frozen
path: requirements_frozen.txt