docs: fix inserting local extensions into sys.path #1945
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
name: CI | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
inputs: | |
test_all_python_versions: | |
description: "Run tests on all Python versions" | |
type: boolean | |
default: false | |
required: true | |
test_all_kernel_flavors: | |
description: "Run tests on all kernel flavors" | |
type: boolean | |
default: false | |
required: true | |
workflow_call: | |
inputs: | |
test_all_python_versions: | |
description: "Run tests on all Python versions" | |
type: boolean | |
default: false | |
required: true | |
test_all_kernel_flavors: | |
description: "Run tests on all kernel flavors" | |
type: boolean | |
default: false | |
required: true | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
python-version: ${{ (github.event_name == 'push' || inputs.test_all_python_versions) | |
&& fromJSON('["3.13", "3.12", "3.11", "3.10", "3.9", "3.8"]') | |
|| fromJSON('["3.13", "3.8"]')}} | |
cc: [gcc, clang] | |
fail-fast: false | |
env: | |
CC: ${{ matrix.cc }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
allow-prereleases: true | |
- name: Install dependencies | |
run: | | |
sudo apt-get update -y | |
sudo apt-get install -y btrfs-progs check dwarves libelf-dev libdw-dev qemu-kvm zstd ${{ matrix.cc == 'clang' && 'libomp-$(clang --version | sed -rn "s/.*clang version ([0-9]+).*/\\1/p")-dev' || '' }} | |
# pyroute2 0.9.1 dropped support for Python < 3.9. | |
if [[ "${{ matrix.python-version }}" =~ ^3\.[678]$ ]]; then | |
pyroute2_version="<0.9.1" | |
fi | |
pip install "pyroute2$pyroute2_version" setuptools pre-commit | |
- name: Generate version.py | |
run: python setup.py --version | |
- name: Check with mypy | |
run: pre-commit run --all-files mypy | |
- name: Build and test with ${{ matrix.cc }} | |
run: CONFIGURE_FLAGS="--enable-compiler-warnings=error" python setup.py test -K ${{ inputs.test_all_kernel_flavors && '-F' || '' }} | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
- name: Install dependencies | |
run: pip install pre-commit | |
- name: Run pre-commit hooks | |
run: SKIP=mypy pre-commit run --all-files --show-diff-on-failure |