doc: update documentation. #10
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: Twister Zephyr Samples | |
on: | |
push: | |
pull_request: | |
schedule: | |
# Run at 03:00 UTC on every Sunday | |
- cron: "0 3 * * 0" | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-22.04, macos-13, macos-14, windows-2022] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
path: imxrt1011-nanokit | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.11 | |
- name: Setup Zephyr project | |
uses: zephyrproject-rtos/action-zephyr-setup@v1 | |
with: | |
app-path: imxrt1011-nanokit | |
toolchains: arm-zephyr-eabi | |
- name: Twister Zephyr Samples | |
working-directory: imxrt1011-nanokit | |
shell: bash | |
run: | | |
if [ "${{ runner.os }}" = "Windows" ]; then | |
EXTRA_TWISTER_FLAGS="--short-build-path -O/tmp/twister-out" | |
fi | |
west twister -T samples/zephyr -v --inline-logs --integration $EXTRA_TWISTER_FLAGS |