Some checks are pending
Copilot Setup Steps / copilot-setup-steps (push) Waiting to run
Check Pre-Tokenizer Hashes / pre-tokenizer-hashes (push) Waiting to run
Python check requirements.txt / check-requirements (push) Waiting to run
Python Type-Check / python type-check (push) Waiting to run
Update Operations Documentation / update-ops-docs (push) Waiting to run
21 lines
498 B
YAML
21 lines
498 B
YAML
name: "Linux - Setup Vulkan SDK"
|
|
description: "Setup Vulkan SDK for Linux"
|
|
inputs:
|
|
path:
|
|
description: "Installation path"
|
|
required: true
|
|
version:
|
|
description: "Vulkan SDK version"
|
|
required: true
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Setup Vulkan SDK
|
|
id: setup
|
|
uses: ./.github/actions/unarchive-tar
|
|
with:
|
|
url: https://sdk.lunarg.com/sdk/download/${{ inputs.version }}/linux/vulkan_sdk.tar.xz
|
|
path: ${{ inputs.path }}
|
|
strip: 1
|