Skip to content

Commit c0ec33b

Browse files
robinlindeniphydf
authored andcommitted
chore: Migrate Windows CI from Appveyor to Azure DevOps
1 parent 8ed47f3 commit c0ec33b

File tree

2 files changed

+15
-32
lines changed

2 files changed

+15
-32
lines changed

appveyor.yml

Lines changed: 0 additions & 32 deletions
This file was deleted.

azure-pipelines.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)