From f715cb9478da19ab3baa11c63604d2746d31a1d2 Mon Sep 17 00:00:00 2001 From: Wunkolo Date: Wed, 19 Jul 2023 22:09:29 -0700 Subject: [PATCH] Install VulkanSDK into CI environment --- .github/workflows/Linux_Build.yml | 7 +++++++ .github/workflows/MacOS_Build.yml | 7 +++++++ .github/workflows/Windows_Build.yml | 7 +++++++ 3 files changed, 21 insertions(+) diff --git a/.github/workflows/Linux_Build.yml b/.github/workflows/Linux_Build.yml index d58c3c94..57862a04 100644 --- a/.github/workflows/Linux_Build.yml +++ b/.github/workflows/Linux_Build.yml @@ -23,6 +23,13 @@ jobs: - name: Fetch submodules run: git submodule update --init --recursive + - name: Setup Vulkan SDK + uses: humbletim/setup-vulkan-sdk@v1.2.0 + with: + vulkan-query-version: latest + vulkan-use-cache: true + vulkan-components: Vulkan-Headers, Vulkan-Loader, Glslang + - name: Configure CMake # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make. # See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type diff --git a/.github/workflows/MacOS_Build.yml b/.github/workflows/MacOS_Build.yml index d3443faf..7e54c5a5 100644 --- a/.github/workflows/MacOS_Build.yml +++ b/.github/workflows/MacOS_Build.yml @@ -23,6 +23,13 @@ jobs: - name: Fetch submodules run: git submodule update --init --recursive + - name: Setup Vulkan SDK + uses: humbletim/setup-vulkan-sdk@v1.2.0 + with: + vulkan-query-version: latest + vulkan-use-cache: true + vulkan-components: Vulkan-Headers, Vulkan-Loader, Glslang + - name: Configure CMake # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make. # See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type diff --git a/.github/workflows/Windows_Build.yml b/.github/workflows/Windows_Build.yml index 2e8a8562..653692f3 100644 --- a/.github/workflows/Windows_Build.yml +++ b/.github/workflows/Windows_Build.yml @@ -23,6 +23,13 @@ jobs: - name: Fetch submodules run: git submodule update --init --recursive + - name: Setup Vulkan SDK + uses: humbletim/setup-vulkan-sdk@v1.2.0 + with: + vulkan-query-version: latest + vulkan-use-cache: true + vulkan-components: Vulkan-Headers, Vulkan-Loader, Glslang + - name: Configure CMake # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make. # See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type