We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b0532e commit 2619ce4Copy full SHA for 2619ce4
1 file changed
.github/workflows/build.yml
@@ -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