New build system #6
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: Package standalone artifacts and build | |
on: | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: install dependencies | |
run: sudo apt install gcc-arm-none-eabi | |
- name: Package standalone artificats | |
run: | | |
make -j$(nproc) standalone | |
- name: Make sure all standalone artifacts build | |
run: | | |
for standalone in standalone/*; do make -C $standalone; done |