Non-root scrolling #247
Workflow file for this run
This file contains 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: CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
env: | |
RUSTDOCFLAGS: "-D warnings" | |
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: "sparse" | |
jobs: | |
# MSRV check. | |
# Blitz only guarantees "latest stable". However we have this check here to ensure that we advertise | |
# our MSRV. We also make an effort not to increase MSRV in patch versions of Blitz. | |
# | |
# We only run `cargo build` (not `cargo test`) so as to avoid requiring dev-dependencies to build with the MSRV | |
# version. Building is likely sufficient as runtime errors varying between rust versions is very unlikely. | |
build-msrv: | |
name: "MSRV Build [Rust 1.79]" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: 1.79 | |
- run: perl -pi.bak -e 's/opt-level = 2/opt-level = 0/g' Cargo.toml | |
- run: sudo apt update; sudo apt install libgtk-3-dev libxdo-dev | |
- run: cargo build --workspace | |
test-features-default: | |
name: "Test [default features]" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
- run: perl -pi.bak -e 's/opt-level = 2/opt-level = 0/g' Cargo.toml | |
- run: sudo apt update; sudo apt install libgtk-3-dev libxdo-dev | |
- run: cargo build --workspace | |
- run: cargo test --workspace | |
fmt: | |
name: Rustfmt | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: stable | |
components: rustfmt | |
- run: cargo fmt --all --check | |
clippy: | |
name: Clippy | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: nightly | |
components: clippy | |
- run: perl -pi.bak -e 's/opt-level = 2/opt-level = 0/g' Cargo.toml | |
- run: sudo apt update; sudo apt install libgtk-3-dev libxdo-dev | |
- run: cargo clippy --workspace -- -D warnings | |
doc: | |
name: Documentation | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
- run: cargo doc | |
# just cargo check for now | |
matrix_test: | |
runs-on: ${{ matrix.platform.os }} | |
if: github.event.pull_request.draft == false | |
env: | |
RUST_CARGO_COMMAND: ${{ matrix.platform.cross == true && 'cross' || 'cargo' }} | |
strategy: | |
matrix: | |
platform: | |
- { | |
name: windows, | |
target: x86_64-pc-windows-msvc, | |
os: windows-latest, | |
cross: false, | |
command: "test", | |
args: "--all --tests", | |
setup: perl -pi.bak -e 's/opt-level = 2/opt-level = 0/g' Cargo.toml | |
} | |
- { | |
name: macos, | |
target: aarch64-apple-darwin, | |
os: macos-latest, | |
cross: false, | |
command: "test", | |
args: "--all --tests", | |
setup: perl -pi.bak -e 's/opt-level = 2/opt-level = 0/g' Cargo.toml | |
} | |
- { | |
name: linux, | |
target: x86_64-unknown-linux-gnu, | |
os: ubuntu-latest, | |
cross: false, | |
command: "test", | |
args: "--all --tests", | |
setup: "sudo apt update; sudo apt install --no-install-recommends \ | |
libasound2-dev \ | |
libatk1.0-dev \ | |
libgtk-3-dev \ | |
libudev-dev \ | |
libpango1.0-dev \ | |
libxdo-dev; | |
perl -pi.bak -e 's/opt-level = 2/opt-level = 0/g' Cargo.toml" | |
} | |
name: Test (${{ matrix.platform.name }}) | |
steps: | |
- uses: actions/checkout@v4 | |
- name: install stable | |
uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: stable | |
targets: ${{ matrix.platform.target }} | |
components: rustfmt | |
- name: Install cross | |
if: ${{ matrix.platform.cross == true }} | |
uses: taiki-e/install-action@cross | |
- name: Free Disk Space (Ubuntu) | |
if: ${{ matrix.platform.os == 'ubuntu-latest' }} | |
uses: jlumbroso/[email protected] | |
with: # speed things up a bit | |
large-packages: false | |
docker-images: false | |
swap-storage: false | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
key: "${{ matrix.platform.target }}" | |
cache-all-crates: "true" | |
save-if: ${{ github.ref == 'refs/heads/main' }} | |
- name: Setup | |
run: ${{ matrix.platform.setup }} | |
shell: bash | |
- name: test | |
run: | | |
${{ env.RUST_CARGO_COMMAND }} ${{ matrix.platform.command }} ${{ matrix.platform.args }} --target ${{ matrix.platform.target }} |