Skip to content

Commit

Permalink
Create build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
vChavezB committed Apr 12, 2024
1 parent 573d721 commit fff37cd
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
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
steps:
- name: Checkout
uses: actions/checkout@v3
with:
path: BLES
- name: Path Check
run: ls
- name: Initialize
working-directory: ZSWatch
run: |
west init /tmp/ --mr v$ZEPHYR_VERSION
west update -o=--depth=1 -n
- name: Build
working-directory: ZSWatch
run: |
west build app -b native_sim

0 comments on commit fff37cd

Please sign in to comment.