Skip to content

Commit e7a8c43

Browse files
authored
Create ports_quectel.yml
Signed-off-by: Nikola Neskovic <nikola.neskovic@quectel.com>
1 parent 681aa49 commit e7a8c43

1 file changed

Lines changed: 32 additions & 0 deletions

File tree

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
run: |
31+
make submodules
32+
make BOARD=EC600UCN_LB

0 commit comments

Comments
 (0)