We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ed47f3 commit c0ec33bCopy full SHA for c0ec33b
appveyor.yml
azure-pipelines.yml
@@ -0,0 +1,15 @@
1
+pool:
2
+ vmImage: "windows-2019"
3
+jobs:
4
+ - job: "windows_msvc_conan"
5
+ strategy:
6
+ matrix:
7
+ static:
8
+ conan.shared: "False"
9
+ shared:
10
+ conan.shared: "True"
11
+ steps:
12
+ - bash: python -m pip install conan
13
+ - bash: git submodule update --init --recursive
14
+ - bash: conan install -if _build -o with_tests=True -o shared=$(conan.shared) .
15
+ - bash: CONAN_CPU_COUNT=50 CTEST_OUTPUT_ON_FAILURE=1 conan build -bf _build -if _build .
0 commit comments