Add support for Ports of Type void #1377
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: "Platform: Zephyr" | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| jobs: | |
| ci: | |
| name: Build examples | |
| runs-on: ubuntu-24.04 | |
| env: | |
| REACTOR_UC_PATH: ${{ github.workspace }} | |
| steps: | |
| - name: Free Disk Space (Ubuntu) | |
| uses: jlumbroso/free-disk-space@main | |
| with: | |
| tool-cache: false | |
| android: true | |
| dotnet: true | |
| haskell: true | |
| large-packages: true | |
| docker-images: true | |
| swap-storage: true | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| with: | |
| submodules: recursive | |
| - name: Install Zephyr dependencies | |
| uses: ./.github/actions/zephyr | |
| - name: Install LFC dependencies | |
| uses: ./.github/actions/lingua-franca | |
| - name: Build examples | |
| working-directory: ${{ github.workspace }}/examples/zephyr | |
| run: ./buildAll.sh | |
| - name: Run template tests | |
| working-directory: ${{env.ZEPHYR_TEMPLATE_DIR}} | |
| run: ./.github/scripts/run-all.sh | |