Skip to content

Commit fbeb25b

Browse files
authored
Merge pull request #15 from TECHNICANGEL/fix-cuda-toolkit-ci-16199774210804280989
Fix CI cache error by updating cuda-toolkit action
2 parents 04fe223 + 2a27d81 commit fbeb25b

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
shell: pwsh
3434

3535
- name: Setup CUDA Toolkit
36-
uses: Jimver/cuda-toolkit@v0.2.18
36+
uses: Jimver/cuda-toolkit@v0.2.30
3737
with:
3838
cuda: '12.6.0'
3939
method: 'network'

compile_shaders.bat

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
@echo off
22
echo Compiling ray tracing shaders...
33

4-
set VULKAN_SDK=C:\VulkanSDK\1.4.321.1
4+
if "%VULKAN_SDK%"=="" set VULKAN_SDK=C:\VulkanSDK\1.4.321.1
55

66
if not exist "%VULKAN_SDK%\Bin\glslangValidator.exe" (
77
echo ERROR: glslangValidator not found at %VULKAN_SDK%\Bin\
88
echo Please set VULKAN_SDK to your Vulkan SDK installation directory
9-
pause
109
exit /b 1
1110
)
1211

@@ -35,4 +34,3 @@ copy /Y shaders\compiled\*.spv build\Release\shaders\compiled\
3534
echo.
3635
echo Shader compilation complete!
3736
echo.
38-
pause

0 commit comments

Comments
 (0)