From 7b12679d0c7d1b919173c00d967e4242457d4e8a Mon Sep 17 00:00:00 2001 From: Matej Kenda Date: Mon, 15 Jan 2024 08:28:11 +0100 Subject: [PATCH] enh(CMake): Enable more options in github jobs for macOS with visibility set to hidden (#4393, #3331) --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 023c6e5833..15bd1015fc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -305,7 +305,7 @@ jobs: steps: - uses: actions/checkout@v3 - run: brew install openssl@3 mysql-client unixodbc libpq - - run: cmake -S. -Bcmake-build -DCMAKE_CXX_VISIBILITY_PRESET=hidden -DENABLE_PDF=OFF -DENABLE_TESTS=ON -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl@3 -DMYSQL_ROOT_DIR=/usr/local/opt/mysql-client && cmake --build cmake-build --target all + - run: cmake -S. -Bcmake-build -DCMAKE_CXX_VISIBILITY_PRESET=hidden -DENABLE_ENCODINGS_COMPILER=ON -DENABLE_PDF=ON -DENABLE_SEVENZIP=ON -DENABLE_CPPPARSER=ON -DENABLE_TESTS=ON -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl@3 -DMYSQL_ROOT_DIR=/usr/local/opt/mysql-client && cmake --build cmake-build --target all - uses: ./.github/actions/retry-action with: timeout_minutes: 90