We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ef509c commit 7223da3Copy full SHA for 7223da3
.github/workflows/build-raspi.yaml
@@ -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
@@ -93,6 +93,10 @@ fn HardFault(ef: &ExceptionFrame) -> ! {
93
94
```
95
96
+## Raspberry Pi
97
98
+A sample project is available under [examples-raspi](./examples-raspi)
99
100
## License
101
102
Licensed under either of
examples-raspi/.github/workflows/build-raspi.yaml
0 commit comments