Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ jobs:
make -C build/ coverage

# Generate coverage report, excluding extra directories
lcov --rc lcov_branch_coverage=1 -r build/coverage.info -o build/coverage.info '*test*' '*CMakeCCompilerId*' '*mocks*'
lcov --rc lcov_branch_coverage=1 -r build/coverage.info -o build/coverage.info
echo "::endgroup::"

lcov --rc lcov_branch_coverage=1 --list build/coverage.info
Expand Down Expand Up @@ -183,7 +183,7 @@ jobs:
path: ./

formatting:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check formatting
Expand Down
4 changes: 2 additions & 2 deletions tools/mbedtls.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ include(FetchContent)

set(FETCHCONTENT_QUIET OFF)

set(MBEDTLS_2_VERSION 2.28.8)
set(MBEDTLS_2_VERSION 2.28.10)

FetchContent_Declare(
mbedtls_2
Expand Down Expand Up @@ -52,7 +52,7 @@ if(NOT TARGET MbedTLS2_mbedtls)
add_library(MbedTLS2::interface ALIAS MbedTLS2_interface)
endif()

set(MBEDTLS_3_VERSION 3.6.0)
set(MBEDTLS_3_VERSION 3.6.3)

FetchContent_Declare(
mbedtls_3
Expand Down
1 change: 1 addition & 0 deletions tools/mbedtls_configure.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ cp "${MBEDTLS_DIR}/include/mbedtls/${CONFIG}" mbedtls_config_patch.h
"${MBEDTLS_DIR}/scripts/config.py" --file mbedtls_config_patch.h unset MBEDTLS_PSA_CRYPTO_SE_C
"${MBEDTLS_DIR}/scripts/config.py" --file mbedtls_config_patch.h unset MBEDTLS_LMS_C
"${MBEDTLS_DIR}/scripts/config.py" --file mbedtls_config_patch.h unset MBEDTLS_LMS_PRIVATE
"${MBEDTLS_DIR}/scripts/config.py" --file mbedtls_config_patch.h unset MBEDTLS_TEST_HOOKS

cmp --quiet "${MBEDTLS_DIR}/include/mbedtls/config.h" mbedtls_config_patch.h || {
cp mbedtls_config_patch.h "${MBEDTLS_DIR}/include/mbedtls/${CONFIG}"
Expand Down