-
Notifications
You must be signed in to change notification settings - Fork 2
58 lines (52 loc) · 1.43 KB
/
cargo_test.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
name: Cargo test
on:
push:
branches:
- main
- release
pull_request:
branches:
- "**"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Cargo Test
runs-on: amd64
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: |
sudo apt-get update -y && \
sudo apt-get install -y --no-install-recommends \
cmake \
g++ \
libsasl2-dev \
libssl-dev \
libudev-dev \
pkg-config
- name: Get protoc from github releases
run: |
sudo ./ci/get-protoc.sh
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.69.0
override: true
components: cargo, rustc
- uses: tespkg/actions-cache@v1
with:
accessKey: ${{ secrets.AWS_CACHE_ACCESS_KEY_ID }}
secretKey: ${{ secrets.AWS_CACHE_SECRET_ACCESS_KEY }}
bucket: ${{ vars.AWS_CACHE_BUCKET }}
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ github.event.repository.name }}-${{ runner.arch }}-cargo-test-${{ hashFiles('**/Cargo.lock', 'rust-toolchain.toml') }}
- name: cargo test
uses: actions-rs/cargo@v1
with:
command: test