-
Notifications
You must be signed in to change notification settings - Fork 22
72 lines (68 loc) · 2.01 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
70
71
72
name: Rust
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install protobuf-compiler
run: sudo apt-get update && sudo apt-get install -y protobuf-compiler
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Install just
run: cargo install just
- name: Run Docker Compose
run: docker compose --profile itest up -d
- name: check formatting
run: cargo fmt --all -- --check
- name: Build
run: cargo build --verbose
- name: chmod data-dir
run: sudo chmod -R a+rwx ./data
- name: Run tests
run: just run-tests
- name: Run itests
run: just run-itests
coverage:
runs-on: ubuntu-latest
name: coverage
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Run Docker Compose
run: docker compose --profile itest up -d
- name: Install just
run: cargo install just
- name: Install grcov
run: cargo install grcov
- name: Install protobuf-compiler
run: sudo apt-get update && sudo apt-get install -y protobuf-compiler
- name: Install stable
uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
- name: Install llvm-tools-preview
run: rustup component add llvm-tools-preview
- name: Build
run: cargo build --verbose
- name: chmod data-dir
run: sudo chmod -R a+rwx ./data
- name: run coverage test
run: just run-coverage-tests
- name: delete data-dir
run: sudo rm -rf ./data
- name: run coverage-report
run: just run-coverage-report
- name: Upload to codecov.io
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
files: ./target/coverage/lcov