From c43b62387550557903640a02b060e7e1aa06f908 Mon Sep 17 00:00:00 2001 From: Fabian Sauter Date: Tue, 26 Jul 2022 13:22:48 +0200 Subject: [PATCH] Running tests via the Makefile Signed-off-by: Fabian Sauter --- .github/workflows/cpp_tests.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/cpp_tests.yml b/.github/workflows/cpp_tests.yml index 8f7ea42d..270b44b6 100644 --- a/.github/workflows/cpp_tests.yml +++ b/.github/workflows/cpp_tests.yml @@ -30,6 +30,8 @@ jobs: run-test: false ctest-options: -V configure-options: -DKOMPUTE_OPT_BUILD_TESTS=ON -DKOMPUTE_OPT_DISABLE_VK_DEBUG_LAYERS=OFF -DKOMPUTE_OPT_DISABLE_VULKAN_VERSION_CHECK=ON + - name: Run tests + run: make mk_run_tests cpp-tests-release-with-debug-layers: runs-on: ubuntu-latest @@ -54,6 +56,8 @@ jobs: run-test: false ctest-options: -V configure-options: -DKOMPUTE_OPT_BUILD_TESTS=ON -DKOMPUTE_OPT_DISABLE_VK_DEBUG_LAYERS=OFF -DKOMPUTE_OPT_DISABLE_VULKAN_VERSION_CHECK=ON + - name: Run tests + run: make mk_run_tests cpp-tests-debug-without-debug-layers: runs-on: ubuntu-latest @@ -78,6 +82,8 @@ jobs: run-test: false ctest-options: -V configure-options: -DKOMPUTE_OPT_BUILD_TESTS=ON -DKOMPUTE_OPT_DISABLE_VK_DEBUG_LAYERS=ON -DKOMPUTE_OPT_DISABLE_VULKAN_VERSION_CHECK=ON + - name: Run tests + run: make mk_run_tests cpp-tests-release-without-debug-layers: runs-on: ubuntu-latest @@ -102,3 +108,5 @@ jobs: run-test: false ctest-options: -V configure-options: -DKOMPUTE_OPT_BUILD_TESTS=ON -DKOMPUTE_OPT_DISABLE_VK_DEBUG_LAYERS=ON -DKOMPUTE_OPT_DISABLE_VULKAN_VERSION_CHECK=ON + - name: Run tests + run: make mk_run_tests