ports:unix:Makefile: update SRC_MOD for to ASI_TARGET=ASI2900 to comp… #12
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: stm32 port | |
| on: | |
| push: | |
| pull_request: | |
| paths: | |
| - '.github/workflows/*.yml' | |
| - 'tools/**' | |
| - 'py/**' | |
| - 'extmod/**' | |
| - 'lib/**' | |
| - 'drivers/**' | |
| - 'ports/stm32/**' | |
| jobs: | |
| build_pyb: | |
| runs-on: ubuntu-20.04 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Install packages | |
| run: source tools/ci.sh && ci_stm32_setup | |
| - name: Build | |
| run: source tools/ci.sh && ci_stm32_pyb_build | |
| build_nucleo: | |
| runs-on: ubuntu-20.04 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Install packages | |
| run: source tools/ci.sh && ci_stm32_setup | |
| - name: Build | |
| run: source tools/ci.sh && ci_stm32_nucleo_build |