From a2b94fde9da6970898f2a4132aff0d077e3f83ac Mon Sep 17 00:00:00 2001 From: sunerok Date: Sun, 15 Dec 2024 12:41:21 -0500 Subject: [PATCH] fix openssl path for mac14 --- .github/workflows/check-commit.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/check-commit.yml b/.github/workflows/check-commit.yml index cd32e81a..93ea8580 100644 --- a/.github/workflows/check-commit.yml +++ b/.github/workflows/check-commit.yml @@ -70,9 +70,6 @@ jobs: - name: check cellar for openssl run: cd /opt/homebrew/Cellar/openssl@3/ && ls - - name: where is openssl - run: openssl --version - - name: which clang/xcode run: clang --version @@ -80,7 +77,7 @@ jobs: run: ./autogen.sh - name: configure - run: export LDFLAGS="-L/opt/homebrew/opt/boost@1.76/lib" && export CPPFLAGS="-I/opt/homebrew/opt/boost@1.76/include" && ./configure --disable-bench --disable-tests --disable-dependency-tracking --disable-werror --with-gui --bindir=`pwd`/release/bin --libdir=`pwd`/release/lib --with-openssl-dir=/opt/homebrew/Cellar/openssl@3/3.3.1 --with-libevent-dir=/opt/homebrew/Cellar/libevent/2.1.12_1 --with-boost=/opt/homebrew/Cellar/boost@1.76/1.76.0_5 + run: export LDFLAGS="-L/opt/homebrew/opt/boost@1.76/lib" && export CPPFLAGS="-I/opt/homebrew/opt/boost@1.76/include" && ./configure --disable-bench --disable-tests --disable-dependency-tracking --disable-werror --with-gui --bindir=`pwd`/release/bin --libdir=`pwd`/release/lib --with-openssl-dir=/opt/homebrew/Cellar/openssl@3/3.4.0 --with-libevent-dir=/opt/homebrew/Cellar/libevent/2.1.12_1 --with-boost=/opt/homebrew/Cellar/boost@1.76/1.76.0_5 - name: make run: make -j4