Add missing header for musl #41
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: test | |
on: | |
workflow_dispatch: | |
pull_request: ~ | |
push: | |
branches: | |
- master | |
jobs: | |
test_linux: | |
name: "linux test: ${{ matrix.arch }}" | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
matrix: | |
arch: [aarch64, armhf, armv7, amd64, i386] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: venv | |
run: | | |
python3 -m venv .venv | |
.venv/bin/pip3 install --upgrade pip | |
- name: build | |
run: | | |
.venv/bin/pip3 wheel . | |
- name: install | |
run: | | |
.venv/bin/pip3 install --no-index -f . webrtc-noise-gain | |
- name: test | |
run: | | |
.venv/bin/pip3 install pytest | |
.venv/bin/pytest -vv tests | |
test_macos: | |
name: "macos test: ${{ matrix.arch }}" | |
runs-on: macos-latest | |
strategy: | |
fail-fast: true | |
steps: | |
- uses: actions/checkout@v3 | |
- name: venv | |
run: | | |
python3 -m venv .venv | |
.venv/bin/pip3 install --upgrade pip | |
- name: build | |
run: | | |
.venv/bin/pip3 wheel . | |
- name: install | |
run: | | |
.venv/bin/pip3 install --no-index -f . webrtc-noise-gain | |
- name: test | |
run: | | |
.venv/bin/pip3 install pytest | |
.venv/bin/pytest -vv tests | |
# test_windows: | |
# name: "windows test: ${{ matrix.arch }}" | |
# runs-on: windows-latest | |
# strategy: | |
# fail-fast: true | |
# matrix: | |
# arch: [amd64] | |
# steps: | |
# - uses: actions/checkout@v3 | |
# - name: venv | |
# run: | | |
# python3 -m venv .venv | |
# .venv/scripts/pip3 install --upgrade pip | |
# - name: build | |
# run: | | |
# .venv/scripts/pip3 wheel . | |
# - name: install | |
# run: | | |
# .venv/scripts/pip3 install --no-index -f . webrtc-noise-gain | |
# - name: test | |
# run: | | |
# .venv/scripts/pip3 install pytest | |
# .venv/scripts/pytest -vv tests |