chore(deps): Bump cpp-linter/cpp-linter-action from 0b93f5833680005fbb233652d0e3d8835b3cc2f3 to 06e25f1ffabd1ff9429b75163afe4f183ee6a64e #640
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 | |
| on: [push, pull_request] | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| platform: [numaker_pfm_m2351, m2351_badge, mps2_an505_qemu] | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 | |
| - name: Install extra tools | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y make build-essential libncurses5-dev libssl-dev libcurl4-openssl-dev | |
| - name: Build the project | |
| run: | | |
| make PLATFORM=${{ matrix.platform }} create_context | |
| make toolchain | |
| make |