40
40
BSIM_OUT_PATH : /opt/bsim/
41
41
BSIM_COMPONENTS_PATH : /opt/bsim/components
42
42
EDTT_PATH : ../tools/edtt
43
- bsim_bluetooth_test_results_file : ./bsim_bluetooth/bsim_results.xml
44
- bsim_networking_test_results_file : ./bsim_net/bsim_results.xml
43
+ bsim_bt_52_test_results_file : ./bsim_bt/52_bsim_results.xml
44
+ bsim_bt_53_test_results_file : ./bsim_bt/53_bsim_results.xml
45
+ bsim_net_52_test_results_file : ./bsim_net/52_bsim_results.xml
45
46
steps :
46
47
- name : Apply container owner mismatch workaround
47
48
run : |
@@ -133,16 +134,22 @@ jobs:
133
134
if : steps.check-bluetooth-files.outputs.any_changed == 'true' || steps.check-common-files.outputs.any_changed == 'true'
134
135
run : |
135
136
export ZEPHYR_BASE=${PWD}
136
- WORK_DIR=${ZEPHYR_BASE}/bsim_bluetooth nice tests/bsim/bluetooth/compile.sh
137
- RESULTS_FILE=${ZEPHYR_BASE}/${bsim_bluetooth_test_results_file } \
137
+ WORK_DIR=${ZEPHYR_BASE}/bsim_bt nice tests/bsim/bluetooth/compile.sh
138
+ RESULTS_FILE=${ZEPHYR_BASE}/${bsim_bt_52_test_results_file } \
138
139
SEARCH_PATH=tests/bsim/bluetooth/ tests/bsim/run_parallel.sh
140
+ # Run the BT controller tests also for the nrf5340
141
+ BOARD=nrf5340bsim_nrf5340_cpunet \
142
+ WORK_DIR=${ZEPHYR_BASE}/bsim_bt nice tests/bsim/bluetooth/ll/compile.sh
143
+ BOARD=nrf5340bsim_nrf5340_cpunet \
144
+ RESULTS_FILE=${ZEPHYR_BASE}/${bsim_bt_53_test_results_file} \
145
+ SEARCH_PATH=tests/bsim/bluetooth/ll/ tests/bsim/run_parallel.sh
139
146
140
147
- name : Run Networking Tests with BSIM
141
148
if : steps.check-networking-files.outputs.any_changed == 'true' || steps.check-common-files.outputs.any_changed == 'true'
142
149
run : |
143
150
export ZEPHYR_BASE=${PWD}
144
151
WORK_DIR=${ZEPHYR_BASE}/bsim_net nice tests/bsim/net/compile.sh
145
- RESULTS_FILE=${ZEPHYR_BASE}/${bsim_networking_test_results_file } \
152
+ RESULTS_FILE=${ZEPHYR_BASE}/${bsim_net_52_test_results_file } \
146
153
SEARCH_PATH=tests/bsim/net/ tests/bsim/run_parallel.sh
147
154
148
155
- name : Upload Test Results
@@ -151,8 +158,9 @@ jobs:
151
158
with :
152
159
name : bsim-test-results
153
160
path : |
154
- ./bsim_bluetooth/bsim_results.xml
155
- ./bsim_net/bsim_results.xml
161
+ ./bsim_bt/52_bsim_results.xml
162
+ ./bsim_bt/53_bsim_results.xml
163
+ ./bsim_net/52_bsim_results.xml
156
164
${{ github.event_path }}
157
165
if-no-files-found : warn
158
166
0 commit comments