We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36e24a4 commit 1ec3293Copy full SHA for 1ec3293
.github/workflows/linux_build.yml
@@ -0,0 +1,25 @@
1
+name: linux develop build "GCC with Make"
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
+ pull_request:
7
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
22
+ run: pip install -r requirements.txt
23
24
+ - name: build
25
+ run: progen build -t make_gcc_arm
0 commit comments