From 7d923c534d48bff458c735b26a51f8764d3b784a Mon Sep 17 00:00:00 2001 From: Davide Bettio Date: Wed, 22 Nov 2023 00:25:14 +0100 Subject: [PATCH] build linux artifact using static mbedtls --- .github/workflows/build-linux-artifacts.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-linux-artifacts.yaml b/.github/workflows/build-linux-artifacts.yaml index bca1a03b7e..f2609264ef 100644 --- a/.github/workflows/build-linux-artifacts.yaml +++ b/.github/workflows/build-linux-artifacts.yaml @@ -199,7 +199,7 @@ jobs: cmake --version && mkdir -p build && cd build && - cmake .. -DCMAKE_BUILD_TYPE=RelWithDebInfo ${{ matrix.cmake_opts }} && + cmake .. -DCMAKE_BUILD_TYPE=RelWithDebInfo -DAVM_STATIC_MBEDTLS=ON ${{ matrix.cmake_opts }} && cp ../build_tests/tests/erlang_tests/*.beam tests/erlang_tests/ && cp ../build_tests/tests/erlang_tests/code_load/*.{avm,beam,hrl} tests/erlang_tests/code_load/ && mkdir -p tests/erlang_tests/code_load/beams/ &&