Skip to content

Commit c270552

Browse files
committed
quectel: Add a ci check for quectel port.
1 parent 58fab0f commit c270552

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: quectel port
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+
13+
- name: Install tools
14+
run: |
15+
sudo apt-get update
16+
sudo apt-get install -y gcc-arm-none-eabi binutils-arm-none-eabi
17+
curl -L http://archive.ubuntu.com/ubuntu/pool/main/i/icu/libicu55_55.1-7ubuntu0.5_amd64.deb -o libicu55.deb
18+
sudo dpkg -i libicu55.deb || true
19+
curl -L "https://github.com/QuecPython/toolchain/releases/download/V1.1.0/helios-toolchain" -o $HOME/helios-toolchain
20+
chmod +x $HOME/helios-toolchain
21+
cd $HOME/
22+
./helios-toolchain
23+
echo "$HOME/helios/bin" >> $GITHUB_PATH
24+
25+
- name: Build Firmware
26+
run: |
27+
make -C mpy-cross
28+
cd ports/quectel
29+
make submodules
30+
make BOARD=EC600UCN_LB

0 commit comments

Comments
 (0)