Skip to content

Commit

Permalink
Add sudo and disable step on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
nicbarker committed Sep 28, 2024
1 parent e485dfc commit b533c32
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/cmake-multi-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,13 @@ jobs:
key: "_deps"

- name: Install Dependencies
if: runner.os == 'Linux'
run: |
DEBIAN_FRONTEND=noninteractive apt-get install -y git
DEBIAN_FRONTEND=noninteractive apt-get install -y libwayland-dev
DEBIAN_FRONTEND=noninteractive apt-get install -y pkg-config
DEBIAN_FRONTEND=noninteractive apt-get install -y libxkbcommon-dev
DEBIAN_FRONTEND=noninteractive apt-get install -y xorg-dev
DEBIAN_FRONTEND=noninteractive sudo apt-get install -y git
DEBIAN_FRONTEND=noninteractive sudo apt-get install -y libwayland-dev
DEBIAN_FRONTEND=noninteractive sudo apt-get install -y pkg-config
DEBIAN_FRONTEND=noninteractive sudo apt-get install -y libxkbcommon-dev
DEBIAN_FRONTEND=noninteractive sudo apt-get install -y xorg-dev
- name: Configure CMake
Expand Down

0 comments on commit b533c32

Please sign in to comment.