Skip to content

Commit

Permalink
Install dependencies on ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
ArmanDris committed May 24, 2024
1 parent d9e2d2e commit 3f5b7fa
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/cmake-multi-platform.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This starter workflow is for a CMake project running on multiple platforms. There is a different starter workflow if you just want a single platform.
# See: https://github.com/actions/starter-workflows/blob/main/ci/cmake-single-platform.yml
name: CMake on multiple platforms
name: Build ChessEngines for Mac, Linux, and Windows using CMake

on:
push:
Expand Down Expand Up @@ -45,6 +45,10 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Install Dependencies (Linux only)
if: matrix.os == 'ubuntu-latest'
run: sudo apt-get update && sudo apt-get install -y libgl1-mesa-dev libx11-dev

- name: Set reusable strings
# Turn repeated input strings (such as the build output directory) into step outputs. These step outputs can be used throughout the workflow file.
id: strings
Expand Down

0 comments on commit 3f5b7fa

Please sign in to comment.