| Message ID | 20260124181814.30331-1-gert@greenie.muc.de |
|---|---|
| State | New |
| Headers | show |
| Series | [Openvpn-devel,v2] GHA: Update mbedtls to v4 | expand |
Tested via GHA :-) - and lo and behold, it builds mbedtls4 builds, and
those succeed...! (The mbedtls4 builds replace the "legacy" mbedtls3
builds - we have those in BB)
No actual code change for OpenVPN, just build instructions for GH.
The mbedtls4 builds now do build the test suite as well (our mbedtls3
builds didn't) - not sure if that can be avoided, but it takes quite
a bit of time...
Your patch has been applied to the master branch.
commit c7fbd8a302ac679d2fead0c70dcfff61ce953c47
Author: Frank Lichtenheld
Date: Sat Jan 24 19:18:07 2026 +0100
GHA: Update mbedtls to v4
Signed-off-by: Frank Lichtenheld <frank@lichtenheld.com>
Acked-by: Yuriy Darnobyt <yura.uddr@gmail.com>
Gerrit URL: https://gerrit.openvpn.net/c/openvpn/+/1474
Message-Id: <20260124181814.30331-1-gert@greenie.muc.de>
URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg35421.html
Signed-off-by: Gert Doering <gert@greenie.muc.de>
--
kind regards,
Gert Doering
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index d1322c7..ef9b3f5 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -366,12 +366,12 @@ - name: make check run: make -j3 check VERBOSE=1 - mbedtls3: + mbedtls4: strategy: fail-fast: false matrix: os: [ubuntu-22.04] - ssllib: [mbedtls3] + ssllib: [mbedtls4] build: [ normal, asan ] include: - build: asan @@ -398,15 +398,19 @@ uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 with: path: mbedtls - submodules: true + submodules: recursive # versioning=semver-coerced repository: Mbed-TLS/mbedtls - ref: v3.6.5 - - name: "mbedtls: make no_test" - run: make -j3 no_test SHARED=1 + ref: v4.0.0 + - uses: lukka/get-cmake@2ecc21724e5215b0e567bc399a2602d2ecb48541 # v4.1.1 + - name: "mbedtls: cmake" + run: cmake -B build working-directory: mbedtls - - name: "mbedtls: make install" - run: sudo make install DESTDIR=/usr + - name: "mbedtls: cmake --build" + run: cmake --build build + working-directory: mbedtls + - name: "mbedtls: cmake --install" + run: sudo cmake --install build --prefix /usr working-directory: mbedtls - name: Checkout OpenVPN uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1