Bump cpp-linter/cpp-linter-action from 91cfe27ea9f72194d7a74c64bcd71f6613446cb1 to 1a1ea41e4c75ad7d2cf857dd86843fad8754674a #418
Workflow file for this run
This file contains 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-20.04 | |
steps: | |
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 | |
- 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 |