Skip to content

Commit 868b59a

Browse files
authored
add a workflow for github actions to build (#3)
1 parent 66db730 commit 868b59a

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/build.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Build IMU-F
2+
on: [push, pull_request]
3+
jobs:
4+
build:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v2
8+
- uses: fiam/arm-none-eabi-gcc@v1
9+
with:
10+
release: '9-2019-q4' # The arm-none-eabi-gcc release to use.
11+
- uses: actions/setup-python@v1
12+
- name: Make
13+
run: |
14+
./make.py -T=F3
15+
- name: Upload artifcats
16+
uses: actions/upload-artifact@v2-preview
17+
with:
18+
name: firmware
19+
path: output/F3.bin

0 commit comments

Comments
 (0)