Skip to content

Commit 5605f34

Browse files
committed
Add upload steps for Twister results in Zephyr workflow
1 parent b1203a0 commit 5605f34

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

.github/workflows/zephyr.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,24 @@ jobs:
4242
ls -alh
4343
echo "== Run Docker image from GHCR"
4444
docker run --rm -v "$(pwd):/bacnet" "$ZEPHYR_CONTAINER" /bin/bash -c "$DOCKER_RUN_TARGET"
45+
- name: Upload sample Twister results
46+
if: ${{ always() }}
47+
uses: actions/upload-artifact@v4
48+
with:
49+
name: twister-out.samples
50+
path: twister-out.samples
51+
if-no-files-found: warn
52+
- name: Upload unit_testing Twister results
53+
if: ${{ always() }}
54+
uses: actions/upload-artifact@v4
55+
with:
56+
name: twister-out.unit_testing
57+
path: twister-out.unit_testing
58+
if-no-files-found: warn
59+
- name: Upload native_sim Twister results
60+
if: ${{ always() }}
61+
uses: actions/upload-artifact@v4
62+
with:
63+
name: twister-out.native_sim
64+
path: twister-out.native_sim
65+
if-no-files-found: warn

0 commit comments

Comments
 (0)