-
Notifications
You must be signed in to change notification settings - Fork 7
111 lines (97 loc) · 2.81 KB
/
cont_integration.yml
File metadata and controls
111 lines (97 loc) · 2.81 KB
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
name: CI
on: [push, pull_request]
permissions:
contents: read
pull-requests: write
jobs:
changes:
name: Detect changes
runs-on: ubuntu-latest
outputs:
wallet: ${{ steps.filter.outputs.wallet }}
protocol: ${{ steps.filter.outputs.protocol }}
steps:
- uses: actions/checkout@v4
- name: Check changed paths
id: filter
uses: dorny/paths-filter@v3
with:
filters: |
wallet:
- 'wallet/**'
protocol:
- 'protocol/**'
wallet:
name: Build and test wallet
needs: changes
if: needs.changes.outputs.wallet == 'true'
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- stable
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Generate cache key
run: echo "${{ matrix.rust }}" | tee .cache_key
- name: Cache
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('.cache_key') }}-${{ hashFiles('**/Cargo.toml','**/Cargo.lock') }}
- name: Setup Rust Toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
profile: minimal
override: true
components: rustfmt, clippy
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y protobuf-compiler
- name: Build
run: cargo build
- name: Clippy
run: cargo clippy --all-targets
- name: Unit and Integration tests
run: RUST_LOG=off cargo test
protocol:
name: Build and test protocol
needs: changes
if: needs.changes.outputs.protocol == 'true'
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- stable
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Generate cache key
run: echo "${{ matrix.rust }}" | tee .cache_key
- name: Cache
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('.cache_key') }}-${{ hashFiles('**/Cargo.toml','**/Cargo.lock') }}
- name: Setup Rust Toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
profile: minimal
override: true
components: rustfmt, clippy
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y protobuf-compiler
- name: Build
run: cargo build
- name: Clippy
run: cargo clippy --all-targets
- name: Unit and Integration tests
run: RUST_LOG=off cargo test