Implement zwlr_virtual_pointer_v1 and zwp_virtual_keyboard_v1 for better pointer and keyboard support on monitor overlays #499
Workflow file for this run
This file contains hidden or 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
| name: Check Wayland+OpenVR | |
| on: | |
| pull_request: | |
| #branches: [ "main" ] | |
| env: | |
| CARGO_TERM_COLOR: always | |
| SCCACHE_GHA_ENABLED: "true" | |
| RUSTC_WRAPPER: "sccache" | |
| jobs: | |
| build: | |
| runs-on: ubuntu-24.04 | |
| defaults: | |
| run: | |
| working-directory: ./wayvr | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup sccache | |
| uses: mozilla-actions/sccache-action@v0.0.9 | |
| - name: Prepare Environment | |
| run: | | |
| ../.github/workflows/scripts/appimage_prepare_env.sh | |
| - name: Build | |
| run: cargo build --verbose --no-default-features --features=wayland,openvr | |
| - name: Run tests | |
| run: cargo test --verbose --no-default-features --features=wayland,openvr |