Update ports_quectel.yml #4
Workflow file for this run
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 Firmware (Native) | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: 'recursive' | |
| fetch-depth: 0 | |
| - name: Install Special SDK Tool | |
| run: | | |
| mkdir -p $HOME/helios | |
| curl -L "https://github.com/QuecPython/toolchain/releases/download/V1.1.0/helios-toolchain" -o $HOME/helios | |
| chmod +x $HOME/helios/helios-toolchain | |
| cd $HOME/helios | |
| helios-toolchain | |
| cd $HOME/helios/helios/bin | |
| helios | |
| echo "$HOME/helios/helios/bin" >> $GITHUB_PATH | |
| - name: Build mpy-cross | |
| run: make -C mpy-cross | |
| - name: Build Firmware | |
| run: | | |
| make submodules | |
| make BOARD=EC600UCN_LB |