-
Notifications
You must be signed in to change notification settings - Fork 26
90 lines (80 loc) · 2.32 KB
/
main.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
85
86
87
88
89
90
name: "Main workflow"
on:
- push
jobs:
configure:
runs-on: ubuntu-latest
outputs:
uid_gid: ${{ steps.get-user.outputs.uid_gid }}
steps:
- id: get-user
run: echo "::set-output name=uid_gid::$(id -u):$(id -g)"
lint:
runs-on: ubuntu-latest
container:
image: zondax/rust-ci:latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: true
- run: sudo apt-get install -y libudev-dev libusb-1.0-0-dev protobuf-compiler
- name: show versions
run: |
rustup show
- name: Install rustfmt
run: rustup component add rustfmt --toolchain nightly
- name: rustfmt
run: |
cargo +nightly fmt -- --check
- name: rust cache
uses: Swatinem/rust-cache@v1
with:
# setup sharedKey to share cache with other jobs
sharedKey: ${{ github.run_id }}-${{ github.run_attempt }}
- name: clippy
run: |
cargo clippy --version
cargo clippy --all-features
build:
runs-on: ubuntu-latest
needs: lint
container:
image: zondax/rust-ci:latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: true
- run: sudo apt-get install -y libudev-dev libusb-1.0-0-dev protobuf-compiler
- name: show versions
run: |
rustup show
- name: rust cache
uses: Swatinem/rust-cache@v1
with:
# setup sharedKey to share cache with other jobs
sharedKey: ${{ github.run_id }}-${{ github.run_attempt }}
- name: build
run: cargo build
- name: build --release
run: cargo build --release
tests:
runs-on: ubuntu-latest
needs: build
container:
image: zondax/rust-ci:latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: true
- run: sudo apt-get install -y libudev-dev libusb-1.0-0-dev protobuf-compiler
- name: rust cache
uses: Swatinem/rust-cache@v1
with:
# setup sharedKey to share cache with other jobs
sharedKey: ${{ github.run_id }}-${{ github.run_attempt }}
- name: test --all-features
run: |
cargo test --all --all-features -- --test-threads 1 --skip integration