Skip to content

Commit 4171a9c

Browse files
committed
workflow: fix vulkan sdk download url for windows and macos
1 parent a62564e commit 4171a9c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ci-macos.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ jobs:
2424
- name: Install Deps
2525
run: |
2626
brew install automake fdk-aac git lame libass libtool libvorbis libvpx opus sdl shtool texi2html theora wget x264 x265 xvid nasm
27-
curl -O https://sdk.lunarg.com/sdk/download/1.2.198.1/mac/vulkansdk-macos-1.2.198.1.dmg
28-
hdiutil attach vulkansdk-macos-1.2.198.1.dmg
29-
cd /Volumes/vulkansdk-macos-1.2.198.1
27+
curl -O https://sdk.lunarg.com/sdk/download/latest/mac/vulkan-sdk.dmg
28+
hdiutil attach vulkan-sdk.dmg
29+
cd /Volumes/vulkan-sdk
3030
sudo ./InstallVulkan.app/Contents/MacOS/InstallVulkan --root ~/VulkanSDK/1.2.176.1 --accept-licenses --default-answer --confirm-command install
3131
- name: Cache ffmpeg
3232
uses: actions/cache@v3

.github/workflows/ci-windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Install Vulkan SDK
2525
shell: pwsh
2626
run: |
27-
$vulkanSdkVersion = "1.3.250.1"
27+
$vulkanSdkVersion = "1.4.328.1"
2828
mkdir temp
2929
Invoke-WebRequest https://sdk.lunarg.com/sdk/download/$vulkanSdkVersion/windows/VulkanSDK-$vulkanSdkVersion-Installer.exe -OutFile ./temp/vulkan_sdk.exe
3030
./temp/vulkan_sdk.exe in --da --al -c
@@ -43,7 +43,7 @@ jobs:
4343
- name: Build Yaobow
4444
shell: pwsh
4545
run: |
46-
$vulkanSdkVersion = "1.3.250.1"
46+
$vulkanSdkVersion = "1.4.328.1"
4747
$env:Path += ";C:\VulkanSDK\${vulkanSdkVersion}\Bin"
4848
cargo build --workspace --release --verbose
4949
- name: Zip Packaging

0 commit comments

Comments
 (0)