Add RIOT federated CoAP example and fix CoapUdpIp channel implementation #370
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: "Platform: Zephyr" | |
on: | |
pull_request: | |
jobs: | |
ci: | |
name: Build examples | |
runs-on: ubuntu-latest | |
env: | |
REACTOR_UC_PATH: ${{ github.workspace }} | |
steps: | |
- 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 | |