Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 11 additions & 7 deletions .github/workflows/build-sanitized.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ jobs:
strategy:
fail-fast: false
matrix:
qt-flavor: # asan|tsan|debug|profile
qt-flavor:
- name: "debug" # no sanitizer, but asserts enabled
preset: "dev"
# - name: "asan"
# preset: "dev-asan"
# preset: "dev-asan"
# - name: "tsan"
# preset: "dev-tsan"
# - name: "profile"
Expand All @@ -34,7 +34,7 @@ jobs:
- name: Setup Sanitized Qt
uses: KDABLabs/sanitized-qt-action@v1
with:
qt-tag: "v6.11.0-beta2"
qt-tag: "v6.12.0-beta1" # Bump to latest freely
qt-flavor: ${{ matrix.qt-flavor.name }}

- name: Checkout sources
Expand All @@ -45,12 +45,16 @@ jobs:
- name: Install Dependencies
run: |
sudo apt update -qq
sudo apt install -y gdb
sudo apt install -y gdb libwayland-dev wayland-protocols

- name: debug
run: |
echo "Path: ${PATH}"
echo "ld lib path: ${LD_LIBRARY_PATH}"
env

- name: Configure project
run: >
cmake -S . -G Ninja --preset ${{ matrix.qt-flavor.preset }}
-DGAMMARAY_WITH_KDSME=ON -DGAMMARAY_BUILD_DOCS=OFF
run: cmake --preset ${{ matrix.qt-flavor.preset }} -DGAMMARAY_WITH_KDSME=ON -DGAMMARAY_BUILD_DOCS=OFF

- name: Build Project
run: cmake --build ./build-${{ matrix.qt-flavor.preset }}
Expand Down
2 changes: 1 addition & 1 deletion CMakePresets.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
{
"name": "dev-asan",
"displayName": "dev-asan",
"generator": "Ninja",
"generator": "Unix Makefiles",
"binaryDir": "${sourceDir}/build-dev-asan",
"cacheVariables": {
"ECM_ENABLE_SANITIZERS": "address,undefined",
Expand Down
1 change: 0 additions & 1 deletion plugins/qmlsupport/qmlcontextpropertyadaptor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@

#include <private/qqmlcontext_p.h>
#include <private/qqmlcontextdata_p.h>
#include <private/qv4identifierhashdata_p.h>

#include <QDebug>
#include <QQmlContext>
Expand Down
Loading