-
Notifications
You must be signed in to change notification settings - Fork 9
46 lines (43 loc) · 1.06 KB
/
build.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
name: Build OBS Service Cargo
on:
push:
paths:
- '**.rs'
- '**/Cargo.toml'
pull_request:
paths:
- '**.rs'
- '**/Cargo.toml'
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
container: opensuse/tumbleweed:latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies and Rust
run: |
zypper --non-interactive in libzstd-devel rustup openssl-devel
rustup default stable
rustup update
- name: Build
run: |
cargo update
cargo build --release --all-features
- name: Check formatting
run: |
cargo fmt -- --check || true
- name: Check clippy
run: |
cargo clippy --release
cargo clippy --tests
- name: Install cargo-vendor-filterer
run: |
cargo install cargo-vendor-filterer
- name: Run sample projects to test
run: |
export PATH="${PATH}:${HOME}/.cargo/bin"
echo "${PATH}"
cargo test --release --all-features -- --test-threads=1