Skip to content

Commit 5363650

Browse files
committed
build botan on win
1 parent 1f3780d commit 5363650

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/windows-msvc.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,7 @@ jobs:
1616
link: [ 'STATIC', 'SHARED' ]
1717
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
1818
build-type: ['Debug', 'Release']
19-
# TODO: conan botan is v2, v2 support is removed
20-
# tls-provider: ['', 'openssl', 'botan']
21-
tls-provider: ['', 'openssl']
19+
tls-provider: ['', 'openssl', 'botan']
2220

2321
steps:
2422
- name: Checkout Trantor source code
@@ -38,6 +36,9 @@ jobs:
3836
pip install conan
3937
conan profile detect --force
4038
conan install .. --output-folder=. --build=missing --settings=build_type=${{matrix.build-type}} --settings=compiler="msvc"
39+
if [[ ${{ matrix.tls-provider }} != "" ]]; then
40+
conan install ${{matrix.tls-provider}} --output-folder=. --build=missing --settings=build_type=${{matrix.build-type}} --settings=compiler="msvc"
41+
fi
4142
4243
- name: Create Build Environment & Configure Cmake
4344
shell: bash

conanfile.txt

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
[requires]
22
gtest/1.10.0
3-
openssl/1.1.1t
43
#c-ares/1.17.1
54
spdlog/1.12.0
65

0 commit comments

Comments
 (0)