Skip to content

Commit

Permalink
Debug macos CI failure
Browse files Browse the repository at this point in the history
  • Loading branch information
ni4 committed Apr 8, 2024
1 parent 237790c commit af1711e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ jobs:
-DCRYPTO_BACKEND=${{ env.CRYPTO_BACKEND }} .
- name: Build
run: cmake --build build --config Release --parallel ${{ env.CORES }}
run: cmake --build build -DCMAKE_VERBOSE_MAKEFILE=ON --config Release --parallel ${{ env.CORES }}

- name: Install
run: cmake --install build
Expand Down
2 changes: 2 additions & 0 deletions src/lib/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ if (CRYPTO_BACKEND_BOTAN3)
find_package(Botan 3.0.0 REQUIRED)
elseif (CRYPTO_BACKEND_BOTAN)
find_package(Botan 2.14.0 REQUIRED)
message(WARNING "Checking whether we have botan 3 for version ${BOTAN_VERSION}...")
if(BOTAN_VERSION VERSION_GREATER_EQUAL 3.0.0)
message(WARNING "Got botan 3.")
set(CRYPTO_BACKEND_BOTAN3 1)
endif()
endif()
Expand Down

0 comments on commit af1711e

Please sign in to comment.