-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Improve github CI * Fmt needs to go after shaders are generated... * Try again * Missing dep * Dont use all features on wasm
- Loading branch information
1 parent
37f0a72
commit 08dd291
Showing
1 changed file
with
20 additions
and
26 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +1,42 @@ | ||
name: Rust CI | ||
|
||
on: | ||
push: | ||
branches: ["main"] | ||
pull_request: | ||
branches: ["main"] | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Install deps | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y libatk1.0-dev libgtk-3-dev | ||
- name: Install Rust toolchain | ||
uses: dtolnay/rust-toolchain@master | ||
with: | ||
toolchain: stable | ||
components: rustfmt, clippy | ||
|
||
- name: Build | ||
run: cargo build --verbose | ||
|
||
- name: Cache dependencies | ||
uses: actions/cache@v3 | ||
with: | ||
path: | | ||
~/.cargo/registry | ||
~/.cargo/git | ||
target | ||
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | ||
|
||
- name: Run tests | ||
run: cargo test --verbose | ||
|
||
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}-${{ matrix.target }} | ||
restore-keys: | | ||
${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}- | ||
${{ runner.os }}-cargo- | ||
- name: Install system dependencies | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y libatk1.0-dev libgtk-3-dev build-essential | ||
- name: Install Rust toolchain | ||
uses: dtolnay/rust-toolchain@master | ||
with: | ||
toolchain: stable | ||
targets: wasm32-unknown-unknown, aarch64-linux-android | ||
components: rustfmt, clippy | ||
- name: Build and run checks | ||
run: | | ||
cargo build --all-features --verbose | ||
cargo build --target wasm32-unknown-unknown --verbose | ||
cargo clippy --all-targets --all-features -- -D warnings | ||
cargo test --all-features --verbose | ||
- name: Check formatting | ||
run: cargo fmt -- --check | ||
|
||
- name: Clippy | ||
run: cargo clippy -- -D warnings |