From 7a5446e6cc39645b7300e1b26308f24cae9449f3 Mon Sep 17 00:00:00 2001 From: scawful Date: Sun, 28 Sep 2025 20:15:54 -0400 Subject: [PATCH] Enable testing in CMake configuration for YAZE build process - Updated the CMake configuration in `release.yml` to enable the building of tests by setting `YAZE_BUILD_TESTS` to ON. - This change allows for the inclusion of test frameworks in the build, enhancing the testing capabilities of the project. --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ce7f1e4b..f11491df 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -220,7 +220,7 @@ jobs: cmake -B build \ -DCMAKE_BUILD_TYPE=${{ env.BUILD_TYPE }} \ -DCMAKE_POLICY_VERSION_MINIMUM=3.16 \ - -DYAZE_BUILD_TESTS=OFF \ + -DYAZE_BUILD_TESTS=ON \ -DYAZE_BUILD_EMU=OFF \ -DYAZE_BUILD_Z3ED=OFF \ -DYAZE_ENABLE_UI_TESTS=ON \