Skip to content

Commit

Permalink
test worflow
Browse files Browse the repository at this point in the history
  • Loading branch information
AEspinosaDev committed Oct 15, 2024
1 parent 3a1274a commit 8c90466
Showing 1 changed file with 19 additions and 25 deletions.
44 changes: 19 additions & 25 deletions .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,38 +21,32 @@ jobs:
submodules: true # Ensure submodules are cloned
fetch-depth: 0 # Fetch all history for submodules

# - name: Install Vulkan SDK
# run: |
# curl -LO https://sdk.lunarg.com/sdk/download/latest/windows/vulkan-sdk.exe
# ./vulkan-sdk.exe /S /D=C:\VulkanSDK # Silent install to C:\VulkanSDK
# shell: cmd
- name: Install Vulkan SDK
run: |
curl -LO https://sdk.lunarg.com/sdk/download/latest/windows/vulkan-sdk.exe
VulkanSDK-1.2.182.1-Installer.exe --accept-licenses --default-answer --confirm-command install com.lunarg.vulkan.32bit com.lunarg.vulkan.sdl2 com.lunarg.vulkan.glm com.lunarg.vulkan.volk com.lunarg.vulkan.vma com.lunarg.vulkan.debug com.lunarg.vulkan.debug32
shell: cmd

# - name: Set Vulkan SDK environment variables
# run: |
# echo "VULKAN_SDK=C:\VulkanSDK" >> $GITHUB_ENV
# echo "VK_SDK_PATH=C:\VulkanSDK" >> $GITHUB_ENV
# echo "Adding Vulkan SDK to PATH"
# echo "$VULKAN_SDK\Bin" >> $GITHUB_PATH
# shell: cmd


# - name: Verify Vulkan SDK installation
# run: |
# echo "Vulkan SDK installed at: $VULKAN_SDK"
# dir $VULKAN_SDK\Bin
# shell: cmd
- name: Verify Vulkan SDK installation
run: |
echo "Vulkan SDK installed at: $VULKAN_SDK"
dir $VULKAN_SDK\Bin
shell: cmd



# - name: Set up CMake 3.16
# uses: jwlawson/actions-setup-cmake@v1
- name: Set up CMake 3.16
uses: jwlawson/actions-setup-cmake@v1



# - name: Configure CMake
# run: cmake -S . -B build
- name: Configure CMake
run: cmake -S . -B build

# - name: Build
# run: cmake --build build
- name: Build
run: cmake --build build

# - name: Run Tests
# run: ctest --test-dir build --output-on-failure
- name: Run Tests
run: ctest --test-dir build --output-on-failure

0 comments on commit 8c90466

Please sign in to comment.