File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments