experimental tests with bumble framework #24
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
# Copyright (c) 2024, Victor Chavez ([email protected]) | |
# SPDX-License-Identifier: Apache-2.0 | |
name: Build | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
container: ghcr.io/zephyrproject-rtos/ci:v0.26.2 | |
env: | |
CMAKE_PREFIX_PATH: /opt/toolchains | |
ZEPHYR_VERSION: 3.6.0 | |
# Board to use with renode | |
BOARD: nrf52840dk_nrf52840 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Initialize | |
run: | | |
cd /tmp/ | |
west init --mr v$ZEPHYR_VERSION | |
west update -o=--depth=1 -n | |
# Sample as DUT for testing with Renode | |
- name: Build Uptime Sample | |
working-directory: /tmp/ | |
run: | | |
west build $GITHUB_WORKSPACE/samples/uptime -b $BOARD --build-dir $GITHUB_WORKSPACE/samples/uptime/build | |
# BLE Central for testing with Renode | |
- name: Build Central | |
working-directory: /tmp/ | |
run: | | |
west build $GITHUB_WORKSPACE/tests/renode/ble_central -b $BOARD --build-dir $GITHUB_WORKSPACE/tests/renode/ble_central/build | |
# Posix build for debugging with bluetooth virtual controller | |
- name: Build Posix | |
working-directory: /tmp/ | |
run: | | |
west build $GITHUB_WORKSPACE/samples/uptime -b native_posix_64 --build-dir $GITHUB_WORKSPACE/samples/uptime/build_posix -- -DOVERLAY_CONFIG=$GITHUB_WORKSPACE/samples/uptime/boards/native_posix_64.conf | |
- name : Upload Firmware | |
uses: actions/upload-artifact@v4 | |
with: | |
name: zephyr-build | |
path: | | |
samples/uptime/build/zephyr/zephyr.elf | |
samples/uptime/build_posix/zephyr/zephyr.exe | |
tests/renode/ble_central/build/zephyr/zephyr.elf | |
test: | |
needs: build | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
- name: Download zephyr binaries | |
uses: actions/download-artifact@v4 | |
with: | |
name: zephyr-build | |
- name: Run tests on latest Renode | |
uses: antmicro/[email protected] | |
with: | |
renode-version: '1.13.3' | |
tests-to-run: 'tests/renode/uptime_test.robot' | |
renode-path: renode-1.13 | |
artifacts-path: ${{ github.workspace }} | |
- name: Archive latest results | |
uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: test-results-latest | |
path: | | |
report.html | |
log.html | |
robot_output.xml | |