1
0
mirror of https://github.com/pavel-odintsov/fastnetmon synced 2024-11-29 21:32:24 +01:00

Switched OpenSSL build on macos to OpenSSL 3 and explicity set library search path to OpenSSL 3 from HomeBrew

This commit is contained in:
Pavel Odintsov 2022-06-11 19:08:41 +01:00
parent 36c537080c
commit 0abb55e511

@ -10,8 +10,8 @@ jobs:
steps:
- checkout
- run: /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
- run: brew install cmake boost log4cpp hiredis json-c mongo-c-driver grpc capnp openssl@1.1
- run: cd src && mkdir build && cd build && cmake -DENABLE_CUSTOM_BOOST_BUILD=FALSE -DDO_NOT_USE_SYSTEM_LIBRARIES_FOR_BUILD=FALSE ..
- run: brew install cmake boost log4cpp hiredis json-c mongo-c-driver grpc capnp openssl@3
- run: cd src && mkdir build && cd build && cmake -DENABLE_CUSTOM_BOOST_BUILD=FALSE -DDO_NOT_USE_SYSTEM_LIBRARIES_FOR_BUILD=FALSE -DCMAKE_SYSTEM_INCLUDE_PATH=/usr/local/opt/openssl@3/include -DCMAKE_SYSTEM_LIBRARY_PATH=/usr/local/opt/openssl@3/lib ..
build_debian_upstream_package:
machine:
image: ubuntu-2004:current