Skip to content

Commit

Permalink
Disable the Vulkan workflows until SPIRV support is implemented
Browse files Browse the repository at this point in the history
  • Loading branch information
RobDangerous committed Oct 4, 2023
1 parent bff01a6 commit 6e3ab4c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 213 deletions.
57 changes: 0 additions & 57 deletions .github/workflows/android-vulkan.yml

This file was deleted.

65 changes: 0 additions & 65 deletions .github/workflows/linux-vulkan.yml

This file was deleted.

85 changes: 0 additions & 85 deletions .github/workflows/windows-vulkan.yml

This file was deleted.

12 changes: 6 additions & 6 deletions write_workflows.js
Original file line number Diff line number Diff line change
Expand Up @@ -285,11 +285,11 @@ const workflows = [
gfx: 'OpenGL',
runsOn: 'ubuntu-latest'
},
{
/*{
sys: 'Android',
gfx: 'Vulkan',
runsOn: 'ubuntu-latest'
},
},*/
{
sys: 'Emscripten',
gfx: 'WebGL',
Expand Down Expand Up @@ -351,7 +351,7 @@ const workflows = [
`,
RuntimeShaderCompilation: true
},
{
/*{
sys: 'Linux',
gfx: 'Vulkan',
runsOn: 'ubuntu-latest',
Expand All @@ -365,7 +365,7 @@ const workflows = [
- name: Apt Install
run: sudo apt install libasound2-dev libxinerama-dev libxrandr-dev libgl1-mesa-dev libxi-dev libxcursor-dev libudev-dev vulkan-sdk libwayland-dev wayland-protocols libxkbcommon-dev ninja-build --yes --quiet
`
},
},*/
{
sys: 'macOS',
gfx: 'Metal',
Expand Down Expand Up @@ -411,7 +411,7 @@ const workflows = [
gfx: 'OpenGL',
runsOn: 'windows-latest',
vs: 'vs2022'
},
}/*,
{
sys: 'Windows',
gfx: 'Vulkan',
Expand All @@ -427,7 +427,7 @@ const workflows = [
Invoke-WebRequest -Uri "https://sdk.lunarg.com/sdk/download/1.2.189.2/windows/VulkanSDK-1.2.189.2-Installer.exe" -OutFile VulkanSDK.exe
$installer = Start-Process -FilePath VulkanSDK.exe -Wait -PassThru -ArgumentList @("--da", "--al", "-c", "in");
$installer.WaitForExit();`
}
}*/
];

for (const workflow of workflows) {
Expand Down

0 comments on commit 6e3ab4c

Please sign in to comment.