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/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y libgl1-mesa-dev libglu1-mesa-dev libxrandr-dev libxinerama-dev libxcursor-dev libxi-dev libxxf86vm-dev libasound2-dev
sudo apt-get install -y libgl1-mesa-dev libglu1-mesa-dev libxrandr-dev libxinerama-dev libxcursor-dev libxi-dev libxxf86vm-dev libasound2-dev libudev-dev libxkbcommon-x11-dev

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
Expand Down
4 changes: 4 additions & 0 deletions goud_engine/tests/native_main_thread.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ use std::time::{Duration, Instant};
use goud_engine::sdk::{GameConfig, GoudGame};

fn should_skip_native_smoke() -> bool {
if std::env::var_os("CI").is_some() {
return true;
}

#[cfg(target_os = "linux")]
{
std::env::var_os("DISPLAY").is_none() && std::env::var_os("WAYLAND_DISPLAY").is_none()
Expand Down
Loading