-
Notifications
You must be signed in to change notification settings - Fork 3
121 lines (106 loc) · 2.87 KB
/
ci.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
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
111
112
113
114
115
116
117
118
119
120
121
name: Continuous Integration
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
env:
CARGO_TERM_COLOR: always
jobs:
style:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- run: cargo fmt -- --check
- run: cargo check
- run: cargo clippy --all-features
- uses: actions/setup-python@v4
- name: Install Pylint
run: |
python -m pip install --upgrade pip
python -m pip install pylint
- name: Run Pylint
working-directory: py/miniconf-mqtt
run: |
python -m pip install .
python -m pylint miniconf
documentation:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo doc
compile:
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
steps:
- uses: actions/checkout@v4
- name: Install Rust ${{ matrix.toolchain }}
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
- run: cargo check --verbose
- run: cargo build --no-default-features
- run: cargo build
- run: cargo build --release
- run: cargo build --examples
test:
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
args:
- ""
- --no-default-features
steps:
- uses: actions/checkout@v4
- name: Start Broker
run: |
sudo apt-get install mosquitto mosquitto-clients
sudo service mosquitto start
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{matrix.toolchain}}
- run: cargo test ${{matrix.args }}
embedded:
runs-on: ubuntu-latest
timeout-minutes: 45
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
with:
target: thumbv7m-none-eabi
- name: Install QEMU
run: |
sudo apt-get update
sudo apt-get install -y qemu-system-arm
- run: cargo run --release
env:
RUSTFLAGS: -C link-arg=-Tlink.x -D warnings
working-directory: miniconf/tests/embedded
continue-on-error: true
- run: cargo run --release --features used_linker
env:
RUSTFLAGS: -C link-arg=-Tlink.x -D warnings
working-directory: miniconf/tests/embedded
test-mqtt:
runs-on: ubuntu-latest
strategy:
matrix:
example:
- mqtt
steps:
- uses: actions/checkout@v4
- name: Start Broker
run: |
sudo apt-get install mosquitto mosquitto-clients
sudo service mosquitto start
- uses: dtolnay/rust-toolchain@stable
- run: sh py/test.sh