host copy libs + openssl "fix"

This commit is contained in:
Czarek Nakamoto
2024-03-02 08:38:22 +01:00
parent ae800585b7
commit 294edb0621

View File

@@ -209,6 +209,14 @@ jobs:
&& ./Configure android-${{ matrix.short_arch }} -D__ANDROID_API__=21 -static no-shared no-tests --with-zlib-include=${WORKDIR}/zlib/include --with-zlib-lib=${WORKDIR}/zlib/lib --prefix=${PREFIX} --openssldir=${PREFIX} \
&& make -j${NPROC} &>/tmp/openssl_log.txt || cat /tmp/openssl_log.txt \
&& make install_sw &>/tmp/openssl_log_2.txt || cat /tmp/openssl_log_2.txt
- name: Build OpenSSL (alt)
run: |
cd ${{ github.workspace }} \
&& cd openssl-${OPENSSL_VERSION} \
&& export PATH=${ANDROID_NDK_ROOT}/toolchains/llvm/prebuilt/linux-x86_64/bin:$PATH \
&& ./Configure android-${{ matrix.short_arch }} -D__ANDROID_API__=21 -static no-shared no-tests --with-zlib-include=${WORKDIR}/zlib/include --with-zlib-lib=${WORKDIR}/zlib/lib --prefix=${PREFIX}/openssl --openssldir=${PREFIX}/openssl \
&& make -j${NPROC} &>/tmp/openssl_log.txt || cat /tmp/openssl_log.txt \
&& make install_sw &>/tmp/openssl_log_2.txt || cat /tmp/openssl_log_2.txt
- name: Build ZMQ
run: |
cd ${{ github.workspace }} \
@@ -296,6 +304,7 @@ jobs:
- name: Build libbridge (2/2) make
run: |
cd ${{ github.workspace }} \
&& make host_copy_libs \
&& cd libbridge \
&& cd build \
&& make -j${NPROC}