From 47fd3e62a2ef4fdfa5414a8f5cf3b06a0ea9e4cd Mon Sep 17 00:00:00 2001 From: Daniel Markstedt Date: Tue, 16 Jan 2024 10:36:48 +0900 Subject: [PATCH] Build unit tests with debug flags --- .github/workflows/cpp.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cpp.yml b/.github/workflows/cpp.yml index 05b48a5c..9b2e38ec 100644 --- a/.github/workflows/cpp.yml +++ b/.github/workflows/cpp.yml @@ -24,7 +24,7 @@ jobs: run: sudo apt-get install ${{ env.APT_PACKAGES }} - name: Build unit tests - run: make -j $(nproc) test + run: DEBUG=1 make -j $(nproc) test - name: Run unit tests run: (set -o pipefail && bin/piscsi_test | tee piscsi_test_log.txt)