Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions .github/workflows/zephyr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Zephyr Build Test

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:
runs-on: ubuntu-latest
container:
image: zephyrprojectrtos/ci:latest
options: --user root

steps:
- uses: actions/checkout@v3
with:
path: wolfTPM

- name: Initialize
working-directory: wolfTPM
run: |
west init -l .
west update

- name: Build and Test
working-directory: wolfTPM
run: |
./zephyr/scripts/twister --testsuite-root modules/lib/wolftpm --test zephyr/samples/wolftpm_wrap_caps/sample.lib.wolftpm_wrap_caps -vvv
Loading