Skip to content

removed code duplication in the webgpu __main__ demo #126

removed code duplication in the webgpu __main__ demo

removed code duplication in the webgpu __main__ demo #126

Workflow file for this run

name: Sonar Scanner
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
jobs:
sonarcloud:
name: SonarCloud
runs-on: ubuntu-latest
env:
QT_QPA_PLATFORM: offscreen
GLFW_CONTEXT_API: osmesa
strategy:
matrix:
python-version: ["3.13"]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install EGL dependencies
run: |
sudo apt-get update
sudo apt-get install -y \
libegl1 \
libgl1 \
libxkbcommon-x11-0 \
libxcb-xinerama0
# - name: Install OpenGL (OSMesa)
# run: |
# sudo apt-get update
# sudo apt-get install -y \
# libgl1-mesa-dev \
# libosmesa6-dev \
# mesa-utils
- name: Install the project
run: uv sync --locked --all-extras --dev
- name: Install dependencies and run coverage
run: uv run run_coverage_nogpu.py
# run: |
# uv run coverage run --source=src/ncca/ngl --omit="*/tests/*,*/test_*" -m pytest -p no:pytest-qt tests --ignore=tests/test_shaderlib.py --ignore=tests/test_texture.py --ignore=tests/test_text.py --ignore=tests/test_base_mesh.py --ignore=tests/test_primitives.py --ignore=tests/test_obj.py --ignore=tests/test_vao.py --ignore=tests/test_lookat_widget.py --ignore=tests/test_transform_widget.py --ignore=tests/test_vec4_widget.py --ignore=tests/test_rgb_colour_widget.py --ignore=tests/test_vec2_widget.py --ignore=tests/test_rgba_colour_widget.py --ignore=tests/test_vec3_widget.py --ignore=tests/test_webgpu_widget.py && uv run coverage report -m
# uv run coverage xml
# run: |
# uv run coverage run --source=src/ncca/ngl -m pytest && uv run coverage report -m && uv run coverage xml
- name: SonarCloud Scan
uses: SonarSource/sonarqube-scan-action@v5.0.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}