Skip to content

Commit 1ec3293

Browse files
committed
add linux build github action for 'GCC with Make'
1 parent 36e24a4 commit 1ec3293

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/linux_build.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: linux develop build "GCC with Make"
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- uses: actions/checkout@v3
16+
- uses: syphar/restore-virtualenv@v1
17+
18+
- name: install requirements
19+
run: sudo apt-get install -y gcc-arm-none-eabi
20+
21+
- name: install requirements
22+
run: pip install -r requirements.txt
23+
24+
- name: build
25+
run: progen build -t make_gcc_arm

0 commit comments

Comments
 (0)