Skip to content

Commit

Permalink
build botan on win
Browse files Browse the repository at this point in the history
  • Loading branch information
marty1885 committed Jun 16, 2024
1 parent 1f3780d commit 5363650
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/windows-msvc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,7 @@ jobs:
link: [ 'STATIC', 'SHARED' ]
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
build-type: ['Debug', 'Release']
# TODO: conan botan is v2, v2 support is removed
# tls-provider: ['', 'openssl', 'botan']
tls-provider: ['', 'openssl']
tls-provider: ['', 'openssl', 'botan']

steps:
- name: Checkout Trantor source code
Expand All @@ -38,6 +36,9 @@ jobs:
pip install conan
conan profile detect --force
conan install .. --output-folder=. --build=missing --settings=build_type=${{matrix.build-type}} --settings=compiler="msvc"
if [[ ${{ matrix.tls-provider }} != "" ]]; then
conan install ${{matrix.tls-provider}} --output-folder=. --build=missing --settings=build_type=${{matrix.build-type}} --settings=compiler="msvc"
fi
- name: Create Build Environment & Configure Cmake
shell: bash
Expand Down
1 change: 0 additions & 1 deletion conanfile.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
[requires]
gtest/1.10.0
openssl/1.1.1t
#c-ares/1.17.1
spdlog/1.12.0

Expand Down

0 comments on commit 5363650

Please sign in to comment.