Skip to content
This repository has been archived by the owner on Oct 6, 2024. It is now read-only.

Commit

Permalink
Install Vulkan
Browse files Browse the repository at this point in the history
  • Loading branch information
yutannihilation committed Apr 30, 2022
1 parent 2de1330 commit b0b0b21
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/pkgdown.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,21 @@ jobs:
toolchain: stable
default: true

# This setting comes from https://github.com/gfx-rs/wgpu/blob/ebca3298f01ea72f80aeac4ab1be889469f9c699/.github/workflows/ci.yml#L155-L168
- name: install Vulkan sdk
run: |
sudo apt-get update -y -qq
# llvmpipe/lavapipe
sudo add-apt-repository ppa:oibaf/graphics-drivers -y
# vulkan sdk
wget -qO - https://packages.lunarg.com/lunarg-signing-key-pub.asc | sudo apt-key add -
sudo wget -qO /etc/apt/sources.list.d/lunarg-vulkan-focal.list https://packages.lunarg.com/vulkan/lunarg-vulkan-focal.list
sudo apt-get update
sudo apt install -y libegl1-mesa libgl1-mesa-dri libxcb-xfixes0-dev mesa-vulkan-drivers vulkan-sdk
- uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true
Expand Down

0 comments on commit b0b0b21

Please sign in to comment.