From bc8cb6bbefca4e07b0474ce22795019a25bb1153 Mon Sep 17 00:00:00 2001 From: filipecosta90 Date: Fri, 22 Nov 2024 00:08:15 +0000 Subject: [PATCH] Using macos-12 for openssl@1.1 runs due do deprecation notices. --- .github/workflows/ci.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5f29944..9cb2b2e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -124,11 +124,9 @@ jobs: steps: - uses: actions/checkout@v1 - name: Install dependencies - run: brew install autoconf automake libtool libevent pkg-config - - name: Install openssl v1.0.2 - run: brew install rbenv/tap/openssl@1.0 + run: brew install autoconf automake libtool libevent openssl@1.1 - name: Build - run: autoreconf -ivf && PKG_CONFIG_PATH=`brew --prefix openssl@1.0`/lib/pkgconfig ./configure && make + run: autoreconf -ivf && PKG_CONFIG_PATH=`brew --prefix openssl@1.1`/lib/pkgconfig ./configure && make build-macos-openssl-1-0-2: