From 99102f329745142a79f79fae33045fdd63322d58 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jean-Philippe=20Bruy=C3=A8re?= Date: Sun, 22 Jun 2025 16:53:16 +0200 Subject: [PATCH] add gunit tests to github action --- .github/workflows/cmake.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index e28f447..e451d8b 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -30,12 +30,13 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - build_config: ['Debug','Release'] + build_config: ['Release'] defaults: run: shell: bash env: VULKAN_SDK: ${{ github.workspace }}/VulkanSDK/x86_64 + VULKAN_LAYER_PATH: ${{env.VULKAN_SDK }}/share/vulkan/explicit_layer.d steps: - uses: actions/checkout@v4 @@ -56,6 +57,7 @@ jobs: working-directory: source/build - run: cmake --build . --config ${{ matrix.build_config }} working-directory: source/build + - run: /home/runner/work/vkvg/vkvg/source/build/samples/samples --list-gpus - run: /home/runner/work/vkvg/vkvg/source/build/gunit_tests/unit_tests mac_jorb: runs-on: macos-latest -- 2.47.3