From 254c1e0e01263b3ad3b4a190d83112269bad5e5d Mon Sep 17 00:00:00 2001 From: hashlag Date: Sun, 25 Jan 2026 18:18:55 +0300 Subject: [PATCH] Explicitly configure test build as 'Debug' --- .gitea/workflows/ChaosCI.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/ChaosCI.yaml b/.gitea/workflows/ChaosCI.yaml index db468e1..4b91146 100644 --- a/.gitea/workflows/ChaosCI.yaml +++ b/.gitea/workflows/ChaosCI.yaml @@ -17,11 +17,11 @@ jobs: sudo apt-get update sudo apt-get install -y build-essential cmake - - name: Configure and build + - name: Configure and build [Debug] run: | - mkdir build - cd build - cmake .. + mkdir build-debug + cd build-debug + cmake .. -D CMAKE_BUILD_TYPE=Debug cmake --build . - name: Configure and build [Release] @@ -33,7 +33,7 @@ jobs: - name: Run tests run: | - cd build + cd build-debug ./ChaosTests/ChaosTests - name: Run benchmarks