audioio: replace linear interp / bare decimation with polyphase FIR #123
This file contains hidden or 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
| # Mercury CI Pipeline - Unit Tests | |
| # | |
| # Triggers: | |
| # - Automatically on every Pull Request | |
| # - Manually via workflow_dispatch | |
| # - Automatically on every push to mercuryv2 | |
| # | |
| # Runs unit tests on Linux amd64 only. | |
| name: UT | |
| on: | |
| pull_request: | |
| branches: [mercuryv2] | |
| push: | |
| branches: [mercuryv2] | |
| workflow_dispatch: | |
| inputs: | |
| branch: | |
| description: 'Target branch | default = "mercuryv2"' | |
| required: false | |
| type: string | |
| default: 'mercuryv2' | |
| jobs: | |
| unit-tests: | |
| name: Unit Tests (Linux amd64, Debian 13) | |
| runs-on: ubuntu-latest | |
| container: debian:trixie | |
| timeout-minutes: 30 | |
| steps: | |
| - name: Install build dependencies | |
| run: | | |
| apt-get update | |
| apt-get install -y --no-install-recommends \ | |
| ca-certificates \ | |
| build-essential \ | |
| git \ | |
| openssh-client \ | |
| libpulse-dev \ | |
| libasound2-dev \ | |
| libhamlib-dev | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: Rhizomatica/mercury | |
| ssh-key: ${{ secrets.SSH_PRIVATE_KEY }} | |
| fetch-depth: 0 | |
| ref: ${{ github.event.inputs.branch || github.event.pull_request.head.sha || github.sha }} | |
| - name: Git Safe Directory | |
| run: git config --global --add safe.directory /__w/mercury/mercury | |
| - name: Run Unit Tests | |
| shell: bash | |
| run: make test |