SSBL STM32N657x #126
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: Compile targets | |
| on: | |
| push: | |
| branches: | |
| - 'master' | |
| pull_request: | |
| branches: | |
| - '*' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| config: [ | |
| nucleo_h755zi, | |
| nucleo_h755zi_ram, | |
| matek_H7_slim, | |
| matek_H7_slim secure=true, | |
| matek_H7_slim_ram, | |
| matek_H7_slim_ram secure=true, | |
| pixhawk4, | |
| pixhawk4_ram, | |
| stm32l4xx, | |
| stm32f7xx, | |
| stm32f7xx_ram, | |
| stm32h7xx, | |
| stm32h7xx secure=true, | |
| stm32h7xx_ram, | |
| stm32h7xx_ram secure=true, | |
| stm32h735g_dk, | |
| stm32h735g_dk_ram | |
| ] | |
| container: | |
| image: igormisic/improject:v1.0.2 | |
| options: --privileged --ulimit core=-1 --security-opt seccomp=unconfined | |
| steps: | |
| - uses: actions/checkout@v2 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| submodules: 'true' | |
| - name: make ${{matrix.config}} | |
| run: make ${{matrix.config}} |