1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2025-12-16 15:11:35 +03:00

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.
This commit is contained in:
Davide Beatrici
2020-07-27 23:34:34 +02:00
parent 60410accce
commit c865103795
2 changed files with 25 additions and 8 deletions

View File

@ -6,7 +6,9 @@ jobs:
steps:
- template: "azure-pipelines-win-steps.yml"
parameters:
bits: "64"
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:
@ -14,4 +16,6 @@ jobs:
steps:
- template: "azure-pipelines-win-steps.yml"
parameters:
bits: "32"
architecture: "x86"
vcpkgTriplet: "x86-windows-static-md"
vcvarsPath: "C:/Program Files (x86)/Microsoft Visual Studio/2019/Enterprise/VC/Auxiliary/Build/vcvarsamd64_x86.bat"