-
Notifications
You must be signed in to change notification settings - Fork 11
69 lines (64 loc) · 2.11 KB
/
rust.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
name: Rust
on:
push:
branches-ignore:
- 'release-please-**'
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
env:
CARGO_TERM_COLOR: always
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse
jobs:
build:
name: Build and Test
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v4
- name: install Rust stable
uses: dtolnay/rust-toolchain@stable
- name: Install gtk4-layer-shell
working-directory: /tmp
run: |
sudo apt-get update
sudo apt -y install git libglib2.0-dev libgraphene-1.0-dev meson ninja-build libwayland-dev libgtk-4-dev gobject-introspection libadwaita-1-dev libgirepository1.0-dev python3 valac
git clone https://github.com/wmww/gtk4-layer-shell
cd gtk4-layer-shell
meson setup build
ninja -C build
sudo ninja -C build install
sudo ldconfig
- name: Load Rust Cache
uses: Swatinem/rust-cache@v2
with:
prefix-key: rust-build
- name: Build
run: cargo build --release --all-features
- name: Test
run: cargo test --all-features
clippy:
name: Run Clippy
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v4
- name: install Rust stable
uses: dtolnay/rust-toolchain@stable
- name: Install gtk4-layer-shell
working-directory: /tmp
run: |
sudo apt-get update
sudo apt -y install git libglib2.0-dev libgraphene-1.0-dev meson ninja-build libwayland-dev libgtk-4-dev gobject-introspection libadwaita-1-dev libgirepository1.0-dev python3 valac
git clone https://github.com/wmww/gtk4-layer-shell
cd gtk4-layer-shell
meson setup build
ninja -C build
sudo ninja -C build install
sudo ldconfig
- name: Load Rust Cache
uses: Swatinem/rust-cache@v2
with:
prefix-key: rust-build
- name: Run Clippy
run: cargo clippy --all-targets --all-features
env:
RUSTFLAGS: "-Dwarnings"