Format code #44
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: | |
| pull_request: | |
| push: | |
| branches: ['main', 'develop'] | |
| jobs: | |
| Init: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: "Checkout" | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: "Install ARM Toolchain" | |
| uses: carlosperate/arm-none-eabi-gcc-action@v1 | |
| with: | |
| release: '10-2020-q4' | |
| - name: "Build Dependencies" | |
| working-directory: ${{runner.workspace}}/flora | |
| run: ./scripts/build.sh | |
| - name: "Build Example" | |
| working-directory: ${{runner.workspace}}/flora/patches/init/kudzu | |
| run: make | |
| Pod: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: "Checkout" | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: "Install ARM Toolchain" | |
| uses: carlosperate/arm-none-eabi-gcc-action@v1 | |
| with: | |
| release: '10-2020-q4' | |
| - name: "Build Dependencies" | |
| working-directory: ${{runner.workspace}}/flora | |
| run: ./scripts/build.sh | |
| - name: "Build Example" | |
| working-directory: ${{runner.workspace}}/flora/patches/pod/lily | |
| run: make | |
| Seed: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: "Checkout" | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: "Install ARM Toolchain" | |
| uses: carlosperate/arm-none-eabi-gcc-action@v1 | |
| with: | |
| release: '10-2020-q4' | |
| - name: "Build Dependencies" | |
| working-directory: ${{runner.workspace}}/flora | |
| run: ./scripts/build.sh | |
| - name: "Build Example" | |
| working-directory: ${{runner.workspace}}/flora/patches/seed/daisy | |
| run: make |