Skip to content

Commit 02df061

Browse files
committed
actions: Add main-yml action configuration
1 parent d2e636b commit 02df061

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/main.yml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
on:
2+
push:
3+
branches:
4+
- develop
5+
- feature/*
6+
workflow_dispatch:
7+
8+
jobs:
9+
build:
10+
name: build
11+
runs-on: ubuntu-latest
12+
steps:
13+
14+
- name: arm-none-eabi-gcc GNU Arm Embedded Toolchain
15+
uses: carlosperate/arm-none-eabi-gcc-action@v1.8.1
16+
with:
17+
18+
- name: Install dependencies
19+
run: pip install -r requirements.txt
20+
21+
- name: Select the port
22+
run: defconfig config/nwdaq_br28_fdc_defconfig
23+
24+
- name: Compile
25+
run: scons firmware

0 commit comments

Comments
 (0)