aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/rust.yml
blob: d1a7ade0be976170fb7db40b2f08f32ce97da68f (plain)
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
name: Rust

on:
  push:
    branches: [master]
  pull_request:
    branches: [master]

env:
  CARGO_TERM_COLOR: always

jobs:
  ci:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        include:
          - package: embassy
            target: thumbv7em-none-eabi
          - package: embassy
            target: thumbv7em-none-eabi
            features: log
          - package: embassy
            target: thumbv7em-none-eabi
            features: defmt
          - package: embassy
            target: thumbv6m-none-eabi
            features: defmt
          - package: embassy-nrf-examples
            target: thumbv7em-none-eabi
          - package: embassy-nrf
            target: thumbv7em-none-eabi
            features: 52810
          - package: embassy-nrf
            target: thumbv7em-none-eabi
            features: 52832
          - package: embassy-nrf
            target: thumbv7em-none-eabi
            features: 52833
          - package: embassy-nrf
            target: thumbv7em-none-eabi
            features: 52840
          - package: embassy-nrf
            target: thumbv7em-none-eabi
            features: 52840,log
          - package: embassy-nrf
            target: thumbv7em-none-eabi
            features: 52840,defmt
          - package: embassy-stm32f4-examples
            target: thumbv7em-none-eabi
            features: stm32f405
          - package: embassy-stm32f4
            target: thumbv7em-none-eabi
            features: stm32f405
          - package: embassy-stm32f4
            target: thumbv7em-none-eabi
            features: stm32f446
          - package: embassy-stm32f4
            target: thumbv7em-none-eabi
            features: stm32f405,defmt
          - package: embassy-stm32l0
            target: thumbv6m-none-eabi
            features: stm32l0x2
          - package: embassy-stm32l0
            target: thumbv6m-none-eabi
            features: stm32l0x2,defmt
          - package: embassy-rp-examples
            target: thumbv6m-none-eabi

    steps:
      - uses: actions/checkout@v2
      - uses: actions-rs/toolchain@v1
        with:
          toolchain: nightly
          target: ${{ matrix.target }}
          components: rust-src, rustfmt
          override: true
      - name: cache
        id: cache-target
        uses: actions/cache@v2
        with:
          path: target
          key: ${{ runner.os }}-${{ matrix.target }}
      - uses: actions-rs/cargo@v1
        with:
          command: check
          args: --package ${{ matrix.package }} --features=${{ matrix.features }} --target=${{ matrix.target }}

  fmt:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: actions-rs/toolchain@v1
        with:
          toolchain: nightly
          components: rustfmt
          override: true
      - uses: actions-rs/cargo@v1
        with:
          command: fmt
          args: --all -- --check