-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix GH action when building sdl crate (#207)
- Loading branch information
Showing
2 changed files
with
24 additions
and
2 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,20 @@ | ||
name: Install dependencies via apt-get | ||
runs: | ||
using: composite | ||
steps: | ||
- name: SDL2 | ||
uses: awalsh128/cache-apt-pkgs-action@latest | ||
with: | ||
packages: libsdl2-dev | ||
version: 2.0 | ||
- name: SDL3 | ||
uses: awalsh128/cache-apt-pkgs-action@latest | ||
with: | ||
packages: | | ||
build-essential git make | ||
pkg-config cmake ninja-build gnome-desktop-testing libasound2-dev libpulse-dev | ||
libaudio-dev libjack-dev libsndio-dev libx11-dev libxext-dev | ||
libxrandr-dev libxcursor-dev libxfixes-dev libxi-dev libxss-dev | ||
libxkbcommon-dev libdrm-dev libgbm-dev libgl1-mesa-dev libgles2-mesa-dev | ||
libegl1-mesa-dev libdbus-1-dev libibus-1.0-dev libudev-dev fcitx-libs-dev | ||
version: 3.0 |
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