From b0a25e65b5f73e3618a9c16ae06f5a42df3cd643 Mon Sep 17 00:00:00 2001 From: Nazar Hussain Date: Sat, 11 Nov 2023 16:00:00 +0300 Subject: [PATCH] Make only the debug build --- .github/workflows/build-debug-node.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-debug-node.yml b/.github/workflows/build-debug-node.yml index 203d8c6908a8..6d1598b30a07 100644 --- a/.github/workflows/build-debug-node.yml +++ b/.github/workflows/build-debug-node.yml @@ -26,11 +26,11 @@ jobs: path: 'nodejs' - name: Configure nodejs with debug flag - run: ./configure --debug + run: ./configure --debug -c working-directory: 'nodejs' - name: Compile the nodejs - run: make -j$(nproc --all) + run: make -C out BUILDTYPE=Debug -j$(nproc --all) working-directory: 'nodejs' - name: Verify the build