-
Notifications
You must be signed in to change notification settings - Fork 116
/
Copy path.azure-pipelines.yml
36 lines (27 loc) · 836 Bytes
/
.azure-pipelines.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Universal Windows Platform
# Build a Universal Windows Platform project using Visual Studio.
# Add steps that test and distribute an app, save build artifacts, and more:
# https://aka.ms/yaml
trigger:
- master
pool:
vmImage: 'windows-latest'
variables:
solution: '**/*.sln'
buildPlatform: 'x86|x64'
buildConfiguration: 'Release'
triplet: 'x64-windows'
steps:
- script: |
git clone https://github.com/Microsoft/vcpkg
cd vcpkg
call .\bootstrap-vcpkg.bat
call .\vcpkg integrate install
call .\vcpkg install tiff openjpeg fastcgi libpng libwebp libavif[aom] --triplet x64-windows
displayName: Install dependencies using vcpkg
- task: MSBuild@1
inputs:
solution: 'windows/Visual Studio 2022/iipsrv-MSVC2022.sln'
msbuildArchitecture: 'x64'
platform: 'x64'
configuration: 'Release'