We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8f768a commit ed73df5Copy full SHA for ed73df5
1 file changed
.github/workflows/run-tests.yml
@@ -95,6 +95,14 @@ jobs:
95
target: zephyr-cp
96
- name: Set up external
97
uses: ./.github/actions/deps/external
98
+ - name: Link Zephyr workspace into port tree
99
+ run: |
100
+ cd ports/zephyr-cp
101
+ for dir in zephyr modules tools bootloader; do
102
+ [ ! -e "$dir" ] && ln -s "/opt/zephyr-workspace/$dir" "$dir"
103
+ done
104
+ mkdir -p .west
105
+ printf '[manifest]\npath = zephyr-config\n\n[zephyr]\nbase = zephyr\n' > .west/config
106
- name: Build native sim target
107
run: make -C ports/zephyr-cp -j2 BOARD=native_native_sim
108
- name: Build bsim
0 commit comments