From 97f751ad064bf6e9ee75e6d2cd5e241904e3368b Mon Sep 17 00:00:00 2001 From: Samuel Herts Date: Thu, 28 May 2026 16:51:24 -0400 Subject: [PATCH] Fix CMake paths and update test execution commands Updated CMake configuration and test execution paths. --- .github/workflows/CI-CD.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/CI-CD.yml b/.github/workflows/CI-CD.yml index 80293a4..a9da564 100644 --- a/.github/workflows/CI-CD.yml +++ b/.github/workflows/CI-CD.yml @@ -51,10 +51,11 @@ jobs: - name: Configure CMake shell: bash run: | - cmake -S tests/ -B build \ + cmake -B build \ -DCMAKE_BUILD_TYPE=Debug \ -DCMAKE_CXX_STANDARD=${{ matrix.cpp_standard }} \ - -DCMAKE_CXX_STANDARD_REQUIRED=ON + -DCMAKE_CXX_STANDARD_REQUIRED=ON \ + -DBIGINT_BUILD_EXAMPLES=OFF - name: Build shell: bash @@ -64,7 +65,7 @@ jobs: shell: bash run: | if [ "${{ runner.os }}" == "Windows" ]; then - ./build/Debug/BigInt_gtest.exe --gtest_color=no --gtest_filter=*-Test_BigInt_Performance.* + ./build/tests/BigInt_gtest.exe --gtest_color=no --gtest_filter=*-Test_BigInt_Performance.* else - ./build/BigInt_gtest --gtest_color=no --gtest_filter=*-Test_BigInt_Performance.* + ./build/tests/BigInt_gtest --gtest_color=no --gtest_filter=*-Test_BigInt_Performance.* fi