rename aiortc2, change the dependency to aioice2 #6
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: tests | |
on: [push, pull_request] | |
jobs: | |
docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: 3.8 | |
- name: Install OS packages | |
run: | | |
sudo apt-get update | |
sudo apt-get install libopus-dev libvpx-dev | |
- name: Build documentation | |
run: | | |
pip install . -r requirements/doc.txt | |
make -C docs html SPHINXOPTS=-W | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: 3.8 | |
- name: Install packages | |
run: pip install mypy ruff | |
- name: Run linters | |
run: | | |
ruff check . | |
ruff format --check --diff . | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
python: | |
- '3.12' | |
- '3.11' | |
- '3.10' | |
- '3.9' | |
- '3.8' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Install OS packages and disable firewall | |
if: matrix.os == 'macos-latest' | |
run: | | |
brew update | |
brew install opus libvpx | |
sudo /usr/libexec/ApplicationFirewall/socketfilterfw --setglobalstate off | |
- name: Install OS packages | |
if: matrix.os == 'ubuntu-latest' | |
run: | | |
sudo apt-get update | |
sudo apt-get install libopus-dev libvpx-dev | |
- name: Run tests | |
run: | | |
python -m pip install -U pip setuptools wheel | |
pip install .[dev] | |
coverage run -m unittest discover -v | |
coverage xml | |
shell: bash | |
- name: Upload coverage report | |
uses: codecov/codecov-action@v4 | |
package-source: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: 3.8 | |
- name: Build source package | |
run: | | |
pip install -U build | |
python -m build --sdist | |
- name: Upload source package | |
uses: actions/upload-artifact@v4 | |
with: | |
name: dist-source | |
path: dist/ | |
package-wheel: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- os: macos-latest | |
arch: arm64 | |
- os: macos-latest | |
arch: x86_64 | |
- os: ubuntu-latest | |
arch: aarch64 | |
- os: ubuntu-latest | |
arch: i686 | |
- os: ubuntu-latest | |
arch: x86_64 | |
- os: windows-latest | |
arch: AMD64 | |
- os: windows-latest | |
arch: x86 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: 3.8 | |
- name: Install QEMU | |
if: matrix.os == 'ubuntu-latest' | |
uses: docker/setup-qemu-action@v3 | |
- name: Build wheels | |
env: | |
CIBW_ARCHS: ${{ matrix.arch }} | |
CIBW_BEFORE_BUILD: python scripts/fetch-vendor.py /tmp/vendor | |
CIBW_BEFORE_BUILD_WINDOWS: python scripts\fetch-vendor.py C:\cibw\vendor | |
CIBW_ENVIRONMENT: CFLAGS=-I/tmp/vendor/include LDFLAGS=-L/tmp/vendor/lib | |
CIBW_ENVIRONMENT_WINDOWS: INCLUDE=C:\\cibw\\vendor\\include LIB=C:\\cibw\\vendor\\lib | |
CIBW_SKIP: '*-musllinux*' | |
CIBW_TEST_COMMAND: python -c "import aiortc" | |
# There are no binary wheels for cryptography on these platforms. | |
CIBW_TEST_SKIP: "*-{manylinux_i686,win32} pp*" | |
run: | | |
pip install cibuildwheel | |
cibuildwheel --output-dir dist | |
shell: bash | |
- name: Upload wheels | |
uses: actions/upload-artifact@v4 | |
with: | |
name: dist-wheel-${{ matrix.os }}-${{ matrix.arch }} | |
path: dist/ | |
publish: | |
runs-on: ubuntu-latest | |
needs: [lint, test, package-source, package-wheel] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/download-artifact@v4 | |
with: | |
merge-multiple: true | |
path: dist/ | |
- name: Publish to PyPI | |
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/') | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
user: __token__ | |
password: ${{ secrets.PYPI_TOKEN }} |