Skip to content

Commit 7223da3

Browse files
committed
Fixup build paths and add to main readme
1 parent 9ef509c commit 7223da3

File tree

3 files changed

+19
-14
lines changed

3 files changed

+19
-14
lines changed

.github/workflows/build-raspi.yaml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Build Rasperry Pi Sample
2+
on: [push]
3+
4+
jobs:
5+
build:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v2
9+
- name: Build for armv7-unknown-linux-gnueabihf
10+
uses: actions-rs/cargo@v1
11+
working-directory: ./examples-raspi
12+
with:
13+
use-cross: true
14+
command: build
15+
args: --target armv7-unknown-linux-gnueabihf

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,10 @@ fn HardFault(ef: &ExceptionFrame) -> ! {
9393

9494
```
9595

96+
## Raspberry Pi
97+
98+
A sample project is available under [examples-raspi](./examples-raspi)
99+
96100
## License
97101

98102
Licensed under either of

examples-raspi/.github/workflows/build-raspi.yaml

-14
This file was deleted.

0 commit comments

Comments
 (0)