Skip to content

Commit 7c5bcd4

Browse files
committed
First attempt to bring in arm-gcc
1 parent 6de78c5 commit 7c5bcd4

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/main.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
#
2+
# Author lea_calot
3+
#
4+
name: FirmwareBuild
5+
6+
on:
7+
push:
8+
branches: [ ]
9+
tags:
10+
- 'v*'
11+
workflow_dispatch:
12+
13+
jobs:
14+
lint_python_samples:
15+
runs-on: ubuntu-22.04
16+
steps:
17+
- name: Install Arm GNU Toolchain (arm-none-eabi-gcc)
18+
uses: carlosperate/arm-none-eabi-gcc-action@v1
19+
with:
20+
release: '11.2-2022.02'
21+
- name: Check out repository
22+
uses: actions/checkout@v4
23+
with:
24+
path: NeoDK
25+
- name: Install arm-none-eabi-gcc
26+
run: |
27+
arm-none-eabi-gcc --version
28+
which arm-none-eabi-gcc
29+

0 commit comments

Comments
 (0)