Skip to content

Commit

Permalink
bonk
Browse files Browse the repository at this point in the history
  • Loading branch information
Ishan09811 authored Jun 9, 2024
1 parent 7f0f6ec commit eda50e1
Showing 1 changed file with 2 additions and 17 deletions.
19 changes: 2 additions & 17 deletions .github/workflows/Windows_Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,24 +30,9 @@ jobs:
vulkan-use-cache: true
vulkan-components: Vulkan-Headers, Vulkan-Loader, SPIRV-Tools, Glslang

- name: Download and install glslangValidator
- name: Setup glslang
run: |
curl -L -o glslang.zip https://github.com/KhronosGroup/glslang/releases/download/master-tot/glslang-master-windows-x64-Release.zip
mkdir glslang
tar -xf glslang.zip -C glslang --strip-components=1
echo "${{github.workspace}}/glslang/bin" >> $GITHUB_PATH
- name: Verify glslangValidator installation
shell: pwsh
run: |
$glslangValidatorPath = "${{github.workspace}}/glslang/bin/glslangValidator.exe"
if (Test-Path $glslangValidatorPath) {
Write-Output "glslangValidator is installed successfully."
& $glslangValidatorPath --version
} else {
Write-Error "glslangValidator could not be found."
exit 1
}
bash setup-glslang.sh
- 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.
Expand Down

0 comments on commit eda50e1

Please sign in to comment.