Zephyr #220
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: Zephyr | |
| on: | |
| schedule: | |
| - cron: '0 0 * * *' # run at 12 AM UTC | |
| # Allow manual runs | |
| workflow_dispatch: | |
| jobs: | |
| zephyr_examples: | |
| runs-on: ubuntu-24.04 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| revno: ["--mr v3.7-branch", "--mr v4.2.0", "--mr v4.3.0"] # LTS, latest stable | |
| name: Zephyr ${{ matrix.revno }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: { fetch-depth: 2 } | |
| - run: test/setup_ga_docker_filesystem.sh | |
| - run: make -C tutorials/zephyr init REPO=zephyrprojectrtos/ci REVNO="${{ matrix.revno }}" | |
| - run: make -C tutorials/zephyr minify REVNO="${{ matrix.revno }}" | |
| - run: make -C tutorials/zephyr update | |
| - run: make -C tutorials/zephyr/device-dashboard build | |
| - run: make -C tutorials/zephyr/http-client build | |
| - run: make -C tutorials/zephyr/http-server build | |
| - run: make -C tutorials/zephyr/mqtt-aws-client build | |
| - run: make -C tutorials/zephyr/websocket-server build |