mirror of
https://github.com/niri-wm/niri.git
synced 2026-06-22 02:01:55 +07:00
127 lines
3.4 KiB
YAML
127 lines
3.4 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '0 0 1 * *' # Monthly
|
|
|
|
env:
|
|
RUN_SLOW_TESTS: 1
|
|
|
|
jobs:
|
|
build:
|
|
strategy:
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
configuration: [debug, release]
|
|
|
|
include:
|
|
- configuration: release
|
|
release-flag: '--release'
|
|
|
|
name: test - ${{ matrix.configuration }}
|
|
runs-on: ubuntu-22.04
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
show-progress: false
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
sudo apt-get install -y software-properties-common
|
|
sudo add-apt-repository -y ppa:pipewire-debian/pipewire-upstream
|
|
sudo apt-get update -y
|
|
sudo apt-get install -y libudev-dev libgbm-dev libxkbcommon-dev libegl1-mesa-dev libwayland-dev libinput-dev libdbus-1-dev libsystemd-dev libseat-dev libpipewire-0.3-dev libpango1.0-dev
|
|
|
|
- name: Install Rust
|
|
run: |
|
|
rustup set auto-self-update check-only
|
|
rustup toolchain install stable --profile minimal
|
|
|
|
- uses: Swatinem/rust-cache@v2
|
|
with:
|
|
key: ${{ matrix.configuration }}
|
|
|
|
- name: Build (no default features)
|
|
run: cargo build ${{ matrix.release-flag }} --no-default-features
|
|
|
|
- name: Build
|
|
run: cargo build ${{ matrix.release-flag }}
|
|
|
|
- name: Build (with profiling)
|
|
run: cargo build ${{ matrix.release-flag }} --features profile-with-tracy
|
|
|
|
- name: Build Tests
|
|
run: cargo test --no-run --all ${{ matrix.release-flag }}
|
|
|
|
- name: Test
|
|
run: cargo test --all ${{ matrix.release-flag }} -- --nocapture
|
|
|
|
clippy:
|
|
strategy:
|
|
fail-fast: false
|
|
|
|
name: clippy
|
|
runs-on: ubuntu-22.04
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
show-progress: false
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
sudo apt-get install -y software-properties-common
|
|
sudo add-apt-repository -y ppa:pipewire-debian/pipewire-upstream
|
|
sudo apt-get update -y
|
|
sudo apt-get install -y libudev-dev libgbm-dev libxkbcommon-dev libegl1-mesa-dev libwayland-dev libinput-dev libdbus-1-dev libsystemd-dev libseat-dev libpipewire-0.3-dev libpango1.0-dev
|
|
|
|
- name: Install Rust
|
|
run: |
|
|
rustup set auto-self-update check-only
|
|
rustup toolchain install stable --profile minimal --component clippy
|
|
|
|
- uses: Swatinem/rust-cache@v2
|
|
|
|
- name: Run clippy
|
|
run: cargo clippy --all --all-targets
|
|
|
|
rustfmt:
|
|
runs-on: ubuntu-22.04
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
show-progress: false
|
|
|
|
- name: Install Rust
|
|
run: |
|
|
rustup set auto-self-update check-only
|
|
rustup toolchain install nightly --profile minimal --component rustfmt
|
|
rustup override set nightly
|
|
|
|
- name: Run rustfmt
|
|
run: cargo fmt --all -- --check
|
|
|
|
fedora:
|
|
runs-on: ubuntu-22.04
|
|
container: fedora:39
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
show-progress: false
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
sudo dnf update -y
|
|
sudo dnf install -y cargo gcc libudev-devel libgbm-devel libxkbcommon-devel wayland-devel libinput-devel dbus-devel systemd-devel libseat-devel pipewire-devel pango-devel cairo-gobject-devel clang
|
|
|
|
- uses: Swatinem/rust-cache@v2
|
|
- run: cargo build
|
|
|