Bump the all-dependencies group across 1 directory with 3 updates #8
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
| # SPDX-FileCopyrightText: 2026 Klarälvdalens Datakonsult AB, a KDAB Group company <info@kdab.com> | |
| # | |
| # SPDX-License-Identifier: MIT | |
| name: CI (Sanitizers) | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| os: | |
| - ubuntu-24.04 | |
| preset: ['dev-asan'] | |
| include: | |
| - preset: dev-asan | |
| qt-flavor: asan | |
| steps: | |
| - name: Checkout sources | |
| uses: actions/checkout@v7 | |
| - name: Setup Sanitized Qt | |
| uses: KDABLabs/sanitized-qt-action@v1 | |
| with: | |
| qt-tag: "v6.12.0-beta1" | |
| qt-flavor: ${{ matrix.qt-flavor }} | |
| # Our Qt's were built against wayland, so it's a build time dependency | |
| - name: Install dependencies | |
| run: | | |
| sudo apt install libwayland-dev wayland-protocols -y | |
| - name: Configure | |
| run: cmake --preset=${{ matrix.preset }} | |
| - name: Build | |
| run: cmake --build ./build-${{ matrix.preset }} | |
| - name: Run tests | |
| run: | | |
| ctest --test-dir ./build-${{ matrix.preset }} --output-on-failure --verbose | |
| env: | |
| LSAN_OPTIONS: "detect_leaks=0" |