We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 681aa49 commit e7a8c43Copy full SHA for e7a8c43
1 file changed
.github/workflows/ports_quectel.yml
@@ -0,0 +1,32 @@
1
+name: Build Firmware (Native)
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
9
+ steps:
10
+ - name: Checkout Repository
11
+ uses: actions/checkout@v4
12
+ with:
13
+ submodules: 'recursive'
14
+ fetch-depth: 0
15
16
+ - name: Install Special SDK Tool
17
+ run: |
18
+ curl -L "https://github.com/QuecPython/toolchain/releases/download/V1.1.0/helios-toolchain" -o /root/helios-toolchain
19
+ chmod +x /root/helios-toolchain
20
+ cd /root
21
+ helios-toolchain
22
+ cd /helios/bin
23
+ helios
24
+ echo "/helios/bin" >> $GITHUB_PATH
25
26
+ - name: Build mpy-cross
27
+ run: make -C mpy-cross
28
29
+ - name: Build Firmware
30
31
+ make submodules
32
+ make BOARD=EC600UCN_LB
0 commit comments