From 75b49233ce1629e34a306db20d38d9664fe5f7ab Mon Sep 17 00:00:00 2001 From: Robin Davies Date: Wed, 16 Mar 2022 00:22:14 -0400 Subject: [PATCH] Run CMake Build tests. Modify the test class of the Cmake action to only run BuildTest tests, since DevTest tests require actual Pi4 hardware. --- .github/workflows/cmake.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 6b77c34..304f692 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -40,7 +40,6 @@ jobs: - name: Test working-directory: ${{github.workspace}}/build - # Execute tests defined by the CMake configuration. - # See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail - run: ctest -C ${{env.BUILD_TYPE}} + # Execute CMake BuiltTest test + run: ctest -C ${{env.BUILD_TYPE}} -R BuildTest