1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2024-09-18 01:33:00 +03:00
SoftEtherVPN/.ci/azure-pipelines-win.yml
Davide Beatrici c865103795 Azure Pipelines: install OpenSSL and zlib through vcpkg on Windows
This commit also changes the x86 build so that it uses the "amd64_x86" toolchain, for potentially better build performance.

The architecture is now appended to the installers.
2020-07-27 23:34:34 +02:00

22 lines
706 B
YAML

jobs:
- job: windows_x86_64
displayName: 'Windows (x86_64)'
pool:
vmImage: windows-latest
steps:
- template: "azure-pipelines-win-steps.yml"
parameters:
architecture: "x86_64"
vcpkgTriplet: "x64-windows-static-md"
vcvarsPath: "C:/Program Files (x86)/Microsoft Visual Studio/2019/Enterprise/VC/Auxiliary/Build/vcvars64.bat"
- job: windows_x86
displayName: 'Windows (x86)'
pool:
vmImage: windows-latest
steps:
- template: "azure-pipelines-win-steps.yml"
parameters:
architecture: "x86"
vcpkgTriplet: "x86-windows-static-md"
vcvarsPath: "C:/Program Files (x86)/Microsoft Visual Studio/2019/Enterprise/VC/Auxiliary/Build/vcvarsamd64_x86.bat"