Skip to content

Always activate RTOS decoding in OpenOCD, switch to Gigadevice provid… #236

Always activate RTOS decoding in OpenOCD, switch to Gigadevice provid…

Always activate RTOS decoding in OpenOCD, switch to Gigadevice provid… #236

Workflow file for this run

name: Examples
on: [push, pull_request]
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.10"]
example:
- "examples/gd32-arduino-blinky"
- "examples/gd32-mbedos-baremetal-blinky"
- "examples/gd32-spl-blinky"
- "examples/gd32-w51x-wifi-scan"
- "examples/gd32-e503c_start-spl-blinky"
- "examples/zephyr-blink"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
submodules: "recursive"
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -U https://github.com/platformio/platformio/archive/develop.zip
platformio platform install file://.
- name: Build examples
run: |
platformio run -d ${{ matrix.example }}