-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9b95290
commit 591c00d
Showing
3 changed files
with
106 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: Setup Godot X11 Drivers Emulators | ||
description: Setup Godot X11 Drivers Emulators. | ||
runs: | ||
using: "composite" | ||
steps: | ||
############################## | ||
# Rendering Driver Emulators # | ||
############################## | ||
|
||
- name: Add Rendering Driver Emulators Source | ||
if: ${{ runner.os == 'Linux' }} | ||
shell: bash | ||
run: | | ||
sudo rm -f /etc/apt/sources.list.d/microsoft-prod.list | ||
sudo add-apt-repository -n ppa:kisak/kisak-mesa | ||
- name: Install Rendering Driver Emulators | ||
if: ${{ runner.os == 'Linux' }} | ||
uses: awalsh128/cache-apt-pkgs-action@latest | ||
with: | ||
packages: mesa-vulkan-drivers binutils | ||
version: 1.0 | ||
|
||
############################## | ||
# Audito Driver Emulators # | ||
############################## | ||
|
||
- name: Install Audio Rendering Driver Emulators | ||
if: ${{ runner.os == 'Linux' }} | ||
shell: bash | ||
run: sudo apt-get install -y pulseaudio | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters