generated from CoolLibs/library-template
-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🔨 [CI] Install Linux dependencies
- Loading branch information
1 parent
3384475
commit 613b0b9
Showing
1 changed file
with
4 additions
and
5 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 |
---|---|---|
|
@@ -49,11 +49,6 @@ jobs: | |
os: macos-latest, | ||
cmake_configure_args: -D CMAKE_C_COMPILER=clang -D CMAKE_CXX_COMPILER=clang++, | ||
} | ||
- { | ||
name: MacOS GCC, | ||
os: macos-latest, | ||
cmake_configure_args: -D CMAKE_C_COMPILER=gcc-13 -D CMAKE_CXX_COMPILER=g++-13, | ||
} | ||
build_type: | ||
- Debug | ||
- Release | ||
|
@@ -67,6 +62,10 @@ jobs: | |
if: runner.os == 'Windows' && matrix.config.name != 'Windows GCC' | ||
uses: ilammy/[email protected] | ||
|
||
- name: Install Linux dependencies | ||
if: runner.os == 'Linux' | ||
run: sudo apt-get install -y libxrandr-dev libxinerama-dev libxcursor-dev libxi-dev mesa-common-dev | ||
|
||
- name: ccache | ||
uses: hendrikmuhs/ccache-action@main | ||
with: | ||
|