Skip to content

Commit 1457322

Browse files
Damian-Nordicpull[bot]
authored andcommitted
[nrfconnect] Fix build on master (#24340)
Add missing configuration switches to the test driver. Signed-off-by: Damian Krolik <[email protected]> Signed-off-by: Damian Krolik <[email protected]>
1 parent 2d9da37 commit 1457322

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/examples-nrfconnect.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ jobs:
231231
examples/all-clusters-app/nrfconnect/build/zephyr/zephyr.elf \
232232
/tmp/bloat_reports/
233233
- name: Run unit tests for Zephyr native_posix_64 platform
234-
if: github.event_name == 'push' || steps.changed_paths.outputs.tests == 'true'
234+
if: github.event_name == 'push' || steps.changed_paths.outputs.tests == 'true' || steps.changed_paths.outputs.nrfconnect == 'true'
235235
timeout-minutes: 15
236236
run: |
237237
scripts/run_in_build_env.sh "./scripts/build/build_examples.py --target nrf-native-posix-64-tests build"

src/test_driver/nrfconnect/prj.conf

+3-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,9 @@ CONFIG_MBEDTLS_CFG_FILE="config-tls-generic.h"
6767
CONFIG_MBEDTLS_USER_CONFIG_ENABLE=y
6868
CONFIG_MBEDTLS_USER_CONFIG_FILE="app_mbedtls_config.h"
6969
CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED=y
70-
CONFIG_MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED=y
70+
CONFIG_MBEDTLS_ECDH_C=y
71+
CONFIG_MBEDTLS_ECDSA_C=y
72+
CONFIG_MBEDTLS_ECP_C=y
7173
CONFIG_MBEDTLS_CIPHER_CCM_ENABLED=y
7274

7375
# Enable entropy

0 commit comments

Comments
 (0)