From cf2a60358ccc2e0667b973a2e3a1f47b34447eea Mon Sep 17 00:00:00 2001 From: jmccl <5283750+jmccl@users.noreply.github.com> Date: Sun, 26 May 2024 20:01:28 -0700 Subject: [PATCH] Update build-macos.yml for opensssl 3 --- .github/workflows/build-macos.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml index e4144a8..a0b3199 100644 --- a/.github/workflows/build-macos.yml +++ b/.github/workflows/build-macos.yml @@ -17,10 +17,10 @@ jobs: with: xcode-version: latest-stable - name: install packages - run: brew install cmake curl openssl@1.1 + run: brew install cmake curl openssl@3 - name: configure # Brew doesn't symlink openssl into system directories so we have to tell cmake where it is - run: export OPENSSL_ROOT_DIR=`brew --prefix openssl@1.1` && cmake . + run: export OPENSSL_ROOT_DIR=`brew --prefix openssl@3` && cmake . - name: make run: make