Skip to content

Commit 68d9acd

Browse files
committed
Added some samples building to pipeline workflow.
1 parent 6f637ef commit 68d9acd

File tree

1 file changed

+18
-2
lines changed

1 file changed

+18
-2
lines changed

.github/workflows/zephyr.yml

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,30 @@ jobs:
2525
west init -l .
2626
west update
2727
28+
- name: Samples - Hello World
29+
working-directory: bacnet
30+
run: |
31+
west build -p always -b native_posix zephyr/samples/hello_world
32+
33+
- name: Samples - BACnet Profile B-SS
34+
working-directory: bacnet
35+
run: |
36+
west build -b nucleo_f429zi -p always bacnet/zephyr/samples/profiles/b-ss/
37+
38+
- name: Archive Firmware
39+
uses: actions/upload-artifact@v4
40+
with:
41+
name: firmware
42+
path: bacnet/build
43+
2844
- name: Twister Tests unit_testing
2945
working-directory: bacnet
3046
run: |
3147
pwd
3248
./unittest.sh
3349
34-
- name: Archive firmware
50+
- name: Archive Test Results
3551
uses: actions/upload-artifact@v4
3652
with:
37-
name: firmware
53+
name: unit_testing
3854
path: bacnet/twister-out.unit_testing

0 commit comments

Comments
 (0)