Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ runs:
using: 'composite'
steps:
- name: Install system dependencies
run: sudo apt-get update && sudo apt-get install -y g++ pkg-config libx11-dev libasound2-dev libudev-dev libxkbcommon-x11-0 libwayland-dev libxkbcommon-dev libglfw3-dev
run: sudo apt-get update && sudo apt-get install -y g++ cmake pkg-config libx11-dev libxrandr-dev libxinerama-dev libxcursor-dev libxi-dev libasound2-dev libudev-dev libxkbcommon-x11-0 libwayland-dev libxkbcommon-dev wayland-protocols libdecor-0-dev libegl1-mesa-dev libwayland-egl1-mesa
shell: bash

- name: Install Rust
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
key: ${{ runner.os }}-target-${{ hashFiles('**/Cargo.lock') }}

- name: Run tests
run: cargo test --all-features --workspace
run: cargo test -F glfw/src-build -F glfw/static-link --workspace

fmt:
name: Format
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
key: ${{ runner.os }}-clippy-target-${{ hashFiles('**/Cargo.lock') }}

- name: Run clippy
run: cargo clippy --all-features --workspace -- -D warnings
run: cargo clippy -F glfw/src-build -F glfw/static-link --workspace -- -D warnings

build:
name: Build
Expand Down Expand Up @@ -110,4 +110,4 @@ jobs:
key: ${{ runner.os }}-build-target-${{ hashFiles('**/Cargo.lock') }}

- name: Build
run: cargo build --all-features --workspace --verbose
run: cargo build -F glfw/src-build -F glfw/static-link --workspace --verbose
Loading
Loading