mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2024-11-10 03:30:39 +03:00
c865103795
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.
22 lines
706 B
YAML
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"
|