-
Notifications
You must be signed in to change notification settings - Fork 1
60 lines (50 loc) · 1.3 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
name: Rust
on:
push:
branches: [ master ]
tags: [ 'v*' ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
build-test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- name: Run tests
cmd: test
- name: Build with `std`
cmd: build
args: --no-default-features --features=std
- name: Build with `no_std`
cmd: build
args: --no-default-features --features=alloc
- name: Build with `defmt`
cmd: build
args: --no-default-features --features=log-defmt,alloc
steps:
- uses: actions/checkout@v2
- uses: FranzDiebold/github-env-vars-action@v1.2.1
- name: Configure toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
target: ${{ matrix.target }}
override: true
- name: Configure caching
uses: actions/cache@v2
with:
key: build-cache
path: |
${{ env.HOME }}/.cargo
target
- name: Install libusb
run: sudo apt install -y libusb-dev
- name: ${{ matrix.name }}
uses: actions-rs/cargo@v1
with:
command: ${{ matrix.cmd }}
args: ${{ matrix.args }}