Skip to content
Draft
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
20 changes: 12 additions & 8 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -369,12 +369,12 @@ jobs:
- 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
Expand All @@ -401,15 +401,19 @@ jobs:
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
path: mbedtls
submodules: true
submodules: recursive
# versioning=semver-coerced
repository: Mbed-TLS/mbedtls
ref: v3.6.4
- 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: cmake --build"
run: cmake --build build
working-directory: mbedtls
- name: "mbedtls: make install"
run: sudo make install DESTDIR=/usr
- name: "mbedtls: cmake --install"
run: sudo cmake --install build --prefix /usr
working-directory: mbedtls
- name: Checkout OpenVPN
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
Expand Down
Loading