Skip to content

Commit

Permalink
[ci] Update Vulkan SDK download instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
IAmNotHanni committed Jul 13, 2024
1 parent f383b8d commit 005e57f
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,19 +81,20 @@ jobs:
python3 \
python3-pip \
xkb-data \
xorg-dev
xorg-dev \
xz-utils
pip3 install --break-system-packages wheel setuptools
- name: Install Vulkan SDK
shell: bash
run: |
# Download Vulkan SDK
curl -LS -o vulkansdk.tar.gz \
https://sdk.lunarg.com/sdk/download/${{ env.INEXOR_VULKAN_VERSION }}/linux/vulkansdk-linux-x86_64-${{ env.INEXOR_VULKAN_VERSION }}.tar.gz
curl -LS -o vulkansdk.tar.xz \
https://sdk.lunarg.com/sdk/download/${{ env.INEXOR_VULKAN_VERSION }}/linux/vulkansdk-linux-x86_64-${{ env.INEXOR_VULKAN_VERSION }}.tar.xz
# Create Vulkan SDK directory and extract
mkdir "${{ env.INEXOR_VULKAN_SDK_PATH }}"
tar xfz vulkansdk.tar.gz -C "${{ env.INEXOR_VULKAN_SDK_PATH }}"
tar xf vulkansdk.tar.xz -C "${{ env.INEXOR_VULKAN_SDK_PATH }}"
- name: Checkout
uses: actions/checkout@v3
Expand Down

0 comments on commit 005e57f

Please sign in to comment.