From 96bb41dcb744d7084a8dfdfffd6d10d07af97397 Mon Sep 17 00:00:00 2001 From: BrainStone Date: Sat, 21 Sep 2024 03:16:14 +0200 Subject: [PATCH] Debug with stat --- .github/workflows/code_checks.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/code_checks.yml b/.github/workflows/code_checks.yml index 26e0df78..4a61a283 100644 --- a/.github/workflows/code_checks.yml +++ b/.github/workflows/code_checks.yml @@ -88,12 +88,13 @@ jobs: - name: Checkout submodules run: git submodule update --init --recursive # This is to ensure unit tests with MariaDB4j don't fail - - name: Pretent we OpenSSL 1.0 + - name: Pretend have we OpenSSL 1.0 if: ${{ runner.os == 'MacOS' }} run: | sudo mkdir -pv /usr/local/opt/openssl/lib sudo ln -sv /usr/lib/libssl.dylib /usr/local/opt/openssl/lib/libssl.1.0.0.dylib sudo ln -sv /usr/lib/libcrypto.dylib /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib + stat /usr/local/opt/openssl/lib/libssl.1.0.0.dylib # This is to ensure unit tests with MariaDB4j don't fail - name: Install libncurses5 if: ${{ runner.os == 'Linux' }}