From 61ea5911b48cb40fea93cc80657c13bbee4b6a17 Mon Sep 17 00:00:00 2001 From: BrainStone Date: Sat, 21 Sep 2024 11:07:12 +0200 Subject: [PATCH] Try homebrewing again --- .github/workflows/code_checks.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/code_checks.yml b/.github/workflows/code_checks.yml index 4a61a283..20de09dc 100644 --- a/.github/workflows/code_checks.yml +++ b/.github/workflows/code_checks.yml @@ -88,12 +88,11 @@ jobs: - name: Checkout submodules run: git submodule update --init --recursive # This is to ensure unit tests with MariaDB4j don't fail - - name: Pretend have we OpenSSL 1.0 + - name: Install OpenSSL 1.0.2 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 + brew install rbenv/tap/openssl@1.0 + sudo ln -sfn /usr/local/Cellar/openssl@1.0/1.0.2* /usr/local/opt/openssl 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