Skip to content

Commit

Permalink
Install Vulkan drivers to Linux GitHub runners
Browse files Browse the repository at this point in the history
  • Loading branch information
besidev committed Dec 20, 2024
1 parent 69609b4 commit d7cd44e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,12 @@ jobs:
gstreamer1.0-plugins-bad \
gstreamer1.0-plugins-ugly
- name: Install Vulkan drivers (Linux)
if: runner.os == 'Linux'
run: |
sudo apt-get install -y mesa-vulkan-drivers libvulkan1
echo "VK_ICD_FILENAMES=/usr/share/vulkan/icd.d/lvp_icd.x86_64.json" >> $GITHUB_ENV
- name: Set up Virtual Audio Device (Linux)
if: runner.os == 'Linux'
run: |
Expand Down Expand Up @@ -78,4 +84,4 @@ jobs:

- name: Javadoc
run: |
./gradlew javadoc
./gradlew javadoc

0 comments on commit d7cd44e

Please sign in to comment.