-
Notifications
You must be signed in to change notification settings - Fork 32
84 lines (72 loc) · 2.24 KB
/
ci.yaml
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
on:
push:
branches:
- main
pull_request:
branches:
- main
name: CI
jobs:
rustfmt:
name: Check code formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: cargo fmt --check
clippy:
name: Clippy
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v3
- name: Install protobuf
run: |
sudo apt-get update
sudo apt-get install -y libprotobuf-dev libprotobuf-c-dev protobuf-compiler protobuf-c-compiler
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
build:
name: Build / Rust ${{ matrix.toolchain }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
toolchain: ["stable", "beta", "1.75"]
include:
- toolchain: nightly
coverage: true
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install protobuf
run: |
sudo apt-get update
sudo apt-get install -y libprotobuf-dev libprotobuf-c-dev protobuf-compiler protobuf-c-compiler
- id: rustc
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
components: llvm-tools
- name: Configure CI cache
uses: Swatinem/rust-cache@v2
- name: Build
run: cargo +${{ steps.rustc.outputs.name }} build --all-targets
- name: Run tests
if: matrix.toolchain != 'nightly'
run: cargo +${{ steps.rustc.outputs.name }} test --all-targets --no-fail-fast
- name: Run tests with code coverage
if: matrix.toolchain == 'nightly'
run: cargo +${{ steps.rustc.outputs.name }} test --all-targets --no-fail-fast
env:
CARGO_INCREMENTAL: '0'
LLVM_PROFILE_FILE: 'libsignal-service-%p-%m.profraw'
RUSTFLAGS: '-Cinstrument-coverage'
RUSTDOCFLAGS: '-Cinstrument-coverage'
- name: Generate code coverage
uses: actions-rs/[email protected]
if: matrix.toolchain == 'nightly'
- name: Upload coverage reports to Codecov with GitHub Action
uses: codecov/codecov-action@v3
if: matrix.toolchain == 'nightly'