-
Notifications
You must be signed in to change notification settings - Fork 12
95 lines (85 loc) · 3.05 KB
/
CI.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
on:
push:
branches: [main]
pull_request:
name: CI
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Check
run: cargo check
test:
name: Test Suite
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Build client (async-std / native)
run: |
cargo build --manifest-path ./client/Cargo.toml --no-default-features --features async-std --features native_crypto
- name: Build client (async-std / OpenSSL)
run: |
cargo build --manifest-path ./client/Cargo.toml --no-default-features --features async-std --features openssl_crypto
- name: Build client (tokio / native)
run: |
cargo build --manifest-path ./client/Cargo.toml --no-default-features --features tokio --features native_crypto
- name: Build client (tokio / OpenSSL)
run: |
cargo build --manifest-path ./client/Cargo.toml --no-default-features --features tokio --features openssl_crypto
- name: Build CLI
run: |
cargo build --manifest-path ./cli/Cargo.toml
- name: Build Portal
run: |
cargo build --manifest-path ./portal/Cargo.toml
- name: Test (native)
run: |
cargo test --manifest-path ./client/Cargo.toml --no-default-features --features tokio --features native_crypto
- name: Test (OpenSSL)
run: |
cargo test --manifest-path ./client/Cargo.toml --no-default-features --features tokio --features openssl_crypto
cargo-deny:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: EmbarkStudios/cargo-deny-action@v2
fmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
with:
components: rustfmt
- name: Rust Format
run: cargo fmt --all --check
clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- name: Clippy workspace (default features)
run: cargo clippy -- -D warnings
- name: Clippy client (tracing / async-std / native crypto)
run: cargo clippy -p oo7 --no-default-features --features tracing,async-std,native_crypto -- -D warnings
- name: Clippy client (tracing / tokio / OpenSSL)
run: cargo clippy -p oo7 --no-default-features --features tracing,tokio,openssl_crypto -- -D warnings
meson:
name: Meson (portal)
runs-on: ubuntu-latest
container: fedora:latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Install dependencies
run: dnf install -y git meson gcc # no idea why the hell meson with rust project requires gcc
- name: Build
working-directory: ./portal
run: meson setup ./ _build --prefix /usr && ninja -C _build