multi_draw_indirect_counter #1503
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: CI | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
tags: | |
- 'v*' | |
pull_request: | |
branches: | |
- main | |
jobs: | |
lint-build: | |
name: Test Linting | |
timeout-minutes: 5 | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- name: Install dev dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -U -e .[lint] | |
- name: Flake8 | |
run: | | |
flake8 . | |
test-codegen-build: | |
name: Test Codegen | |
timeout-minutes: 5 | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -U -e .[codegen] | |
- name: Test codegen | |
run: | | |
pytest -v codegen | |
test-minimal-import-build: | |
name: Test Imports | |
timeout-minutes: 5 | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -e . | |
- name: Test imports | |
env: | |
WGPU_FORCE_OFFSCREEN: true | |
run: | | |
python -c "print('wgpu'); import wgpu; print(wgpu)" | |
python -c "print('wgpu.backends.wgpu_native'); import wgpu.backends.wgpu_native" | |
python -c "print('wgpu.gui.offscreen'); import wgpu.gui.offscreen" | |
python -c "print('wgpu.utils'); import wgpu.utils" | |
docs-build: | |
name: Test Docs | |
timeout-minutes: 5 | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- name: Install dev dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -U -e .[docs] | |
- name: Build docs | |
run: | | |
cd docs | |
make html SPHINXOPTS="-W --keep-going" | |
test-examples-build: | |
name: Test Examples | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- name: Install llvmpipe and lavapipe for offscreen canvas | |
run: | | |
sudo apt-get update -y -qq | |
sudo apt install -y libegl1-mesa libgl1-mesa-dri libxcb-xfixes0-dev mesa-vulkan-drivers | |
- name: Install dev dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -U -e .[tests,examples] | |
- name: Test examples | |
env: | |
EXPECT_LAVAPIPE: true | |
run: | | |
pytest -v examples | |
test-pyinstaller-build: | |
name: Test PyInstaller | |
timeout-minutes: 5 | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -U -e .[tests] glfw pyinstaller | |
- name: Test PyInstaller | |
run: | | |
pyinstaller --version | |
pytest -v wgpu/__pyinstaller | |
test-builds: | |
name: ${{ matrix.name }} | |
timeout-minutes: 5 | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- name: Test Linux py38 | |
os: ubuntu-latest | |
pyversion: '3.8' | |
- name: Test Linux py39 | |
os: ubuntu-latest | |
pyversion: '3.9' | |
- name: Test Linux py310 | |
os: ubuntu-latest | |
pyversion: '3.10' | |
- name: Test Linux py311 | |
os: ubuntu-latest | |
pyversion: '3.11' | |
- name: Test Linux py312 | |
os: ubuntu-latest | |
pyversion: '3.12' | |
- name: Test Linux pypy3 | |
os: ubuntu-latest | |
pyversion: 'pypy3.9' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.pyversion }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.pyversion }} | |
- name: Install llvmpipe and lavapipe for offscreen canvas | |
if: matrix.os == 'ubuntu-latest' | |
run: | | |
sudo apt-get update -y -qq | |
sudo apt install -y libegl1-mesa libgl1-mesa-dri libxcb-xfixes0-dev mesa-vulkan-drivers | |
- name: Install dev dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -U -e .[tests] | |
- name: Unit tests | |
run: | | |
pytest -v tests | |
- name: Memory tests | |
run: | | |
pytest -v tests_mem |