-
Notifications
You must be signed in to change notification settings - Fork 5
269 lines (259 loc) · 7.84 KB
/
action.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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
name: Test all targets
on: [push, pull_request]
permissions:
contents: write
jobs:
quick-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Rust setup
uses: actions-rs/[email protected]
with:
toolchain: nightly
override: true
components: rustfmt, clippy
- name: Rust | Cache
uses: Swatinem/rust-cache@v2
with:
prefix-key: "rust-cache"
shared-key: "quick-tests"
- name: Check Rust formatting
run: cargo fmt -- --check
- name: Check Rust code with Clippy
run: cargo clippy -- -Dwarnings -A clippy::not_unsafe_ptr_arg_deref
- name: Run internal tests
run: cargo test --verbose -- --nocapture
- name: Build Rust project
run: cargo build
- name: Build Python module
run: |
pip install --user maturin hatch
hatch run dev:install
- name: Check Python integration
run: hatch run dev:examples/python/main.py
- name: Check C++ integration
run: |
cd examples/cpp
cmake -B build -DCMAKE_BUILD_TYPE=Debug
cmake --build build --config Debug --parallel
./build/simple
- name: Run clang-format style check for C++ example.
uses: jidicula/[email protected]
with:
clang-format-version: '16'
check-path: 'examples/cpp/'
exclude-regex: 'examples/cpp/build'
version-manager:
needs: [quick-tests]
runs-on: ubuntu-latest
outputs:
head_hash: ${{ steps.head-hash.outputs.head_hash }}
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Rust setup
uses: actions-rs/[email protected]
with:
toolchain: nightly
override: true
- name: Modify version if release-tag
if: startsWith(github.ref, 'refs/tags/')
run: |
cargo install cargo-bump --force \
&& cargo bump ${{ github.ref_name }}
- name: Automatic commit for version upgrade
if: startsWith(github.ref, 'refs/tags/')
uses: stefanzweifel/git-auto-commit-action@v4
with:
branch: master
commit_message: "Cargo: Update the navigator-lib version to ${{ github.ref_name }}"
- name: Store the head actual hash
id: head-hash
run: echo "head_hash=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT
build-cpp:
needs: version-manager
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- TARGET: armv7-unknown-linux-gnueabihf
- TARGET: aarch64-unknown-linux-gnu
- TARGET: armv7-unknown-linux-musleabihf
- TARGET: aarch64-unknown-linux-musl
steps:
- name: Building ${{ matrix.TARGET }}
run: echo "${{ matrix.TARGET }}"
- uses: actions/checkout@v3
with:
ref: ${{ needs.version-manager.outputs.head_hash }}
- name: Rust Setup
uses: actions-rs/[email protected]
with:
toolchain: nightly
target: ${{ matrix.TARGET }}
override: true
- name: Rust Cache
uses: Swatinem/rust-cache@v2
with:
prefix-key: "rust-cache"
shared-key: "build-cpp-${{ matrix.TARGET }}"
- name: Rust Cross Build Cpp
uses: actions-rs/cargo@v1
with:
use-cross: true
command: build
args: --verbose --release --target=${{ matrix.TARGET }} -Z unstable-options --out-dir output/
- name: Move to it's target
run: |
mkdir dist
mkdir "dist/${{ matrix.TARGET }}"
mv output/* "dist/${{ matrix.TARGET }}"
mv target/release/bindings.h dist/
- name: Upload bin
uses: actions/upload-artifact@v3
with:
name: cpp
path: dist
build-python:
needs: version-manager
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
target: [aarch64, armv7]
libc: [auto, musllinux_1_1]
steps:
- uses: actions/checkout@v3
with:
ref: ${{ needs.version-manager.outputs.head_hash }}
- uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.target }}
args: --release --out dist
manylinux: ${{ matrix.libc }}
- uses: uraimo/run-on-arch-action@master
if: matrix.libc == 'auto'
name: Install built wheel manylinux
with:
arch: ${{ matrix.target }}
distro: bullseye
githubToken: ${{ github.token }}
install: |
apt-get update
apt-get install -y --no-install-recommends python3 python3-pip
pip3 install -U pip
run: |
pip3 install bluerobotics_navigator --no-index --find-links dist/ --force-reinstall
- uses: uraimo/run-on-arch-action@master
if: matrix.libc == 'musllinux_1_1'
name: Install built wheel musl
with:
arch: ${{ matrix.target}}
distro: alpine_latest
githubToken: ${{ github.token }}
install: |
apk add py3-pip
run: |
python3 -m venv ./venv
. ./venv/bin/activate
pip3 install -U pip
pip3 install bluerobotics_navigator --no-index --find-links dist/ --force-reinstall
- name: Upload wheels
uses: actions/upload-artifact@v3
with:
name: python
path: dist
raspberry-test-python:
needs: build-python
if: ${{ github.repository_owner == 'bluerobotics' }}
runs-on: raspbian-armv7-kernel-5.10.33
steps:
- uses: actions/checkout@v3
with:
ref: ${{ needs.version-manager.outputs.head_hash }}
- name: Download wheels
uses: actions/download-artifact@v3
with:
name: python
path: dist
- name: Install built wheel
run: |
sudo apt-get update
sudo apt-get install -y --no-install-recommends python3 python3-pip
pip3 install -U pip
pip3 install bluerobotics_navigator --no-index --find-links dist/ --force-reinstall
- name: Check Python main example
run: |
export CI=false
python examples/python/main.py
python-release-pypi:
needs: [raspberry-test-python]
runs-on: ubuntu-latest
if: "startsWith(github.ref, 'refs/tags/')"
permissions:
id-token: write
steps:
- uses: actions/download-artifact@v3
with:
name: python
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
packages-dir: .
release-assets:
needs: ["build-cpp","raspberry-test-python"]
runs-on: ubuntu-latest
if: "startsWith(github.ref, 'refs/tags/')"
steps:
- name: Download cpp artifacts
uses: actions/download-artifact@v2
with:
name: cpp
path: cpp
- name: Download python artifacts
uses: actions/download-artifact@v2
with:
name: python
path: python
- name: Compress artifacts
run: |
sudo apt update
sudo apt install -y zip
cd cpp
zip -rT ../cpp.zip *
cd ../python
zip -rT ../python.zip *
- name: Upload assets to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ./*.zip
tag: ${{ github.ref }}
file_glob: true
deploy-doc:
needs: version-manager
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/[email protected]
with:
toolchain: nightly
override: true
- name: Build docs
run: pip install hatch && hatch run dev:build-doc
# Move it to its own folder
- name: Move python documentation
run: mkdir -p pages/python && mv docs/_build/* pages/python/
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.ref == 'refs/heads/master' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./pages