Skip to content

Merge branch 'ci_cd' of https://github.com/vChavezB/ble_utils into ci_cd #22

Merge branch 'ci_cd' of https://github.com/vChavezB/ble_utils into ci_cd

Merge branch 'ci_cd' of https://github.com/vChavezB/ble_utils into ci_cd #22

Workflow file for this run

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: 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
- name: Build Uptime Sample
working-directory: /tmp/
run: |
west build $GITHUB_WORKSPACE/samples/uptime -b $BOARD --build-dir $GITHUB_WORKSPACE/build_uptime
- name: Build Central
working-directory: /tmp/
run: |
west build $GITHUB_WORKSPACE/test/renode/uptime_central -b $BOARD --build-dir $GITHUB_WORKSPACE/build_central