add support for Microchip PIC32CZ and PIC32CK #2190
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: Footprint test | |
| on: | |
| push: | |
| branches: [ 'master', 'main', 'release/**' ] | |
| pull_request: | |
| branches: [ '*' ] | |
| jobs: | |
| footprint_test: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| # Get the arm-non-eabi-gcc toolchain | |
| - name: Install arm-none-eabi-gcc | |
| run : | | |
| sudo apt-get install -y gcc-arm-none-eabi | |
| - name: make clean | |
| run: | | |
| make keysclean && rm -f include/target.h | |
| - name: Install wolfSSL | |
| run: | | |
| sudo apt-get install --no-install-recommends -y -q make libwolfssl-dev | |
| - name: Select config | |
| run: | | |
| cp config/examples/stm32f4.config .config && make include/target.h | |
| - name: Build key tools | |
| run: | | |
| make keytools | |
| - name: Build wolfboot and test footprint | |
| run: | | |
| make test-size-all | |