Skip to content

Commit 2619ce4

Browse files
kleonickdesaulniers
authored andcommitted
build: github actions
1 parent 5b0532e commit 2619ce4

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: build
2+
on: [push, pull_request]
3+
4+
jobs:
5+
build:
6+
runs-on: ubuntu-20.04
7+
steps:
8+
- uses: actions/checkout@v2
9+
- run: |
10+
sudo apt-get install -y gcc-arm-none-eabi binutils-arm-none-eabi build-essential git python3-pip
11+
- run: pip3 install -U git+https://github.com/TuxSH/firmtool.git
12+
- run: make
13+
env:
14+
CC: arm-none-eabi-gcc
15+
- uses: actions/upload-artifact@v2
16+
with:
17+
name: firm_linux_loader
18+
path: ./firm_linux_loader.firm

0 commit comments

Comments
 (0)