Install Vulkan SDK when running linux job
This commit is contained in:
parent
8a2ffe7eb5
commit
70ab3089c7
1 changed files with 5 additions and 0 deletions
5
.github/workflows/ci.yml
vendored
5
.github/workflows/ci.yml
vendored
|
@ -8,6 +8,11 @@ jobs:
|
|||
CXX: g++-9
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Setup Vulkan SDK
|
||||
run: wget -qO - https://packages.lunarg.com/lunarg-signing-key-pub.asc | sudo apt-key add -
|
||||
run: sudo wget -qO /etc/apt/sources.list.d/lunarg-vulkan-focal.list https://packages.lunarg.com/vulkan/lunarg-vulkan-focal.list
|
||||
run: sudo apt update
|
||||
run: sudo apt install vulkan-sdk
|
||||
- name: Configure
|
||||
run: cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release
|
||||
- name: Build
|
||||
|
|
Reference in a new issue