Update ports_quectel.yml #17
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build port / build(push) | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| - name: Install tools | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y gcc-arm-none-eabi binutils-arm-none-eabi libnewlib-arm-none-eabi | |
| curl -L "https://github.com/QuecPython/toolchain/releases/download/V1.1.0/helios-toolchain" -o $HOME/helios-toolchain | |
| chmod +x $HOME/helios-toolchain | |
| cd $HOME/ | |
| ./helios-toolchain | |
| echo "$HOME/helios/bin" >> $GITHUB_PATH | |
| - name: Build Firmware | |
| run: | | |
| make -C mpy-cross | |
| cd ports/quectel | |
| make submodules | |
| make BOARD=EC600UCN_LB |